
body {
  /* Professional background color - Blue/Purple gradient like the image */
  background: linear-gradient(180deg, #7B8CDE 0%, #8B7FC8 100%);
  min-height: 100vh;
  height: auto; /* Changed from 100vh to auto for better mobile support */
  position: relative;
  overflow-x: hidden; /* Prevent horizontal scroll */
  overflow-y: auto; /* Allow vertical scroll */
}

/* Download icon styles */
.download-icon {
  height: 150px;
  position: relative;
}

.success-animation {
  animation: success-pulse 2s infinite;
}

.circle-icon {
  display: inline-block;
  width: 100px;
  height: 100px;
  border: 4px solid #ffffff;
  background: #ffffff;
  position: absolute;
  border-radius: 100%;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  overflow: hidden;
  animation: up-down 3s infinite ease-in-out;
  padding: 20px;
}
.circle-icon svg {
  margin: auto;
}
.circle-icon-left {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: orangered;
  position: absolute;
  border-radius: 50px;
  /* top: 25%; */
  left: 0;
  animation: up-down 3s infinite ease-in-out;
}

.rounded-full {
  border-radius: 100%;
}

.p-6 {
  padding: 1.5rem;
}

.bg-white {
  background-color: #ffffff;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 1rem;
}

@keyframes success-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Background animation elements - DISABLED */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  display: none; /* Hide background particles */
}

.floating-particle {
  position: absolute;
  background: rgba(64, 196, 255, 0.3); /* Light blue */
  border-radius: 50%;
  filter: blur(5px);
  /* animation: float-around 15s infinite linear; */
}

.floating-particle:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 10%;
  animation-duration: 20s;
  animation-delay: 0s;
}

.floating-particle:nth-child(2) {
  width: 150px;
  height: 150px;
  top: 60%;
  left: 80%;
  animation-duration: 25s;
  animation-delay: 2s;
}

.floating-particle:nth-child(3) {
  width: 80px;
  height: 80px;
  top: 30%;
  left: 70%;
  animation-duration: 18s;
  animation-delay: 1s;
}

.floating-particle:nth-child(4) {
  width: 120px;
  height: 120px;
  top: 70%;
  left: 20%;
  animation-duration: 22s;
  animation-delay: 3s;
}

.floating-particle:nth-child(5) {
  width: 60px;
  height: 60px;
  top: 40%;
  left: 40%;
  animation-duration: 15s;
  animation-delay: 4s;
}

@keyframes float-around {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0.2;
  }
  25% {
    transform: translate(100px, 50px) rotate(90deg) scale(1.1);
    opacity: 0.3;
  }
  50% {
    transform: translate(50px, 100px) rotate(180deg) scale(1);
    opacity: 0.2;
  }
  75% {
    transform: translate(-50px, 50px) rotate(270deg) scale(0.9);
    opacity: 0.3;
  }
  100% {
    transform: translate(0, 0) rotate(360deg) scale(1);
    opacity: 0.2;
  }
}



@keyframes bounce-in {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
  70% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}


@keyframes bounce-in-up {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  50% {
    transform: translateY(-10px);
    opacity: 0.9;
  }
  70% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}



@keyframes float-in {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}



@keyframes slide-in-left {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in-right {
  animation: slide-in-right 0.8s ease-out;
}

@keyframes slide-in-right {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.fade-in {
  animation: fade-in 1.5s ease-out;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  /* animation: shimmer 2s infinite; */
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}


@keyframes pulse-strong {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(64, 196, 255, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(64, 196, 255, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(64, 196, 255, 0);
  }
}

.logo-container {
  max-width: 280px;
  margin: 15px auto;
}
.spinner {
  width: 25px;
  height: 25px;
  border: 4px solid #f3f3f3; /* Light grey background */
  border-top: 4px solid #40c4ff; /* Spinner color - light blue */
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: auto; /* Center if used in flex or block context */
  display: inline-block;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.logo-container img {
  width: 100%;
}
.main h2 {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 15px;
  color: #40c4ff; /* Light blue */
  text-shadow: 0 0 10px rgba(64, 196, 255, 0.5);
}
.service-text {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  color: #fff;
}
form {
  padding: 0;
  margin: 0;
}
.success-msg {
  color: #0a980a;
}
.star-icon {
  position: absolute !important;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  animation: pulse 1.5s infinite ease-in-out;
}
.star-icon-large {
  position: absolute !important;
  top: -25px;
  left: 0;
  right: 0;
  margin: auto;
  animation: pulse 1s infinite ease-in-out;
}
.trouphy-icon {
  position: absolute !important;
  left: -50px;
  animation: pulse 1s infinite ease-in-out;
}
.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);
  }
}

/* joystic */
.img-wrapper {
  background-image: url("../assets/images/hafltoon-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  text-align: center;
  min-height: 600px;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .img-wrapper {
    min-height: 400px;
  }
}
.img-container {
  max-width: 380px;
  height: 350px;
  width: 100%;
  margin: 50px auto;
  display: flex;
  align-items: center;
}

.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: #40c4ff; /* Light blue */
  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(64, 196, 255, 0.1); /* Transparent background with slight color */
  box-shadow: 0 0 15px rgba(64, 196, 255, 0.3); /* Glowing effect */
  background: radial-gradient(
    circle,
    rgba(64, 196, 255, 0) 40%,
    rgba(64, 196, 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(64, 196, 255, 0.1); /* Transparent light blue 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(64, 196, 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: 20px 30px;
  background-color: #ffffffe1; /* Dark background */
  border-radius: 15px; /* Rounded corners */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Deeper shadow for depth */
  transition: all 0.3s ease; /* Smooth transition on hover */
  overflow: hidden; /* To avoid any content spilling out */
  width: 100%;
  max-width: 100%; /* Ensure it doesn't overflow */
  margin: auto;
  color: rgb(0, 0, 0); /* White text */
  box-sizing: border-box; /* Include padding in width calculation */
}


@keyframes form-appear {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* input field  */
.form-control {
  border: 1px solid #d51373; /* Pink border */
  border-radius: 30px; /* Rounded borders for input */
  padding: 10px 20px;
  font-size: 18px;
  line-height: 20px;
  transition: all 0.3s ease; /* Smooth transition for focus and hover */
  background: #ffffff; /* White background when not active */
  color: #333333; /* Dark text color */
}

/* Enhanced input field animations */
.phone-input {
  transform-origin: center;
  height: 56px;
  background: #ffffff; /* White background when not active */
  color: #333333; /* Dark text color */
  position: relative;
  overflow: hidden;
}

/* Circle animation for input field */
.phone-input {
  position: relative;
}

.phone-input::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  z-index: -1;
}


@keyframes circle-pulse {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.2;
  }
}

/* No need to hide the placeholder as we're using the HTML attribute now */

.phone-input:focus {
  animation: phone-input-focus 0.5s ease-in-out forwards;
  transform-origin: center;
}

@keyframes phone-input-focus {
  0% {
    box-shadow: 0 0 5px rgba(64, 196, 255, 0.5);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 20px rgba(64, 196, 255, 0.8);
    transform: scale(1.03);
  }
  100% {
    box-shadow: 0 0 15px rgba(64, 196, 255, 0.7);
    transform: scale(1.02);
  }
}

.form-control:focus {
  border-color: #d51373; /* Pink border when focused */
  background: #f5f5f5; /* Light gray background when active */
  animation: input-fade 0.5s ease-in;
  box-shadow: 0 0 0 0.2rem rgba(213, 19, 115, 0.25);
}

.input-group {
  max-width: 100%;
  border-radius: 2rem;
  /* overflow: hidden; */
}
.input-group span {
  background-color: #d51373; /* Pink color */
  display: inline-block;
  height: 100%;
  min-width: 80px;
  line-height: 56px;
  height: 56px;
  font-weight: 600;
  color: #ffffff;
  font-size: 18px;
  text-align: center;
  border-radius: 50px 0 0 50px;
  animation: input-fade 0.5s ease-in;
}

/* Error border styling */
.form-control.error {
  border-color: #dc3545;
  box-shadow: 0 0 8px rgba(220, 53, 69, 0.5);
}

.form-control:disabled {
  background-color: #f5f5f5;
  border-color: #ddd;
}
.error {
  color: #dc3545;
  font-size: 14px;
}
.success {
  color: #00ff00;
  font-size: 14px;
}
.input-group .form-control {
  border-radius: 0 30px 30px 0; /* Rounded corners on the right side */
  overflow: hidden;
}

.card {
  background-color: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn {
  border-radius: 30px;
  font-weight: bold;
}
.text-lg {
  font-size: 18px;
}
.img-banner {
  max-width: 100%; /* Match form width */
  margin: 10px auto 15px auto;
  height: 190px; /* Adjusted height */
  overflow: hidden;
  border-radius: 12px; /* Rounded corners */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Add shadow for depth */
}
.img-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Crop to fit the container */
  object-position: center; /* Center the image */
}
/* Error message styling */
#error-message {
  display: none;
  color: #dc3545;
  font-size: 14px;
  margin-top: 10px;
}

/* Enhanced submit button animations */
.theme-btn {
  background: #d51373; /* Pink color */
  color: #ffffff;
  transition: all 0.5s ease;
  text-transform: uppercase;
  font-size: 22px;
  padding: 15px 20px;
  border: none;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(213, 19, 115, 0.3);
  /* animation: pulse-button 0.5s infinite; */
}


.theme-resend-btn {
  background: #d51373; /* Pink color */
  color: #ffffff;
  transition: all 0.5s ease;
  text-transform: uppercase;
  font-size: 22px;
  padding: 15px 20px;
  border: none;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  box-shadow: none;
}

/* Pulse animation for button */
@keyframes pulse-button {
  0% {
    transform: scale(1);
    box-shadow: none;
  }
  50% {
    transform: scale(1.05);
    box-shadow: none;
  }
  100% {
    transform: scale(1);
    box-shadow: none;
  }
}

/* Click me animation */
.theme-btn::after {
  content: "Click me!";
  position: absolute;
  top: -30px;
  right: 10px;
  background: #fff;
  color: #40c4ff;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
  opacity: 0;
  animation: click-me 0.75s infinite;
}

.theme-resend-btn::after {
  content: "Click me!";
  position: absolute;
  top: -30px;
  right: 10px;
  background: #fff;
  color: #40c4ff;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
  opacity: 0;
}

@keyframes click-me {
  0%, 100% {
    opacity: 0;
    transform: translateY(0);
  }
  10%, 90% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: translateY(-5px);
  }
}

/* Hover effect */
.theme-btn:hover {
  background: #b01060; /* Darker pink on hover */
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(213, 19, 115, 0.4);
}
.theme-resend-btn:hover {
  background: #b01060; /* Darker pink on hover */
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(213, 19, 115, 0.3);
}

/* Input field fade animation */
@keyframes input-fade {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

.theme-btn:disabled {
  color: #ffffff;
  background: #ea89bc; /* Lighter pink */
  cursor: not-allowed;
  opacity: 0.6; /* make it look inactive */
  box-shadow: none;
}

.theme-resend-bt{
  color: #ffffff;
  background: #ea89bc; /* Lighter pink */
  cursor: not-allowed;
  opacity: 0.6; /* make it look inactive */
  box-shadow: none;
}
/* price-point */
.price-point {
  font-size: 11px;
  color: #000000;
  font-weight: 600;
}
.down-arrow {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #000; /* Arrow color */
  position: absolute;
  top: 14px;
  right: 8px;
}
/* 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; /* White background */
  color: #000000;
  padding: 8px 25px 8px 8px;
  font-size: 12px;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
  text-transform: uppercase;
  min-width: 80px;
  border: 2px solid #40c4ff; /* Light blue */
  position: relative; /* Ensure position for the arrow */
}
.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: #40c4ff; /* Light blue */
  color: #ffffff !important;
}
/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

.legal-text p {
  font-size: 11px;
  margin-bottom: 0px;
  font-family: "Roboto", sans-serif;
  line-height: 14px;
  color: #ffffff;
  word-wrap: break-word;
}
.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;
  margin: 0 8px; /* Add more space between icons */
}

.device-icon svg {
  width: 48px; /* Match stadio-ly size (h-12 w-12) */
  height: 48px;
  color: #ffffff; /* White icons to match the image */
  transition: transform 0.3s ease, filter 0.3s ease;
}
.device-icon:hover svg {
  color: #e0e0e0;
  transform: rotate(-12deg);
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

/* progress bar  */
.user-progressbar {
  display: none;
}

/* progress bar  */
.user-progressbar {
  display: none;
}
/* Progress bar container */
.progressbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 400px;
  margin: 0px auto 15px auto;
  position: relative;
}

/* Individual step */
.step {
  /* text-align: center; */
  flex: 1;
  position: relative;
}

/* Step number circle */
.number {
  width: 30px;
  height: 30px;
  background: #000000;
  border-radius: 50%;
  line-height: 30px;
  /* margin: 0 auto; */
  color: #fff;
  font-weight: bold;
  text-align: center;
  position: relative;
  z-index: 12;
  margin: auto;
}

/* Active step */
.step.active .number {
  background: #40c4ff;
  color: #ffffff;
}

/* Step label */
.label {
  margin-top: 5px;
  font-size: 12px;
  color: #ffffff;
  text-align: center;
}

/* Progress line */
.progressbar .step::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50px;
  right: 15px;
  height: 9px;
  width: 100%;
  background: #000000;
  z-index: 0;
}

/* 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: 10px;
  left: 50px;

  height: 9px;
  background: #40c4ff;
  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%;
}

/* Show progress bar only on mobile devices */
@media (max-width: 768px) {
  .user-progressbar {
    display: block;
  }
  
  .progressbar {
    max-width: 220px;
  }
}
#splash {
  display: none;
  overflow: hidden;
  height: 100%;
  width: 100%;
}
.splash-container {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #1e3a5f; /* Deep blue background */
  position: relative;
  overflow: hidden;
}

/* Splash logo animation */
.splash-logo {
  width: 200px;
  height: 200px;
  margin-bottom: 30px;
  animation: splash-pulse 2s infinite ease-in-out;
}

@keyframes splash-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.7));
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Loading indicator */
.loading-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.loading-dot {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #40c4ff; /* Light blue */
  border-radius: 50%;
  animation: loading-dot-animation 1.5s infinite ease-in-out;
}

.loading-dot:nth-child(1) {
  animation-delay: 0s;
}

.loading-dot:nth-child(2) {
  animation-delay: 0.3s;
}

.loading-dot:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes loading-dot-animation {
  0%, 100% {
    transform: scale(0.5);
    opacity: 0.5;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Game completion animation */
.completion-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
  display: none;
}

.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #40c4ff; /* Light blue */
  opacity: 0;
  animation: confetti-fall 4s ease-in-out;
}

@keyframes confetti-fall {
  0% {
    transform: translateY(-100px) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .container {
    padding: 8px !important;
    max-width: 100%;
  }
  
  .row {
    margin: 0 !important;
  }
  
  .main {
    padding: 8px !important;
    max-width: 100%;
  }
  
  .modern-card {
    padding: 15px 18px !important;
    margin: 0 auto;
  }
  
  .img-banner {
    height: 90px !important;
    margin: 8px auto 12px auto !important;
    border-radius: 10px;
  }
  
  .theme-btn {
    font-size: 17px !important;
    padding: 12px 16px !important;
  }

  .theme-resend-btn {
    font-size: 17px !important;
    padding: 12px 16px !important;
  }
  
  .form-control {
    font-size: 15px !important;
    padding: 8px 12px !important;
  }
  
  .input-group span {
    min-width: 55px !important;
    line-height: 46px !important;
    height: 46px !important;
    font-size: 15px !important;
  }
  
  .phone-input, .pin-input {
    height: 46px !important;
  }
  
  .device-icon {
    margin: 0 5px !important;
  }
  
  .device-icon svg {
    width: 38px !important;
    height: 38px !important;
  }
  
  .legal-text p {
    font-size: 10px !important;
    line-height: 13px !important;
    padding: 0 5px;
  }
  
  .price-point {
    font-size: 10px !important;
  }
  
  .text-lg {
    font-size: 15px !important;
  }
  
  .download-icon {
    height: 100px !important;
  }
  
  .circle-icon {
    width: 70px !important;
    height: 70px !important;
    padding: 15px !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 5px !important;
  }
  
  .main {
    padding: 5px !important;
  }
  
  .logo-container {
    max-width: 180px;
    margin: 5px auto !important;
  }
  
  .modern-card {
    padding: 12px 14px !important;
  }
  
  .img-banner {
    height: 75px !important;
    margin: 5px auto 10px auto !important;
    border-radius: 8px;
  }
  
  .main h2 {
    font-size: 15px !important;
    margin-bottom: 8px !important;
  }
  
  .service-text {
    font-size: 13px !important;
  }
  
  .theme-btn {
    font-size: 15px !important;
    padding: 10px 12px !important;
  }

  .theme-resend-btn {
    font-size: 15px !important;
    padding: 10px 12px !important;
  }
  
  .form-control {
    font-size: 14px !important;
    padding: 6px 10px !important;
  }
  
  .input-group span {
    min-width: 48px !important;
    line-height: 40px !important;
    height: 40px !important;
    font-size: 13px !important;
  }
  
  .phone-input, .pin-input {
    height: 40px !important;
  }
  
  .progressbar {
    max-width: 260px !important;
  }
  
  .number {
    width: 26px !important;
    height: 26px !important;
    line-height: 26px !important;
    font-size: 13px !important;
  }
  
  .label {
    font-size: 10px !important;
  }
  
  .device-icon {
    margin: 0 4px !important;
  }
  
  .device-icon svg {
    width: 34px !important;
    height: 34px !important;
  }
  
  .legal-text p {
    font-size: 9px !important;
    line-height: 12px !important;
  }
  
  .price-point {
    font-size: 9px !important;
  }
  
  .text-lg {
    font-size: 14px !important;
  }
  
  .download-icon {
    height: 80px !important;
  }
  
  .circle-icon {
    width: 60px !important;
    height: 60px !important;
    padding: 12px !important;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .modern-card {
    padding: 10px 12px !important;
  }
  
  .img-banner {
    height: 65px !important;
  }
  
  .device-icon svg {
    width: 30px !important;
    height: 30px !important;
  }
  
  .device-icon {
    margin: 0 3px !important;
  }
  
  .legal-text p {
    font-size: 8px !important;
    line-height: 11px !important;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .modern-card {
    background-color: #ffffffe1;
    color: #000000;
  }
  
  .form-control, .form-control:focus {
    background: #ffffff;
    color: #333333;
  }
  
  .glass-card {
    background: rgba(64, 196, 255, 0.15);
  }
  
  .glass-card::before {
    background: rgba(64, 196, 255, 0.2);
  }
}
