body {
  background: linear-gradient(135deg, #b4ceed 0%, #fcfcfc 100%);
  min-height: 100vh;
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
}
.logo-container {
  max-width: 100%;
  margin: 0 auto 20px auto;
  text-align: center;
  animation: fadeInDown 0.8s ease-out;
}
.logo-container .main-logo {
  width: auto;
  max-width: 150px;
  height: auto;
  display: inline-block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease;
}
.logo-container .main-logo:hover {
  transform: scale(1.05);
}
.logo-container img {
  width: auto;
  max-width: 200px;
  display: none;
}
.logo-container h1 {
  font-family: "Roboto", sans-serif;
  color: #2c3e50;
  font-weight: bold;
  font-size: 48px;
  margin: 0;
  letter-spacing: -1px;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
form {
  padding: 0;
  margin: 0;
}
.success-msg {
  color: #008000;
}
.star-icon {
  display: none;
}
.star-icon-large {
  display: none;
}
.trouphy-icon {
  display: none;
}
.circle-icon {
  display: none;
}
.circle-icon-left {
  display: none;
}
.pulse {
  animation: pulse 1s infinite ease-in-out;
}
.joystick {
  animation: updown 6s infinite ease-in-out;
}
@keyframes updown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px) rotate(5deg) scale(0.9);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes up-down {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/* Football image section - REMOVED */

.rotate-eff {
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  animation: rotateRadar 10s linear infinite; /* 10 seconds for one full rotation */
  transform-origin: center center;
}
.exit-btn {
  background: #2960de;
  display: inline-block;
  margin: auto;
  color: #ffffff;
  padding: 5px 20px 5px 20px;
  line-height: 24px;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  margin: 10px auto;
}
.rotate-eff span {
  width: 200px;
  height: 200px;
  background: rgba(
    255,
    255,
    255,
    0.1
  ); /* Transparent background with slight color */
  box-shadow: 0 0 15px rgba(0, 0, 255, 0.1); /* Glowing effect */
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0) 40,
    rgba(255, 255, 255, 0.2) 60%
  );
  position: relative;
  transition: transform 0.5s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  border-radius: 100px;
  z-index: -1;
}
/* Define the smooth and slow rotation */
@keyframes rotateRadar {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.img-wrapper img {
  position: relative;
  z-index: 1;
}

/* Glass Card Container */
.glass-card {
  position: relative;
  width: 300px;
  padding: 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1); /* Transparent white background */
  backdrop-filter: blur(10px); /* Apply blur effect */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Slight shadow for depth */
  /* Text color */
  overflow: hidden;
}

/* Optional: Add a border to enhance the glass effect */
.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.15); /* Light frosted glass border */
  border-radius: 15px;
  pointer-events: none; /* Make sure this doesn't interfere with content */
}

/* Header Style */
.glass-card h2 {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

/* Body Style */
.glass-card p {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
.modern-card {
  position: relative;
  padding: 35px 45px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  overflow: visible;
  width: 100%;
  margin: auto;
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.modern-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* input field  */
.form-control {
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 16px;
  line-height: 20px;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.form-control:focus {
  border-color: #4A90E2;
  box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
  transform: none;
  outline: none;
  background: #ffffff;
}

.input-group {
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.input-group:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.input-group span {
  background: linear-gradient(135deg, #4A90E2 0%, #2E5C8A 100%);
  display: inline-block;
  height: 100%;
  min-width: 85px;
  line-height: 60px;
  height: 60px;
  font-weight: 600;
  color: #ffffff;
  font-size: 18px;
  text-align: center;
  border-radius: 12px 0 0 12px;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}
/* Error border styling */
.form-control.error {
  border-color: #dc3545;
  box-shadow: 0 0 8px rgba(220, 53, 69, 0.5);
}
.phone-input {
  height: 60px;
  font-size: 16px;
}
.form-control:disabled {
  background-color: #f5f5f5;
  border-color: #ddd;
}
.error {
  color: #dc3545;
  font-size: 14px;
}
.success {
  color: #018f37;
  font-size: 14px;
}
.input-group .form-control {
  border-radius: 0 12px 12px 0;
  overflow: hidden;
  border-left: none;
  border: 2px solid #e0e0e0;
  border-left: none;
}

.card {
  background-color: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn {
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.text-lg {
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* Error message styling */
#error-message {
  display: none;
  color: #ff0019;
  font-size: 14px;
  margin-top: 10px;
}

.theme-btn {
  background: linear-gradient(135deg, #4A90E2 0%, #2E5C8A 100%);
  color: #ffffff;
  transition: all 0.4s ease;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 15px;
  border: none;
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.theme-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.theme-btn:hover::before {
  left: 100%;
}

.theme-btn:hover {
  background: linear-gradient(135deg, #2E5C8A 0%, #4A90E2 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(74, 144, 226, 0.5);
}

.theme-btn:active {
  transform: translateY(0);
  box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}
/* price-point */
.price-point {
  font-size: 12px;
  color: #666666;
  font-weight: 400;
  margin-top: 10px;
}
.down-arrow {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #2c3e50;
  position: absolute;
  top: 18px;
  right: 12px;
  transition: transform 0.3s ease;
}

.dropdown:hover .down-arrow {
  transform: translateY(2px);
}
/* 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: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: #2c3e50;
  padding: 10px 30px 10px 12px;
  font-size: 13px;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
  text-transform: capitalize;
  min-width: 90px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  font-weight: 600;
  transition: all 0.3s ease;
}

.lang-swticher .dropdown-button:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
.w-100 {
  width: 100%;
}

/* 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: #2c3e50;
  color: #ffffff !important;
}
/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
.legal-text {
  padding: 20px 25px;
  backdrop-filter: blur(10px);
  border-radius: 15px;
  /* margin-top: 25px; */
  animation: fadeInUp 0.8s ease-out 0.4s both;
}
.legal-text ul {
  padding: 0;
  margin: 0;
}
.legal-text p {
  margin-bottom: 8px;
}
.legal-text p,
.legal-text ul li,
.legal-text {
  font-size: 11px !important;
  text-align: center !important;
  line-height: 1.5 !important;
}

.legal-text * {
  font-size: 11px !important;
  text-align: center !important;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.device-icon {
  transition: transform 0.3s ease, filter 0.3s ease;
  display: inline-block;
  margin: 0 8px;
}

.device-icon svg {
  width: 48px;
  height: 48px;
  display: block;
}

.theme-icon {
  color: #4A90E2;
  filter: drop-shadow(0 2px 8px rgba(74, 144, 226, 0.3));
}

.device-icon:hover {
  transform: translateY(-5px);
  filter: brightness(1.2);
}

/* progress bar  */
/* Progress bar container */
.progressbar {
  display: none;
}

/* Individual step */
.step {
  /* text-align: center; */
  flex: 1;
  position: relative;
}

/* Step number circle */
.number {
  width: 30px;
  height: 30px;
  background: #d0d0d0;
  border-radius: 50%;
  line-height: 30px;
  color: #666666;
  font-weight: bold;
  text-align: center;
  position: relative;
  z-index: 12;
  margin: auto;
}

/* Active step */
.step.active .number {
  background: linear-gradient(135deg, #4A90E2 0%, #2E5C8A 100%);
  color: #ffffff;
}

/* Step label */
.label {
  margin-top: 5px;
  font-size: 12px;
  color: #000000;
  text-align: center;
}

/* Progress line */
.progressbar .step::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 25px;
  right: 15px;
  height: 4px;
  width: 100%;
  background: #d0d0d0;
  z-index: 0;
}
#splash {
  display: none;
  overflow: hidden;
  height: 100%;
  width: 100%;
}
.splash-container {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.splash-container img {
  width: 100%;
  margin: auto;
  animation: sizzle 0.6s infinite ease-in-out;
  transform-origin: center;
}
@keyframes sizzle {
  0% {
    transform: scale(1) rotate(0deg);
    filter: blur(0);
  }
  25% {
    transform: scale(1.01) rotate(0.5deg);
    filter: blur(0.3px);
  }
  50% {
    transform: scale(0.99) rotate(-0.5deg);
    filter: blur(0.6px);
  }
  75% {
    transform: scale(1.02) rotate(0.3deg);
    filter: blur(0.3px);
  }
  100% {
    transform: scale(1) rotate(0deg);
    filter: blur(0);
  }
}

.ripple-wrapper {
  position: absolute;
  width: 200px;
  height: 200px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}

.ripple {
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  transform: scale(0);
  animation: rippleEffect 3s ease-out infinite;
}

/* Different start times to create the weave/staggered effect */
.circle1 {
  animation-delay: 0s;
}

.circle2 {
  animation-delay: 1s;
}

.circle3 {
  animation-delay: 2s;
}

/* Enhanced ripple keyframes for weaving effect */
@keyframes rippleEffect {
  0% {
    transform: scale(0.2);
    opacity: 0.6;
  }

  30% {
    transform: scale(0.7);
    opacity: 0.8;
  }

  60% {
    transform: scale(1.8);
    opacity: 0.3;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}
/* Progress filled */
.progressbar .step::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 25px;

  height: 4px;
  background: linear-gradient(90deg, #4A90E2 0%, #2E5C8A 100%);
  z-index: 1;
}
.progressbar .step:last-child::before,
.progressbar .step:last-child::after {
  content: none;
}

.progressbar .step.active::before,
.progressbar .step.active::after {
  width: 100%;
}

@media (max-width: 767px) {
  body {
    background: linear-gradient(135deg, #b4ceed 0%, #fcfcfc 100%);
    height: auto;
  }
  
  .modern-card {
    padding: 25px 20px;
    border-radius: 15px;
  }
  
  .logo-container .main-logo {
    max-width: 150px;
  }
  .modern-card {
    padding: 12px;
  }
  .logo-container {
    max-width: 250px;
    margin: 15px auto;
  }
  .device-icons {
    display: none;
  }
  .bg-style-mobile {
    /* background-image: url("../assets/images/hafltoon-bg.png"); */
    background-size: 120%;
    background-repeat: no-repeat;
    background-position: center top;
    position: relative;
    text-align: center;
    min-height: 600px;
  }
  .progressbar {
    max-width: 220px;
    margin: 0px auto 15px auto;
  }
  .progressbar .number {
    font-size: 11px;
    width: 25px;
    height: 25px;
    line-height: 25px;
  }
}
