
body {
  /* Create a purple gradient background similar to the gaming controller image */
  background: linear-gradient(135deg, #4a0072 0%, #9c27b0 50%, #6a0080 100%);
  min-height: 100vh;
  height: 100vh;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Add a subtle pattern overlay */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 10%),
                    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 10%);
  opacity: 0.8;
  z-index: -1;
}

/* Add a glow effect */
body::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 40%, rgba(255, 0, 255, 0.3) 0%, transparent 60%),
              radial-gradient(circle at 70% 60%, rgba(0, 255, 255, 0.3) 0%, transparent 60%);
  z-index: -2;
}

@media (max-width: 767px) {
  body {
    background: linear-gradient(135deg, #4a0072 0%, #9c27b0 50%, #6a0080 100%);
    height: 100vh;
  }
}

/* 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: #9c27b0; /* Purple to match theme */
  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 */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

/* Add subtle wave animation */
.bg-animation::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, rgba(0,0,0,0.02) 25%, transparent 25%,
                    transparent 50%, rgba(0,0,0,0.02) 50%, rgba(0,0,0,0.02) 75%,
                    transparent 75%, transparent);
  background-size: 20px 20px;
  animation: moveWave 15s infinite linear;
  opacity: 0.3;
}

@keyframes moveWave {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 40px 40px;
  }
}

/* Professional subtle particles */
.floating-particle {
  position: absolute;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 50%;
  filter: blur(1px);
  animation: float-professional 30s infinite linear;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}

.floating-particle:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 15%;
  left: 15%;
  animation-duration: 18s;
  animation-delay: 0s;
}

.floating-particle:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 65%;
  left: 75%;
  animation-duration: 22s;
  animation-delay: 2s;
}

.floating-particle:nth-child(3) {
  width: 70px;
  height: 70px;
  top: 35%;
  left: 65%;
  animation-duration: 16s;
  animation-delay: 1s;
}

.floating-particle:nth-child(4) {
  width: 100px;
  height: 100px;
  top: 75%;
  left: 25%;
  animation-duration: 20s;
  animation-delay: 3s;
}

.floating-particle:nth-child(5) {
  width: 60px;
  height: 60px;
  top: 45%;
  left: 45%;
  animation-duration: 14s;
  animation-delay: 4s;
}

@keyframes float-professional {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translate(30px, 15px) scale(1.05);
    opacity: 0.4;
  }
  50% {
    transform: translate(15px, 30px) scale(1);
    opacity: 0.3;
  }
  75% {
    transform: translate(-15px, 15px) scale(1.05);
    opacity: 0.4;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
    opacity: 0.6;
    background: linear-gradient(45deg, rgba(76, 0, 130, 0.7), rgba(255, 204, 0, 0.3));
  }
  50% {
    background-position: 100% 50%;
    opacity: 0.8;
    background: linear-gradient(45deg, rgba(76, 0, 130, 0.5), rgba(255, 204, 0, 0.5));
  }
  100% {
    background-position: 0% 50%;
    opacity: 0.6;
    background: linear-gradient(45deg, rgba(76, 0, 130, 0.7), rgba(255, 204, 0, 0.3));
  }
}

/* Form animation classes */
.bounce-in {
  animation: bounce-in 1s ease;
}

@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;
  }
}

.bounce-in-up {
  animation: bounce-in-up 1s ease;
}

@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;
  }
}

.float-in {
  animation: float-in 1.2s ease-out;
}

@keyframes float-in {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.slide-in-left {
  animation: slide-in-left 0.8s ease-out;
}

@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%;
  }
}

.pulse-strong {
  animation: pulse-strong 1.5s infinite;
}

@keyframes pulse-strong {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(156, 39, 176, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(156, 39, 176, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(156, 39, 176, 0);
  }
}

/* Site header with logo */
.site-header {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(156, 39, 176, 0.3);
  position: relative;
  z-index: 10;
}

.logo-header {
  position: relative;
  
  &::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(to right, transparent, #9c27b0, transparent);
  }
}

.logo-container {
  max-width: 280px;
  margin: 15px auto;
}
.spinner {
  width: 25px;
  height: 25px;
  border: 4px solid #f3f3f3; /* Light grey background */
  border-top: 4px solid #9c27b0; /* Spinner color - purple */
  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: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 15px;
  color: #9c27b0; /* Purple theme */
  text-shadow: 0 0 10px rgba(156, 39, 176, 0.7);
  letter-spacing: 1px;
}
.service-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}
form {
  padding: 0;
  margin: 0;
}
.success-msg {
  color: #00ff00;
}
.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: #9c27b0; /* Purple theme */
  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(156, 39, 176, 0.1); /* Transparent background with slight color */
  box-shadow: 0 0 15px rgba(156, 39, 176, 0.3); /* Glowing effect */
  background: radial-gradient(
    circle,
    rgba(156, 39, 176, 0) 40%,
    rgba(156, 39, 176, 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: 10px; /* More angular for gaming theme */
  background: rgba(0, 0, 0, 0.7); /* Dark gaming background */
  backdrop-filter: blur(10px); /* Apply blur effect */
  box-shadow: 0 0 20px rgba(156, 39, 176, 0.3); /* Purple glow */
  border: 1px solid rgba(156, 39, 176, 0.3); /* Subtle purple border */
  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(156, 39, 176, 0.15); /* Purple 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: 30px 40px 15px 40px;
  background-color: rgba(255, 255, 255, 0.95); /* Clean white background */
  border-radius: 8px; /* Slightly rounded corners for professional look */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  border: none;
  transition: all 0.3s ease; /* Smooth transition on hover */
  overflow: hidden; /* To avoid any content spilling out */
  width: 100%;
  margin: auto;
  color: #333333; /* Dark text for readability */
}

/* Form animations */
#phoneForm {
  animation: form-appear 1s ease-out forwards;
}

@keyframes form-appear {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Professional input field styling */
.form-control {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 16px;
  line-height: 20px;
  transition: all 0.2s ease;
  background: #ffffff;
  color: #333333;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* 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(156, 39, 176, 0.5);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 20px rgba(156, 39, 176, 0.8);
    transform: scale(1.03);
  }
  100% {
    box-shadow: 0 0 15px rgba(156, 39, 176, 0.7);
    transform: scale(1.02);
  }
}

.form-control:focus {
  border-color: #4a6cf7;
  background: #ffffff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.15);
}

.input-group {
  max-width: 100%;
  border-radius: 2rem;
  /* overflow: hidden; */
}
.input-group span {
  display: inline-block;
  height: 100%;
  min-width: 60px;
  line-height: 46px;
  height: 46px;
  font-weight: 500;
  color: #555555;
  font-size: 16px;
  text-align: center;
  border-radius: 6px 0 0 6px;
  border: 1px solid #e0e0e0;
  border-right: none;
}

/* 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 10px 10px 0; /* More angular for gaming theme */
  overflow: hidden;
  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: 30px;
  font-weight: bold;
}
.text-lg {
  font-size: 18px;
}
.img-banner {
  /* max-width: 600px; */
  margin: 10px auto;
}
.img-banner img {
  width: 100%;
}
/* Error message styling */
#error-message {
  display: none;
  color: #dc3545;
  font-size: 14px;
  margin-top: 10px;
}

/* Professional button styling */
.theme-btn {
  background: #4a6cf7; /* Professional blue */
  color: #ffffff;
  transition: all 0.3s ease;
  text-transform: none;
  font-size: 16px;
  padding: 12px 20px;
  border: none;
  position: relative;
  overflow: hidden;
  border-radius: 6px; /* Slightly rounded corners */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-weight: 600;
  letter-spacing: 0.5px;
}


.theme-resend-btn {
  background: #6c757d; /* Professional secondary button color */
  color: #ffffff;
  transition: all 0.3s ease;
  text-transform: none;
  font-size: 16px;
  padding: 12px 20px;
  border: none;
  position: relative;
  overflow: hidden;
  border-radius: 6px; /* Slightly rounded corners */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* 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: #9c27b0; /* Purple theme */
  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: #9c27b0; /* Purple theme */
  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);
  }
}

/* Professional hover effects */
.theme-btn:hover {
  background: #3a5bd9; /* Slightly darker blue */
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.theme-resend-btn:hover {
  background: #5a6268; /* Slightly darker gray */
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

/* Input field fade animation */
@keyframes input-fade {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

.theme-btn:disabled {
  color: #ffffff;
  background: #ce93d8; /* Lighter purple */
  cursor: not-allowed;
  opacity: 0.6; /* make it look inactive */
  box-shadow: none;
}

.theme-resend-btn:disabled {
  color: #ffffff;
  background: #adb5bd; /* Lighter gray */
  cursor: not-allowed;
  opacity: 0.65; /* make it look inactive */
  box-shadow: none;
  transform: none;
}
/* price-point */
.price-point {
  font-size: 11px;
  color: #666666;
  font-weight: 600;
  display: block !important;
  width: 100%;
  position: relative;
  z-index: 10;
  margin-top: 5px;
  margin-bottom: 0;
}

@media (max-width: 480px) {
  .price-point {
    margin-top: 8px;
    margin-bottom: 0;
    font-size: 10px;
  }
}
.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 #9c27b0; /* Purple theme */
  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: #9c27b0; /* Purple theme */
  color: #ffffff !important;
}
/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

.legal-text p {
  font-size: 11px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  line-height: 14px;
  color: #ffffff;
  padding: 0;
}

.legal-text {
  padding: 0;
  margin-top: 0;
  width: 100%;
  text-align: center;
}
.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;
}

.device-icon svg {
  width: 60px;
  color: #ffc000; /* Gold/yellow color from gamesolutely-bh */
  transition: transform 0.3s ease, filter 0.3s ease;
}
.device-icon:hover svg {
  color: #ff6012; /* Orange on hover */
  transform: rotate(-12deg);
}

@media (max-width: 767px) {
  .device-icon svg {
    width: 48px;
    color: #ffffff; /* White for mobile */
  }
}

/* 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: #ffc000; /* Bright gold color for better visibility */
  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: rgba(0, 0, 0, 0.3); /* Semi-transparent black for better contrast */
  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: #ffc000; /* Bright gold color for better visibility */
  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: #9c27b0; /* Purple theme */
  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: #9c27b0; /* Purple theme */
  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) {
  .modern-card {
    padding: 15px 25px 10px 25px;
  }
  
  .theme-btn {
    font-size: 18px;
    padding: 8px 12px;
  }

  .theme-resend-btn{
    font-size: 18px;
    padding: 8px 12px;
  }
  
  .form-control {
    font-size: 16px;
    padding: 8px 15px;
  }
  
  .input-group span {
    min-width: 60px;
    line-height: 48px;
    height: 48px;
    font-size: 16px;
  }
  
  .phone-input {
    height: 48px;
  }
}

@media (max-width: 480px) {
  .logo-container {
    max-width: 220px;
    margin: 10px auto;
  }
  
  .main h2 {
    font-size: 18px;
  }
  
  .service-text {
    font-size: 16px;
  }
  
  .progressbar {
    max-width: 300px;
  }
  
  .number {
    width: 30px;
    height: 30px;
    line-height: 28px;
    font-size: 16px;
  }
  
  .label {
    font-size: 12px;
  }
}

/* Gaming-specific styles */
.gaming-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 32px;
  color: #ffcc00; /* Yellow color to match logo */
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.gaming-form-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #333333;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.gaming-icon {
  font-size: 18px;
  vertical-align: middle;
  margin: 0 5px;
  opacity: 0.8;
}

.gaming-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.gaming-feature {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(156, 39, 176, 0.3);
  border-radius: 10px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(156, 39, 176, 0.3);
  transition: all 0.3s ease;
}

.gaming-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(156, 39, 176, 0.5);
}

.gaming-feature .gaming-icon {
  font-size: 20px;
}

/* 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(156, 39, 176, 0.15);
  }
  
  .glass-card::before {
    background: rgba(255, 204, 0, 0.2); /* Yellow to match logo */
  }
}

/* Ripple effect for success page */
.ripple-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 204, 0, 0.3); /* Yellow to match logo */
  animation: ripple-effect 3s infinite ease-out;
}

.circle1 {
  animation-delay: 0s;
}

.circle2 {
  animation-delay: 1s;
}

.circle3 {
  animation-delay: 2s;
}

@keyframes ripple-effect {
  0% {
    width: 0;
    height: 0;
    opacity: 0.8;
  }
  100% {
    width: 200px;
    height: 200px;
    opacity: 0;
  }
}

/* Updated input field styling based on gamesolutely-bh */
.input-group {
  max-width: 100%;
  border-radius: 2rem;
}

.input-group span {
  background-color: #7b1fa2; /* Dark purple 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;
}

.phone-input {
  height: 56px;
}

.input-group .form-control {
  border-radius: 0 30px 30px 0;
  overflow: hidden;
  border: 1px solid #9c27b0;
  background: rgba(255, 255, 255, 1);
}

/* Updated button styling to match the purple theme */
.theme-btn {
  background: #9c27b0; /* Purple to match background */
  color: #ffffff;
  transition: all 0.5s ease;
  text-transform: uppercase;
  font-size: 22px;
  padding: 12px 20px;
  border: none;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(156, 39, 176, 0.3);
}

.theme-btn:hover {
  background: #7b1fa2; /* Slightly darker purple */
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(156, 39, 176, 0.4);
}

.theme-btn:disabled {
  color: #ffffff;
  background: #ce93d8; /* Lighter purple */
  cursor: not-allowed;
  opacity: 0.7;
  box-shadow: none;
  transform: none;
}

.theme-resend-btn {
  background: #673ab7; /* Lighter purple */
  color: #ffffff;
  transition: all 0.5s ease;
  text-transform: uppercase;
  font-size: 18px;
  padding: 12px 20px;
  border: none;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(103, 58, 183, 0.3);
}

.theme-resend-btn:hover {
  background: #512da8; /* Darker purple */
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(103, 58, 183, 0.4);
}

.theme-resend-btn:disabled {
  color: #ffffff;
  background: #b39ddb; /* Lighter purple */
  cursor: not-allowed;
  opacity: 0.7;
  box-shadow: none;
  transform: none;
}

/* Button animation classes */
.rounded-pill {
  border-radius: 50px !important;
}

.hover-shadow-lg:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
}

.pulse {
  animation: pulse 1s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Device Icons Section - Exact match to gamesolutely-bh */
.device-icons-container {
  display: none; /* Remove this container as it's not in gamesolutely-bh */
}

/* Update the parent container to match gamesolutely-bh */
.d-flex.justify-content-center.my-2 {
  margin-top: 1rem !important;
  margin-bottom: 0.5rem !important;
}

.device-icon {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.device-icon svg {
  width: 60px;
  color: #ffffff; /* White color for all screen sizes */
  transition: transform 0.3s ease, filter 0.3s ease;
}

.device-icon:hover svg {
  color: #ffc000; /* Gold/yellow on hover */
  transform: rotate(-12deg);
}

@media (max-width: 767px) {
  .device-icon svg {
    width: 48px;
    color: #ffffff; /* White for mobile */
  }
}

.transform {
  transition: transform 0.3s ease;
}

.transform.-rotate-12 {
  transform: rotate(-12deg);
}

.transform.rotate-12 {
  transform: rotate(12deg);
}

.theme-icon {
  width: 48px;
  height: 48px;
}