:root {
  --white: #ffffff;
  --black: #000000;
  --gray: #666666;
  --green: #008000;
  --orange: #ff4500;
  --blue: #2960de;
  --red: #ff0000;
  --pink: #ff3674;
  --dark-pink: #d9245d;
  --light-gray: #f5f5f5;
  --border-gray: #cccccc;
  --error-red: #dc3545;
  --success-green: #018f37;
  --bright-red: #ff0019;
  --form-blue: #007bff;
  --shadow-orange: #dc3506;
  --shadow-red: #dc3545;
  --dropdown-gray: #e2e8f0;
  --font-primary: "Roboto", sans-serif;
  --font-default: "Roboto", sans-serif;
  --dark-blue: #120a57;
  --dark-purple: #460062;
}
/* Custom styles that can't be handled by Tailwind */
body {
  background: url("assets/images/landing-video-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 100vh;
}

@keyframes updown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.7;
  }
}

.animate-updown {
  animation: updown 2s infinite;
}
.animate-pulse-custom {
  animation: pulse 1s infinite ease-in-out;
}

.spinner {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* Basic dropdown wrapper */
.dropdown.lang-swticher {
  position: absolute;
  display: inline-block;
  right: 10px;
  top: 10px;
  z-index: 100;
}

/* Button styling */
.lang-swticher .dropdown-button {
  background-color: #ffffff; /* Tailwind 'blue-500' */
  color: #000000;
  padding: 8px 25px 8px 8px;
  font-size: 12px;
  text-align: center;
  /* border: none; */
  border-radius: 10px;
  cursor: pointer;
  text-transform: uppercase;
  min-width: 80px;
  border: 2px solid var(--primary);
}

/* Dropdown content */
.lang-swticher .dropdown-content {
  display: none;
  position: absolute;
  top: 100%; /* below the button */
  left: 0;
  min-width: 100%;
  background-color: white;
  border: 1px solid #e2e8f0; /* Tailwind 'gray-200' */
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
  text-align: center;
  overflow: hidden;
}

/* Individual language links */
.lang-swticher .dropdown-content a {
  color: #000000; /* Tailwind 'gray-800' */
  padding: 2px 12px;
  text-decoration: none;
  font-size: 13px;
  display: block;
  white-space: nowrap;
}

/* Hover effect */
.lang-swticher .dropdown-content a:hover {
  background-color: var(--red);
  color: #ffffff !important;
}
/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
.legal-text {
  padding: 0 10px;
}
.legal-text ol {
  list-style: decimal;
  padding: 0;
  margin: 0;
}
.legal-text p {
  margin-bottom: 3px;
}
.legal-text p,
.legal-text ol li {
  font-size: 10px;
  color: var(--border-gray);
}
