/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: linear-gradient(135deg, #0a1929 0%, #1a2332 50%, #0f1a2e 100%);
  min-height: 100vh;
}

/* Color Scheme Variables */
:root {
  --ice-blue: #64b5f6;
  --ice-blue-light: #90caf9;
  --dark-navy: #0a1929;
  --dark-navy-light: #1a2332;
  --soft-white: #f5f7fa;
  --neon-cyan: #00e5ff;
  --neon-purple: #9c27b0;
  --neon-pink: #e91e63;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Age Verification Modal */
.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 25, 41, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  backdrop-filter: blur(10px);
}

.age-modal.show {
  display: flex;
}

.age-modal-content {
  background: linear-gradient(135deg, #1a2332 0%, #0a1929 100%);
  padding: 40px;
  border-radius: 15px;
  border: 2px solid var(--ice-blue);
  box-shadow: 0 0 30px rgba(100, 181, 246, 0.5);
  text-align: center;
  max-width: 400px;
}

.age-modal-content h2 {
  color: var(--ice-blue);
  margin-bottom: 20px;
  font-size: 24px;
}

.age-modal-content p {
  margin-bottom: 30px;
  font-size: 18px;
}

.age-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-yes,
.btn-no {
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-yes {
  background: linear-gradient(45deg, var(--ice-blue), var(--neon-cyan));
  color: white;
}

.btn-yes:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(100, 181, 246, 0.4);
}

.btn-no {
  background: #37474f;
  color: white;
}

.btn-no:hover {
  background: #455a64;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(26, 35, 50, 0.95);
  backdrop-filter: blur(10px);
  border-top: 2px solid var(--ice-blue);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content p {
  margin: 0;
  flex: 1;
}

.cookie-content a {
  color: var(--ice-blue);
  text-decoration: none;
}

.cookie-content a:hover {
  text-decoration: underline;
}

.cookie-accept {
  background: linear-gradient(45deg, var(--ice-blue), var(--neon-cyan));
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  margin-left: 20px;
  transition: all 0.3s ease;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(100, 181, 246, 0.4);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 25, 41, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(100, 181, 246, 0.3);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  background: linear-gradient(45deg, var(--ice-blue), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Burger Menu */
.burger-checkbox {
  display: none;
}

.burger-label {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 25px;
  justify-content: space-between;
  position: relative;
  z-index: 1001;
}

.burger-label span {
  display: block;
  height: 3px;
  background: var(--ice-blue);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.burger-checkbox:checked ~ .burger-label span:nth-child(1),
.burger-label.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-checkbox:checked ~ .burger-label span:nth-child(2),
.burger-label.active span:nth-child(2) {
  opacity: 0;
}

.burger-checkbox:checked ~ .burger-label span:nth-child(3),
.burger-label.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #1a2332 0%, #0a1929 100%);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding-top: 80px;
  border-left: 2px solid var(--ice-blue);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.burger-checkbox:checked ~ .nav,
.nav.active {
  transform: translateX(0);
}

.nav ul {
  list-style: none;
  padding: 0;
}

.nav li {
  border-bottom: 1px solid rgba(100, 181, 246, 0.2);
}

.nav a {
  display: block;
  padding: 20px 30px;
  color: var(--soft-white);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.nav a:hover {
  background: rgba(100, 181, 246, 0.1);
  color: var(--ice-blue);
  padding-left: 40px;
}

/* Body scroll lock */
body.menu-open {
  overflow: hidden;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    #0a1929 0%,
    #1a2332 30%,
    #0f1a2e 70%,
    #0a1929 100%
  );
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(100, 181, 246, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 229, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(156, 39, 176, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px 80px;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
  background: linear-gradient(
    45deg,
    var(--ice-blue),
    var(--neon-cyan),
    var(--neon-pink)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(100, 181, 246, 0.5);
}

.hero-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--ice-blue);
  margin-bottom: 25px;
  font-weight: 300;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: var(--soft-white);
}

.hero-status {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.status-badge,
.update-badge {
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.status-badge {
  background: linear-gradient(45deg, var(--neon-purple), var(--neon-pink));
  color: white;
}

.update-badge {
  background: linear-gradient(45deg, var(--ice-blue), var(--neon-cyan));
  color: white;
}

.hero-image {
  position: relative;
}

.image-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(
    135deg,
    rgba(100, 181, 246, 0.1) 0%,
    rgba(0, 229, 255, 0.1) 100%
  );
  border: 2px solid var(--ice-blue);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 13px;
}

.glow-effect {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(100, 181, 246, 0.3) 0%,
    transparent 70%
  );
  animation: glow 4s ease-in-out infinite alternate;
}

@keyframes glow {
  0% {
    transform: scale(0.8);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.2);
    opacity: 0.6;
  }
}

.image-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.image-content span {
  font-size: 24px;
  font-weight: bold;
  color: var(--ice-blue);
}

.image-content small {
  display: block;
  margin-top: 10px;
  color: var(--soft-white);
  opacity: 0.8;
}

/* Sections */
section {
  padding: 80px 0;
  position: relative;
}

section:nth-child(even) {
  background: rgba(26, 35, 50, 0.3);
}

section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 50px;
  background: linear-gradient(45deg, var(--ice-blue), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Overview Section */
.overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.overview-text p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--soft-white);
}

/* Features Section */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
  background: rgba(100, 181, 246, 0.1);
  border: 1px solid rgba(100, 181, 246, 0.3);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(100, 181, 246, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(100, 181, 246, 0.2);
}

.feature-icon {
  font-size: 3rem;
  min-width: 80px;
  text-align: center;
}

.feature-content h3 {
  color: var(--ice-blue);
  margin-bottom: 10px;
  font-size: 20px;
}

.feature-content p {
  color: var(--soft-white);
  line-height: 1.6;
}

.feature-image {
  flex-shrink: 0;
  width: 200px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(100, 181, 246, 0.3);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.feature-item:hover .feature-image img {
  transform: scale(1.05);
}

/* Progress Section */
.progress-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.progress-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: currentColor;
  opacity: 0.1;
  z-index: 0;
}

.progress-step.completed {
  color: #4caf50;
  border: 2px solid #4caf50;
}

.progress-step.active {
  color: var(--ice-blue);
  border: 2px solid var(--ice-blue);
}

.progress-step.upcoming {
  color: var(--soft-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.step-icon {
  font-size: 2rem;
  min-width: 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-content {
  position: relative;
  z-index: 1;
}

.step-content h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.step-content p {
  color: var(--soft-white);
  line-height: 1.6;
}

/* Sneak Peek Section */
.sneak-peek {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sneak-peek-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.sneak-peek-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) contrast(1.1);
}

.sneak-peek-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 25, 41, 0.85) 0%,
    rgba(26, 35, 50, 0.85) 100%
  );
}

.sneak-peek-content {
  text-align: center;
  max-width: 800px;
  padding: 40px;
  position: relative;
  z-index: 1;
}

.sneak-peek-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.sneak-peek-content p {
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--ice-blue);
  font-weight: bold;
}

.btn-contact {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(45deg, var(--ice-blue), var(--neon-cyan));
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(100, 181, 246, 0.3);
}

.btn-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(100, 181, 246, 0.5);
}

/* Updates Section */
.updates-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.update-item {
  padding: 30px;
  background: rgba(100, 181, 246, 0.1);
  border: 1px solid rgba(100, 181, 246, 0.3);
  border-radius: 15px;
}

.update-item h3 {
  color: var(--ice-blue);
  margin-bottom: 15px;
  font-size: 20px;
}

.update-item p {
  color: var(--soft-white);
  line-height: 1.8;
}

/* FAQ Section */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  padding: 30px;
  background: rgba(100, 181, 246, 0.1);
  border: 1px solid rgba(100, 181, 246, 0.3);
  border-radius: 15px;
}

.faq-item h3 {
  color: var(--ice-blue);
  margin-bottom: 15px;
  font-size: 18px;
}

.faq-item p {
  color: var(--soft-white);
  line-height: 1.8;
}

/* Contact Section */
.contact-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: var(--soft-white);
}

.contact-info {
  background: rgba(100, 181, 246, 0.1);
  padding: 30px;
  border-radius: 15px;
  margin: 30px 0;
  border: 1px solid rgba(100, 181, 246, 0.3);
}

.contact-info p {
  margin: 10px 0;
  font-size: 16px;
}

/* Legal Pages */
.legal-page {
  padding: 120px 0 80px;
  min-height: 100vh;
  background: linear-gradient(135deg, #0a1929 0%, #1a2332 50%, #0f1a2e 100%);
}

.legal-page .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.legal-page h1 {
  color: var(--ice-blue);
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
  background: linear-gradient(45deg, var(--ice-blue), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-page h2 {
  color: var(--ice-blue);
  font-size: 1.8rem;
  margin: 40px 0 20px 0;
  border-bottom: 2px solid var(--ice-blue);
  padding-bottom: 10px;
}

.legal-page h3 {
  color: var(--ice-blue-light);
  font-size: 1.3rem;
  margin: 25px 0 15px 0;
}

.legal-page p {
  color: var(--soft-white);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}

.legal-page ul {
  color: var(--soft-white);
  line-height: 1.8;
  margin: 20px 0;
  padding-left: 30px;
}

.legal-page li {
  margin-bottom: 10px;
  font-size: 16px;
}

.legal-page strong {
  color: var(--ice-blue);
}

.back-link {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(100, 181, 246, 0.3);
}

.back-link a {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(45deg, var(--ice-blue), var(--neon-cyan));
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(100, 181, 246, 0.3);
}

.back-link a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(100, 181, 246, 0.5);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0a1929 0%, #1a2332 100%);
  padding: 40px 0 20px;
  border-top: 2px solid var(--ice-blue);
}

.footer-content {
  text-align: center;
}

.footer-main {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-main span {
  font-size: 18px;
  color: var(--ice-blue);
  font-weight: bold;
}

.separator {
  color: var(--soft-white);
  opacity: 0.5;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--soft-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--ice-blue);
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--soft-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--ice-blue);
}

.footer-bottom p {
  margin: 5px 0;
  color: var(--soft-white);
  opacity: 0.7;
}

.ssl-notice {
  font-size: 14px;
  margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .overview-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .feature-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 16/9;
    margin: 0 auto;
  }

  .progress-step {
    flex-direction: column;
    text-align: center;
  }

  .cookie-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-main,
  .footer-nav {
    flex-direction: column;
    gap: 15px;
  }

  .footer-links {
    justify-content: center;
  }

  .nav {
    width: 250px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  section {
    padding: 60px 0;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text h2 {
    font-size: 1.5rem;
  }

  .feature-icon {
    font-size: 2rem;
    min-width: 60px;
  }

  .step-icon {
    font-size: 1.5rem;
    min-width: 50px;
  }
}

/* Loading lazy images */
img[loading="lazy"] {
  transition: opacity 0.3s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark-navy);
}

::-webkit-scrollbar-thumb {
  background: var(--ice-blue);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--ice-blue-light);
}
