/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #e0e0e0;
  background: linear-gradient(135deg, #0a1929 0%, #1a2332 100%);
  position: relative;
}

body.menu-open {
  overflow: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}
h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}
h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 25, 41, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 255, 255, 0.3);
  z-index: 1000;
  padding: 1rem 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00ffff;
  text-transform: none;
}

/* Burger Menu */
.burger-checkbox {
  display: none;
}

.burger-label {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.burger-label span {
  display: block;
  width: 100%;
  height: 3px;
  background: #00ffff;
  margin-bottom: 6px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 2px;
}

.burger-checkbox:checked ~ .burger-label span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger-checkbox:checked ~ .burger-label span:nth-child(2) {
  opacity: 0;
}

.burger-checkbox:checked ~ .burger-label span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #1a2332 0%, #0a1929 100%);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 80px 2rem 2rem;
  border-left: 1px solid rgba(0, 255, 255, 0.3);
  overflow-y: auto;
}

.burger-checkbox:checked ~ .nav {
  transform: translateX(0);
}

.nav-link {
  color: #e0e0e0;
  text-decoration: none;
  padding: 1rem 0;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.nav-link:hover {
  color: #00ffff;
  transform: translateX(10px);
}

/* Age Verification Modal */
.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  backdrop-filter: blur(5px);
}

.age-modal.hidden {
  display: none;
}

.age-modal-content {
  background: linear-gradient(135deg, #1a2332 0%, #0a1929 100%);
  padding: 3rem;
  border-radius: 15px;
  border: 2px solid #00ffff;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.age-modal-content h2 {
  color: #00ffff;
  margin-bottom: 1rem;
}

.age-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.btn-age-yes,
.btn-age-no {
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn-age-yes {
  background: linear-gradient(135deg, #00ffff 0%, #0099cc 100%);
  color: #0a1929;
}

.btn-age-no {
  background: linear-gradient(135deg, #ff6b6b 0%, #cc5555 100%);
  color: white;
}

.btn-age-yes:hover,
.btn-age-no:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 25, 41, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 255, 255, 0.3);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  color: #e0e0e0;
}

.cookie-banner a {
  color: #00ffff;
  text-decoration: none;
}

.cookie-accept {
  background: linear-gradient(135deg, #00ffff 0%, #0099cc 100%);
  color: #0a1929;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a1929 0%, #1a2332 50%, #2a3442 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 50%,
      rgba(0, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(0, 200, 255, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.hero-left {
  padding-right: 2rem;
}

.hero-title {
  background: linear-gradient(135deg, #00ffff 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.hero-subtitle {
  color: #00cccc;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin-bottom: 2rem;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: #cccccc;
}

.hero-status {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-status span {
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #00ffff;
}

.btn-play {
  display: inline-block;
  background: linear-gradient(135deg, #00ffff 0%, #0099cc 100%);
  color: #0a1929;
  padding: 1rem 2.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  margin-top: 2rem;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-play:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 255, 255, 0.3);
}

.hero-warning {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(255, 193, 7, 0.2);
  border: 2px solid rgba(255, 193, 7, 0.5);
  border-radius: 10px;
  color: #ffc107;
  font-size: 0.95rem;
  line-height: 1.5;
}

.warning-text {
  color: #ffc107;
  font-size: 1rem;
  text-align: center;
  padding: 1rem;
  background: rgba(255, 193, 7, 0.15);
  border: 2px solid rgba(255, 193, 7, 0.4);
  border-radius: 10px;
  margin: 1.5rem 0;
}

.warning-section {
  margin-top: 2rem;
  text-align: center;
}

.btn-play-now-overlay {
  display: inline-block;
  background: linear-gradient(135deg, #00ffff 0%, #0099cc 100%);
  color: #0a1929;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.btn-play-now-overlay:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 255, 255, 0.3);
}

.btn-play-now-inline {
  display: inline-block;
  background: linear-gradient(135deg, #00ffff 0%, #0099cc 100%);
  color: #0a1929;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.btn-play-now-inline:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 255, 255, 0.3);
}

.warning-text-footer {
  color: #ffc107;
  font-size: 0.9rem;
  text-align: center;
  padding: 0.8rem;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 8px;
  margin-top: 1rem;
}

.hero-right {
  position: relative;
}

.hero-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.hero-image-container:hover .hero-image {
  transform: scale(1.05);
}

.hero-image-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a2332 0%, #2a3442 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.glow-effect {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(0, 255, 255, 0.3) 0%,
    transparent 70%
  );
  animation: glow 4s ease-in-out infinite alternate;
}

@keyframes glow {
  0% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(360deg) scale(1.2);
  }
}

/* Section Styles */
section {
  padding: 6rem 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, #00ffff 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Game Overview */
.overview {
  background: linear-gradient(135deg, #1a2332 0%, #0a1929 100%);
}

.overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.overview-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.overview-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.overview-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
  object-fit: cover;
  transition: transform 0.3s ease;
  border: 2px solid rgba(0, 255, 255, 0.3);
}

.overview-image:hover .overview-img {
  transform: scale(1.05);
}

.highlight {
  color: #00ffff;
  font-weight: 600;
}

/* Image Placeholders */
.image-placeholder {
  background: linear-gradient(135deg, #2a3442 0%, #1a2332 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(0, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.image-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(0, 255, 255, 0.1) 50%,
    transparent 70%
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.image-text {
  color: #00ffff;
  font-size: 1.2rem;
  font-weight: 600;
  z-index: 1;
  text-align: center;
}

/* Core Features */
/* Core Features */
.features {
  background: linear-gradient(135deg, #0a1929 0%, #1a2332 50%, #0a1929 100%);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(0, 255, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(0, 200, 255, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.section-subtitle {
  color: rgba(224, 224, 224, 0.7);
  font-size: 1.2rem;
  margin-top: 1rem;
  font-weight: 300;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.feature-card-span-2 {
  grid-column: span 2;
}

.feature-card {
  position: relative;
  height: 100%;
  perspective: 1000px;
}

.feature-card-inner {
  position: relative;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 35, 50, 0.8) 0%,
    rgba(10, 25, 41, 0.9) 100%
  );
  border: 2px solid rgba(0, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.feature-card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00ffff, transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.feature-card:hover .feature-card-inner::before {
  transform: translateX(100%);
}

.feature-card:hover .feature-card-inner {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(0, 255, 255, 0.5);
  box-shadow: 0 20px 60px rgba(0, 255, 255, 0.15),
    0 0 40px rgba(0, 255, 255, 0.1), inset 0 0 60px rgba(0, 255, 255, 0.05);
}

.feature-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.15;
  z-index: 0;
  overflow: hidden;
  border-radius: 20px;
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.feature-card:hover .feature-image {
  transform: scale(1.1);
  opacity: 0.25;
}

.feature-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.feature-icon {
  font-size: 3.5rem;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3));
}

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(5deg);
}

.feature-icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(0, 255, 255, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: pulse-glow 3s ease-in-out infinite;
}

.feature-card:hover .feature-icon-glow {
  opacity: 1;
}

@keyframes pulse-glow {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.5;
  }
}

.feature-card h3 {
  color: #00ffff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.feature-card p {
  color: rgba(224, 224, 224, 0.8);
  text-align: center;
  line-height: 1.6;
  font-size: 1rem;
}

.feature-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #00ffff, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover .feature-accent {
  opacity: 1;
}

/* Feature Image Card */
.feature-image-card {
  padding: 0;
  height: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.feature-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-main-image {
  transform: scale(1.05);
}

.feature-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(10, 25, 41, 0.95) 0%,
    rgba(10, 25, 41, 0.8) 50%,
    transparent 100%
  );
  padding: 2.5rem;
  border-radius: 0 0 20px 20px;
  transition: all 0.4s ease;
}

.feature-image-overlay h3 {
  color: #00ffff;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.feature-image-overlay p {
  color: rgba(224, 224, 224, 0.9);
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}

.feature-card:hover .feature-image-overlay {
  background: linear-gradient(
    to top,
    rgba(10, 25, 41, 0.98) 0%,
    rgba(10, 25, 41, 0.85) 50%,
    transparent 100%
  );
}

/* Development Progress */
.progress {
  background: linear-gradient(135deg, #1a2332 0%, #0a1929 50%, #1a2332 100%);
  position: relative;
  overflow: hidden;
}

.progress::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 50% 20%,
      rgba(0, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 80%,
      rgba(0, 200, 255, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.progress-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.progress-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.progress-timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline-line {
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    180deg,
    rgba(0, 255, 136, 0.6) 0%,
    rgba(0, 255, 136, 0.6) 50%,
    rgba(0, 255, 255, 0.6) 50%,
    rgba(0, 255, 255, 0.3) 75%,
    rgba(102, 102, 102, 0.2) 100%
  );
  border-radius: 2px;
}

.progress-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-left: 1rem;
}

.progress-step:last-child {
  margin-bottom: 0;
}

.step-connector {
  position: absolute;
  left: 40px;
  top: 60px;
  width: 3px;
  height: calc(100% + 3rem);
  background: transparent;
  transform: translateX(-50%);
}

.step-connector.active-connector {
  background: linear-gradient(
    180deg,
    rgba(0, 255, 255, 0.6),
    rgba(0, 255, 255, 0.2)
  );
  animation: connector-pulse 2s ease-in-out infinite;
}

@keyframes connector-pulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.step-marker {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  z-index: 2;
}

.marker-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.progress-step.completed .marker-inner {
  background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.progress-step.completed .marker-inner svg {
  width: 40px;
  height: 40px;
  color: #0a1929;
  stroke-width: 3;
}

.progress-step.active .marker-inner {
  background: linear-gradient(135deg, #00ffff 0%, #0099cc 100%);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
  animation: marker-rotate 3s linear infinite;
}

@keyframes marker-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.spinner {
  width: 30px;
  height: 30px;
  border: 3px solid rgba(10, 25, 41, 0.3);
  border-top-color: #0a1929;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.progress-step.upcoming .marker-inner {
  background: linear-gradient(135deg, #444 0%, #333 100%);
  box-shadow: 0 0 15px rgba(102, 102, 102, 0.3);
}

.progress-step.upcoming .marker-inner svg {
  width: 35px;
  height: 35px;
  color: #ccc;
}

.marker-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0;
}

.marker-pulse.active-pulse {
  background: radial-gradient(
    circle,
    rgba(0, 255, 255, 0.4) 0%,
    transparent 70%
  );
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.step-content {
  flex: 1;
  background: linear-gradient(
    135deg,
    rgba(26, 35, 50, 0.8) 0%,
    rgba(10, 25, 41, 0.9) 100%
  );
  border: 2px solid rgba(0, 255, 255, 0.15);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.progress-step:hover .step-content {
  transform: translateX(10px);
  border-color: rgba(0, 255, 255, 0.4);
  box-shadow: 0 10px 40px rgba(0, 255, 255, 0.15);
}

.step-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.completed-badge {
  background: linear-gradient(
    135deg,
    rgba(0, 255, 136, 0.2) 0%,
    rgba(0, 204, 102, 0.2) 100%
  );
  color: #00ff88;
  border: 1px solid rgba(0, 255, 136, 0.3);
}

.active-badge {
  background: linear-gradient(
    135deg,
    rgba(0, 255, 255, 0.2) 0%,
    rgba(0, 153, 204, 0.2) 100%
  );
  color: #00ffff;
  border: 1px solid rgba(0, 255, 255, 0.3);
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
  }
}

.upcoming-badge {
  background: linear-gradient(
    135deg,
    rgba(102, 102, 102, 0.2) 0%,
    rgba(68, 68, 68, 0.2) 100%
  );
  color: #999;
  border: 1px solid rgba(102, 102, 102, 0.3);
}

.step-content h3 {
  color: #00ffff;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.step-content p {
  color: rgba(224, 224, 224, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* Visual Sneak Peek Background Section */
.sneak-peek {
  padding: 0;
  min-height: 60vh;
  position: relative;
  overflow: hidden;
}

.sneak-peek-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(10, 25, 41, 0.8), rgba(10, 25, 41, 0.8)),
    linear-gradient(135deg, #2a3442 0%, #1a2332 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sneak-peek-content {
  text-align: center;
  max-width: 800px;
  padding: 4rem 2rem;
}

.sneak-peek-content h2 {
  color: #00ffff;
  margin-bottom: 1rem;
}

.sneak-peek-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-contact {
  display: inline-block;
  background: linear-gradient(135deg, #00ffff 0%, #0099cc 100%);
  color: #0a1929;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 255, 255, 0.3);
}

/* Visual Sneak Peek Alternative */
.sneak-peek-alt {
  background: linear-gradient(135deg, #0a1929 0%, #1a2332 100%);
}

.sneak-peek-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.sneak-peek-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sneak-peek-image:hover .sneak-peek-img {
  transform: scale(1.05);
}

.sneak-peek-image .image-placeholder {
  aspect-ratio: 16/9;
}

.sneak-peek-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sneak-peek-image:hover .sneak-peek-overlay {
  opacity: 1;
}

.sneak-peek-overlay h3 {
  color: #00ffff;
  font-size: 2rem;
  text-align: center;
}

/* Updates & News */
.updates {
  background: linear-gradient(135deg, #1a2332 0%, #0a1929 100%);
}

.updates-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.update-item {
  background: rgba(26, 35, 50, 0.6);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(0, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.update-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 255, 255, 0.1);
  border-color: rgba(0, 255, 255, 0.4);
}

.update-item h3 {
  color: #00ffff;
  margin-bottom: 1rem;
}

.update-item.highlight {
  background: linear-gradient(
    135deg,
    rgba(0, 255, 255, 0.1) 0%,
    rgba(0, 200, 255, 0.1) 100%
  );
  border-color: #00ffff;
}

/* Blog & News */
.blog {
  background: linear-gradient(135deg, #0a1929 0%, #1a2332 100%);
}

.blog-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.blog-item {
  background: rgba(26, 35, 50, 0.6);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(0, 255, 255, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 255, 255, 0.1);
  border-color: rgba(0, 255, 255, 0.4);
}

.blog-item h3 {
  color: #00ffff;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.blog-item p {
  color: rgba(224, 224, 224, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.btn-blog-link {
  display: inline-block;
  background: linear-gradient(135deg, #00ffff 0%, #0099cc 100%);
  color: #0a1929;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.btn-blog-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3);
}

/* FAQ */
.faq {
  background: linear-gradient(135deg, #0a1929 0%, #1a2332 100%);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(26, 35, 50, 0.6);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(0, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 255, 255, 0.1);
  border-color: rgba(0, 255, 255, 0.4);
}

.faq-item h3 {
  color: #00ffff;
  margin-bottom: 1rem;
}

/* Contact */
.contact {
  background: linear-gradient(135deg, #1a2332 0%, #0a1929 100%);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-left h3 {
  color: #00ffff;
  margin-bottom: 1rem;
}

.contact-info {
  margin-top: 2rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item strong {
  color: #00ffff;
}

.contact-item a {
  color: #00cccc;
  text-decoration: none;
}

.contact-item a:hover {
  color: #00ffff;
}

.contact-form {
  background: rgba(26, 35, 50, 0.6);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #00ffff;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(10, 25, 41, 0.8);
  color: #e0e0e0;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00ffff;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.2rem;
}

.checkbox-group label {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-group a {
  color: #00ffff;
  text-decoration: none;
}

.btn-submit {
  background: linear-gradient(135deg, #00ffff 0%, #0099cc 100%);
  color: #0a1929;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 255, 255, 0.3);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0a1929 0%, #1a2332 100%);
  border-top: 1px solid rgba(0, 255, 255, 0.3);
  padding: 3rem 0 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-main h3 {
  color: #00ffff;
  margin: 0;
  font-size: 1.2rem;
  text-transform: lowercase;
}

.footer-divider {
  color: #00ffff;
  font-size: 1.5rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00ffff;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #00ffff;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 255, 255, 0.2);
  padding-top: 2rem;
}

.footer-bottom p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
  color: #999;
}

.ssl-notice {
  font-size: 0.8rem !important;
  color: #00ffff !important;
}

.developer-credit {
  font-size: 0.9rem !important;
  color: #00cccc !important;
  margin: 0.5rem 0 !important;
}

.developer-link {
  color: #00cccc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.developer-link:hover {
  color: #00ffff;
}

.developer-link strong {
  color: inherit;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-left {
    padding-right: 0;
  }

  .overview-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .nav {
    width: 100%;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 1rem;
  }

  .footer-main,
  .footer-nav {
    flex-direction: column;
    gap: 1rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .feature-card-span-2 {
    grid-column: span 2;
  }
  
  .feature-card-inner {
    padding: 2rem;
  }
  
  .feature-image-card {
    min-height: 250px;
  }
  
  .feature-image-overlay {
    padding: 2rem;
  }

  .progress-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding-left: 0;
  }

  .timeline-line {
    left: 50%;
    transform: translateX(-50%);
  }

  .step-connector {
    left: 50%;
    transform: translateX(-50%);
  }

  .step-content {
    width: 100%;
  }

  .blog-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .feature-card-inner {
    padding: 1.5rem;
  }
  
  .feature-image-card {
    min-height: 200px;
  }
  
  .feature-image-overlay {
    padding: 1.5rem;
  }
  
  .feature-image-overlay h3 {
    font-size: 1.3rem;
  }
  
  .feature-image-overlay p {
    font-size: 0.9rem;
  }
  
  .feature-icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .feature-icon {
    font-size: 2.5rem;
  }

  .step-marker {
    width: 60px;
    height: 60px;
  }

  .step-content {
    padding: 1.5rem;
  }

  .age-modal-content {
    padding: 2rem;
    margin: 1rem;
  }

  .age-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Legal Pages Styles */
.legal-page {
  background: linear-gradient(135deg, #0a1929 0%, #1a2332 100%);
  min-height: 100vh;
  padding: 2rem 0;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.legal-container h1 {
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #00ffff 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-container .last-updated {
  text-align: center;
  color: #00cccc;
  font-size: 0.9rem;
  margin-bottom: 3rem;
}

.legal-container section {
  margin-bottom: 3rem;
  padding: 2rem;
  background: rgba(26, 35, 50, 0.6);
  border-radius: 15px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.legal-container h2 {
  color: #00ffff;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.legal-container h3 {
  color: #00cccc;
  margin: 1.5rem 0 1rem 0;
  font-size: 1.3rem;
}

.legal-container p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.legal-container ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.legal-container li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.legal-container a {
  color: #00ffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-container a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #00ffff;
  text-decoration: none;
  margin-bottom: 3rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.back-link:hover {
  color: #ffffff;
  transform: translateX(-5px);
}

/* Utility Classes */
.hidden {
  display: none !important;
}

.show {
  display: flex !important;
}

.loading-lazy {
  loading: lazy;
}
