/* Global styles for all pages */
html, body, main {
  margin: 0;
  padding: 0;
}


:root {
  --pro-bg: #02040b;
  --pro-bg-soft: #060b18;
  --pro-surface: rgba(7, 12, 28, 0.88);
  --pro-surface-strong: rgba(10, 16, 36, 0.96);
  --pro-border: rgba(38, 222, 221, 0.22);
  --pro-primary: #26dedd;
  --pro-primary-dark: #12a8c8;
  --pro-secondary: #d80df2;
  --pro-accent: #8b6ff2;
  --pro-text: #ffffff;
  --pro-muted: #b7c7e8;
  --pro-light-muted: #7f91ba;
  --pro-error: #ff4d6d;
  --pro-success: #34f5a1;
  --pro-shadow: 0 22px 70px rgba(0, 0, 0, 0.48);
  --pro-shadow-soft: 0 0 34px rgba(38, 222, 221, 0.12);
}

/* Games World Professional Dark Neon Theme */
.blue-theme-bg {
  background:
    radial-gradient(circle at 14% 18%, rgba(38, 222, 221, 0.18) 0%, transparent 32%),
    radial-gradient(circle at 86% 14%, rgba(216, 13, 242, 0.18) 0%, transparent 34%),
    radial-gradient(circle at 50% 92%, rgba(139, 111, 242, 0.16) 0%, transparent 38%),
    linear-gradient(135deg, #02040b 0%, #060b18 46%, #0b1022 100%) !important;
  background-size: 180% 180% !important;
  animation: lightGradientAnimation 28s ease infinite !important;
  position: relative;
  overflow: hidden;
}

/* Soft professional background accents */
.blue-theme-bg::before {
  /* content: ''; */
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle, rgba(38, 222, 221, 0.06) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(216, 13, 242, 0.05) 1px, transparent 1px),
    radial-gradient(circle, rgba(139, 111, 242, 0.04) 2px, transparent 2px),
    radial-gradient(circle, rgba(38, 222, 221, 0.05) 1px, transparent 1px);
  background-size: 500px 500px, 400px 400px, 300px 300px, 350px 350px;
  background-position: 0 0, 50px 70px, 150px 300px, 200px 100px;
  animation: floatParticles 35s ease-in-out infinite;
  z-index: 0;
  opacity: 0.7;
}

@keyframes floatParticles {
  0%, 100% {
    background-position: 0 0, 50px 70px, 150px 300px, 200px 100px;
    opacity: 0.7;
  }
  50% {
    background-position: 120px 120px, 170px 190px, 270px 420px, 320px 220px;
    opacity: 0.9;
  }
}

@keyframes lightGradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 50% 100%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 50% 0%;
  }
  100% {
    background-position: 0% 50%;
  }
}

body {
  background:
    radial-gradient(circle at 14% 18%, rgba(38, 222, 221, 0.18) 0%, transparent 32%),
    radial-gradient(circle at 86% 14%, rgba(216, 13, 242, 0.18) 0%, transparent 34%),
    radial-gradient(circle at 50% 92%, rgba(139, 111, 242, 0.16) 0%, transparent 38%),
    linear-gradient(135deg, #02040b 0%, #060b18 46%, #0b1022 100%);
  background-size: 180% 180%;
  animation: lightGradientAnimation 28s ease infinite;
  min-height: 100vh;
  height: 100vh;
  font-family: 'Roboto', sans-serif;
  color: var(--pro-text);
}

.logo-container {
  max-width: 400px;
  margin: 15px auto;
  padding: 0 15px;
}

.logo-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.spinner {
  width: 25px;
  height: 25px;
  border: 4px solid rgba(38, 222, 221, 0.25);
  border-top: 4px solid #26dedd;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: auto;
  display: inline-block;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loading-content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.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: #b7c7e8;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.service-text {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  color: #26dedd;
}

form {
  padding: 0;
  margin: 0;
}

.success-msg {
  color: #34f5a1;
  font-weight: 500;
}

.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;
}

.circle-icon {
  display: inline-block;
  width: 25px;
  height: 25px;
  border: 4px solid #26dedd;
  position: absolute;
  border-radius: 50px;
  top: 15%;
  right: 0;
  animation: up-down 3s infinite ease-in-out;
}

.circle-icon-left {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #26dedd 0%, #8b6ff2 100%);
  position: absolute;
  border-radius: 50px;
  top: 25%;
  left: 0;
  animation: up-down 3s infinite ease-in-out;
  box-shadow: 0 4px 12px rgba(216, 13, 242, 0.3);
}

.pulse {
  animation: pulse 0.8s 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);
  }
}

/* Professional glass card */
.glass-card {
  background: linear-gradient(145deg, rgba(7, 12, 28, 0.92), rgba(10, 16, 36, 0.86));
  box-shadow: 0 10px 40px rgba(216, 13, 242, 0.12), 0 4px 12px rgba(38, 222, 221, 0.08);
  border: 1.5px solid rgba(216, 13, 242, 0.15);
  color: #ffffff;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.glass-card:hover {
  border-color: rgba(216, 13, 242, 0.35);
  box-shadow: 0 15px 50px rgba(216, 13, 242, 0.18), 0 6px 18px rgba(38, 222, 221, 0.12);
  transform: translateY(-2px);
}

.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(216, 13, 242, 0.04) 0%, rgba(38, 222, 221, 0.03) 50%, rgba(139, 111, 242, 0.04) 100%);
  border-radius: 24px;
  pointer-events: none;
}

.glass-card h2 {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
}

.glass-card p {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  color: #b7c7e8;
}

.modern-card {
  background: linear-gradient(145deg, rgba(7, 12, 28, 0.88), rgba(10, 16, 36, 0.82));
  border-radius: 24px;
  /* box-shadow: 0 10px 40px rgba(216, 13, 242, 0.1), 0 4px 12px rgba(38, 222, 221, 0.06); */
  padding: 30px;
  overflow: hidden;
  width: 100%;
  margin: auto;
  border: 1.5px solid rgba(216, 13, 242, 0.12);
  z-index: 1;
  color: #ffffff;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.modern-card * {
  color: inherit;
}

/* .modern-card:hover {
  border: 1.5px solid rgba(216, 13, 242, 0.25);
  box-shadow: 0 15px 50px rgba(216, 13, 242, 0.15), 0 6px 18px rgba(38, 222, 221, 0.1);
  transform: translateY(-1px);
} */

/* Professional input field styling */
.form-control {
  border: 2px solid rgba(216, 13, 242, 0.25);
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 20px;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.92);
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.form-control:focus {
  border-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(216, 13, 242, 0.12), 0 4px 12px rgba(216, 13, 242, 0.08);
  transform: scale(1.01);
  background: rgba(255, 255, 255, 0.98);
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  outline: none;
}

.form-control::placeholder {
  color: rgba(0, 0, 0, 0.52);
}

.input-group {
  max-width: 100%;
  border-radius: 2rem;
}

.input-group span {
  background: linear-gradient(135deg, #26dedd 0%, #d80df2 100%);
  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;
  box-shadow: 0 4px 15px rgba(216, 13, 242, 0.3);
}

.form-control.error {
  border-color: #ff4d6d;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

.phone-input {
  height: 56px;
}

.form-control:disabled {
  background-color: #070c1c;
  border-color: #b7c7e8;
  color: #7f91ba;
  -webkit-text-fill-color: #7f91ba;
}

.error {
  color: #ff4d6d;
  font-size: 14px;
  font-weight: 500;
}

.success {
  color: #34f5a1;
  font-size: 14px;
  font-weight: 500;
}

#responseMessage, #pinResponseMessage {
  color: var(--pro-error);
}

.input-group .form-control {
  border-radius: 0 30px 30px 0;
  overflow: hidden;
  /* color: #000000;
  -webkit-text-fill-color: #000000; */
}

.card {
  background: linear-gradient(145deg, rgba(7, 12, 28, 0.90), rgba(10, 16, 36, 0.84));
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(216, 13, 242, 0.1), 0 4px 12px rgba(38, 222, 221, 0.06);
  border: 1.5px solid rgba(216, 13, 242, 0.12);
}

.btn {
  border-radius: 30px;
  font-weight: bold;
}

.text-lg {
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
}

.img-banner {
  margin: 10px auto;
}

.img-banner img {
  width: 100%;
}

#error-message {
  display: none;
  color: #ff4d6d;
  font-size: 14px;
  margin-top: 10px;
  font-weight: 500;
}

.btn-secondary {
  padding: 10px 15px;
  text-transform: uppercase;
}

/* Professional button gradient */
.theme-btn {
  background: linear-gradient(135deg, #26dedd 0%, #d80df2 100%);
  background-size: 200% auto;
  color: #ffffff;
  transition: all 0.4s ease;
  text-transform: uppercase;
  font-size: 22px;
  padding: 10px 15px;
  border: none;
  border-radius: 30px;
  /* box-shadow: 0 6px 24px rgba(216, 13, 242, 0.35), 0 2px 8px rgba(216, 13, 242, 0.2); */
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-weight: 600;
}

.theme-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.5s ease;
}

.theme-btn:hover::before {
  left: 100%;
}

.theme-btn:hover {
  background: linear-gradient(135deg, #d80df2 0%, #0f766e 100%);
  color: #ffffff;
  transform: translateY(-3px);
  /* box-shadow: 0 8px 30px rgba(216, 13, 242, 0.45), 0 4px 12px rgba(216, 13, 242, 0.25); */
}

.theme-btn:disabled {
  color: #ffffff;
  background: linear-gradient(135deg, #7f91ba 0%, #9fb0d4 100%);
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
  box-shadow: none;
}

/* Price Point */
.price-point {
  font-size: 12px;
  color: #ffffff;
  font-weight: 700;
  margin-top: 10px;
}

.down-arrow {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #ffffff;
  position: absolute;
  top: 14px;
  right: 8px;
}

/* Language Switcher */
.dropdown.lang-swticher {
  position: absolute;
  display: inline-block;
  right: 10px;
  top: 10px;
  z-index: 100;
}

.block {
  display: block;
}

.lang-swticher .dropdown-button {
  background: rgba(7, 12, 28, 0.88);
  color: #ffffff;
  padding: 8px 25px 8px 8px;
  font-size: 12px;
  text-align: center;
  border-radius: 12px;
  cursor: pointer;
  text-transform: uppercase;
  min-width: 80px;
  border: 1.5px solid rgba(216, 13, 242, 0.25);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(216, 13, 242, 0.15);
  font-weight: 600;
}

.lang-swticher .dropdown-button:hover {
  background: linear-gradient(135deg, #26dedd 0%, #d80df2 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(216, 13, 242, 0.35);
}

.w-100 {
  width: 100%;
}

.lang-swticher .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  background: rgba(7, 12, 28, 0.84);
  border: 1.5px solid rgba(216, 13, 242, 0.2);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(216, 13, 242, 0.18);
  z-index: 10;
  text-align: center;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.lang-swticher .dropdown-content a {
  color: #ffffff;
  padding: 8px 12px;
  text-decoration: none;
  font-size: 13px;
  display: block;
  white-space: nowrap;
  transition: all 0.2s ease;
  background-color: transparent;
  font-weight: 500;
}

.lang-swticher .dropdown-content a:hover {
  background: linear-gradient(135deg, #26dedd 0%, #d80df2 100%) !important;
  color: #ffffff;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.legal-text p {
  font-size: 12px;
  margin-bottom: 0px;
  font-family: "Roboto", sans-serif;
  line-height: 15px;
  color: #ffffff;
  text-align: justify;
}

.legal-text ul {
  font-size: 12px;
  margin-bottom: 0px;
  font-family: "Roboto", sans-serif;
  line-height: 15px;
  color: #ffffff;
}

.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: 50px;
  color: #26dedd;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.device-icon:hover svg {
  color: #d80df2;
  transform: rotate(-12deg) scale(1.1);
  /* filter: drop-shadow(0 0 8px rgba(216, 13, 242, 0.4)); */
}

/* Progress Bar */
.user-progressbar {
  display: none;
}

.progressbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 400px;
  margin: 0px auto 15px auto;
  position: relative;
}

.step {
  flex: 1;
  position: relative;
}

.number {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  border-radius: 50%;
  line-height: 30px;
  color: #000000;
  font-weight: bold;
  text-align: center;
  position: relative;
  z-index: 12;
  margin: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.step.active .number {
  background: linear-gradient(135deg, #26dedd 0%, #d80df2 100%);
  color: #ffffff;
  transform: scale(1.1);
  /* box-shadow: 0 0 15px rgba(216, 13, 242, 0.5); */
}

.label {
  margin-top: 5px;
  font-size: 12px;
  color: #b7c7e8;
  text-align: center;
}

.progressbar .step::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 25px;
  right: 15px;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #ffffff, #ffffff);
  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);
    opacity: 1;
  }
  15% {
    transform: scale(1.01) rotate(0.5deg);
    filter: blur(0.2px);
    opacity: 0.95;
  }
  30% {
    transform: scale(0.99) rotate(-0.5deg);
    filter: blur(0.4px);
    opacity: 0.9;
  }
  45% {
    transform: scale(1.015) rotate(0.3deg);
    filter: blur(0.3px);
    opacity: 0.95;
  }
  60% {
    transform: scale(0.985) rotate(-0.3deg);
    filter: blur(0.5px);
    opacity: 0.9;
  }
  75% {
    transform: scale(1.02) rotate(0.2deg);
    filter: blur(0.2px);
    opacity: 0.95;
  }
  90% {
    transform: scale(0.99) rotate(-0.1deg);
    filter: blur(0.1px);
    opacity: 0.98;
  }
  100% {
    transform: scale(1) rotate(0deg);
    filter: blur(0);
    opacity: 1;
  }
}

.ripple-wrapper {
  position: absolute;
  width: 200px;
  height: 200px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}

.ripple {
  width: 200px;
  height: 200px;
  background: rgba(216, 13, 242, 0.15);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  transform: scale(0);
  animation: rippleEffect 3s ease-out infinite;
}

.circle1 {
  animation-delay: 0s;
}

.circle2 {
  animation-delay: 1s;
}

.circle3 {
  animation-delay: 2s;
}

@keyframes rippleEffect {
  0% {
    transform: scale(0.2) rotate(0deg);
    opacity: 0.6;
    border-radius: 50%;
  }
  20% {
    transform: scale(0.5) rotate(5deg);
    opacity: 0.8;
    border-radius: 48%;
  }
  40% {
    transform: scale(1.0) rotate(10deg);
    opacity: 0.6;
    border-radius: 46%;
  }
  60% {
    transform: scale(1.5) rotate(5deg);
    opacity: 0.4;
    border-radius: 48%;
  }
  80% {
    transform: scale(1.8) rotate(0deg);
    opacity: 0.2;
    border-radius: 49%;
  }
  100% {
    transform: scale(2) rotate(0deg);
    opacity: 0;
    border-radius: 50%;
  }
}

.progressbar .step::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 25px;
  height: 4px;
  background: linear-gradient(90deg, #26dedd, #d80df2);
  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%;
}

/* Responsive Design */
@media (max-width: 1200px) {
 .modern-card {
    padding: 30px;
  }
}

@media (max-width: 992px) {
 .modern-card {
    padding: 25px;
  }
}

@media (max-width: 767px) {
  body {
    background: linear-gradient(135deg, #02040b 0%, #060b18 20%, #10152a 40%, #0b1022 60%, #02040b 80%, #060b18 100%);
    background-size: 400% 400%;
    animation: lightGradientAnimation 30s ease infinite;
    height: 100vh;
  }

  .user-progressbar {
    display: block;
  }

 .modern-card {
    padding: 20px;
  }

  .main h2 {
    font-size: 18px;
    margin-bottom: 0;
  }

  .device-icon svg {
    width: 40px;
    color: #26dedd;
  }
  
  .service-text {
    font-size: 16px;
  }

  .logo-container {
    max-width: 220px;
    margin: 5px auto;
    padding: 0 10px;
  }
  
  .logo-img {
    max-width: 100%;
    height: auto;
  }

  .progressbar {
    max-width: 220px;
  }
  
  input[type="text"],
  input[type="tel"],
  input[type="email"],
  input[type="number"],
  input[type="password"] {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
  }
  
  @keyframes float {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(0px);
    }
  }
  
  .arrow-container {
    width: 96px;
    height: 96px;
    margin: 0 auto;
    animation: float 3s ease-in-out infinite;
  }
  
  .arrow-circle {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 50%;
    border: 2px solid #26dedd;
    box-shadow: 0 8px 32px rgba(216, 13, 242, 0.25);
  }
  
  .arrow-circle svg {
    width: 48px;
    height: 48px;
  }
  
  .device-icon:hover {
    transform: translateY(-5px) !important;
    filter: brightness(1.1);
  }
}

/* Games World consistency fixes */
.blue-theme-bg,
body {
  color: var(--pro-text);
}

.modern-card,
.glass-card,
.card {
  border-color: var(--pro-border) !important;
  box-shadow: var(--pro-shadow), var(--pro-shadow-soft) !important;
}

.theme-btn,
.input-group span {
  background: linear-gradient(135deg, var(--pro-primary) 0%, var(--pro-accent) 48%, var(--pro-secondary) 100%) !important;
}

.theme-btn:hover {
  background: linear-gradient(135deg, var(--pro-secondary) 0%, var(--pro-accent) 48%, var(--pro-primary) 100%) !important;
}

/* .legal-text p,
.legal-text ul,
.legal-text li,
.price-point,
.label,
.text-lg {
  color: var(--pro-muted) !important;
} */

.logo-img {
  filter: drop-shadow(0 0 18px rgba(38, 222, 221, 0.20)) drop-shadow(0 0 26px rgba(216, 13, 242, 0.12)) !important;
}
