/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Rajdhani", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: #0a0a0f;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(0, 255, 136, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(0, 204, 255, 0.05) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 255, 136, 0.03) 2px,
    rgba(0, 255, 136, 0.03) 4px
  );
  pointer-events: none;
  z-index: 0;
}

.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(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(5px);
}

.age-modal.hidden {
  display: none;
}

.age-modal-content {
  background: linear-gradient(135deg, #1a3a52 0%, #2d5a7b 100%);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 2px solid #00ff88;
  max-width: 400px;
  width: 90%;
}

.age-modal-content h2 {
  color: #00ff88;
  margin-bottom: 20px;
  font-size: 2rem;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.age-modal-content p {
  margin-bottom: 30px;
  font-size: 1.2rem;
  color: #ffffff;
}

.age-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-yes,
.btn-no {
  padding: 12px 30px;
  border: 2px solid transparent;
  border-radius: 0;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(
    0 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% 100%,
    10px 100%,
    0 calc(100% - 10px)
  );
}

.btn-yes {
  background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
  color: #0a1929;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.5),
    inset 0 0 10px rgba(0, 255, 136, 0.2);
}

.btn-yes:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.8),
    inset 0 0 15px rgba(0, 255, 136, 0.3);
}

.btn-no {
  background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(255, 68, 68, 0.4);
}

.btn-no:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 68, 68, 0.6);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a3a52 0%, #2d5a7b 100%);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  z-index: 9999;
  border-top: 2px solid #00ff88;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 300px;
}

.cookie-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-accept {
  background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
  color: #0a1929;
  border: 2px solid transparent;
  padding: 10px 25px;
  border-radius: 0;
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.5),
    inset 0 0 10px rgba(0, 255, 136, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(
    0 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% 100%,
    10px 100%,
    0 calc(100% - 10px)
  );
}

.btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.8),
    inset 0 0 15px rgba(0, 255, 136, 0.3);
}

.cookie-banner a {
  color: #00ff88;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.cookie-banner a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(15px);
  z-index: 1000;
  border-bottom: 2px solid rgba(0, 255, 136, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 255, 136, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo {
  font-family: "Orbitron", sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #00ff88;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.8), 0 0 20px rgba(0, 255, 136, 0.5),
    0 0 30px rgba(0, 255, 136, 0.3);
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
  animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  0% {
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.8),
      0 0 20px rgba(0, 255, 136, 0.5), 0 0 30px rgba(0, 255, 136, 0.3);
  }
  100% {
    text-shadow: 0 0 15px rgba(0, 255, 136, 1), 0 0 25px rgba(0, 255, 136, 0.7),
      0 0 35px rgba(0, 255, 136, 0.5);
  }
}

/* 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: #00ff88;
  margin-bottom: 6px;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
}

.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, #1a3a52 0%, #2d5a7b 100%);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 80px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  border-left: 2px solid rgba(0, 255, 136, 0.3);
}

.burger-checkbox:checked ~ .nav {
  transform: translateX(0);
}

.nav a {
  color: #ffffff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid transparent;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav a::before {
  content: "▶";
  position: absolute;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease;
  color: #00ff88;
}

.nav a:hover {
  background: rgba(0, 255, 136, 0.15);
  border-color: rgba(0, 255, 136, 0.6);
  transform: translateX(10px);
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
  padding-left: 30px;
}

.nav a:hover::before {
  opacity: 1;
  left: 10px;
}

/* Body scroll lock when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0f;
  background-image: radial-gradient(
      circle at 30% 40%,
      rgba(0, 255, 136, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(0, 204, 255, 0.08) 0%,
      transparent 60%
    ),
    linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
      90deg,
      transparent,
      transparent 98px,
      rgba(0, 255, 136, 0.03) 100px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 98px,
      rgba(0, 255, 136, 0.03) 100px
    );
  pointer-events: none;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(0, 255, 136, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 136, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(255, 0, 136, 0.1) 0%,
      transparent 50%
    );
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
  }
  66% {
    transform: translateY(-10px) rotate(240deg);
  }
}

.hero-content {
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  padding: 100px 20px 60px;
  margin: 0 auto;
  position: relative;
}

.hero-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-text-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.game-interface-mockup {
  background: rgba(10, 10, 20, 0.8);
  border: 3px solid #00ff88;
  border-radius: 0;
  padding: 40px;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.4), 0 0 40px rgba(0, 255, 136, 0.2),
    inset 0 0 20px rgba(0, 255, 136, 0.1);
  position: relative;
  overflow: hidden;
  clip-path: polygon(
    0 0,
    calc(100% - 20px) 0,
    100% 20px,
    100% 100%,
    20px 100%,
    0 calc(100% - 20px)
  );
}

.game-interface-mockup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 255, 136, 0.1) 0%,
    transparent 50%,
    rgba(0, 204, 255, 0.1) 100%
  );
  pointer-events: none;
}

.game-interface-mockup::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(0, 255, 136, 0.1),
    transparent
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.status,
.update {
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.status {
  color: #00ff88;
  border: 1px solid rgba(0, 255, 136, 0.5);
}

.update {
  color: #00ccff;
  border: 1px solid rgba(0, 204, 255, 0.5);
}

.mockup-content {
  position: relative;
  z-index: 1;
}

.mockup-content h1 {
  font-family: "Orbitron", sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #00ff88 0%, #00ccff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 255, 136, 0.8);
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
  animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
}

.mockup-content p {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-description {
  background: rgba(0, 0, 0, 0.3);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(0, 255, 136, 0.3);
  backdrop-filter: blur(10px);
}

.hero-description p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.hero-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 255, 136, 0.3);
  border: 2px solid rgba(0, 255, 136, 0.4);
  position: relative;
  transition: transform 0.3s ease;
}

.hero-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 255, 136, 0.1) 0%,
    transparent 50%,
    rgba(0, 204, 255, 0.1) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 255, 136, 0.4);
}

.hero-scene-img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 0;
}

/* Sections */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  background: linear-gradient(135deg, #00ff88 0%, #00ccff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
  text-transform: uppercase;
  letter-spacing: 4px;
  position: relative;
  padding-bottom: 20px;
}

.section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00ff88, transparent);
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
}

/* Overview Section */
.overview {
  background: #0a0a0f;
  background-image: radial-gradient(
      circle at 50% 50%,
      rgba(0, 255, 136, 0.05) 0%,
      transparent 70%
    ),
    linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
  position: relative;
}

.overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.overview-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.overview-text strong {
  color: #00ff88;
}

.overview-img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(0, 255, 136, 0.3);
  transition: transform 0.3s ease;
}

.overview-img:hover {
  transform: scale(1.02);
}

.image-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 255, 136, 0.1),
    transparent
  );
  animation: placeholderShimmer 2s infinite;
}

@keyframes placeholderShimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Features Section */
.features {
  background: #0a0a0f;
  background-image: radial-gradient(
      circle at 50% 50%,
      rgba(0, 204, 255, 0.05) 0%,
      transparent 70%
    ),
    linear-gradient(135deg, #1a1a2e 0%, #0a0a0f 100%);
  position: relative;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  background: rgba(10, 10, 20, 0.6);
  padding: 30px;
  border-radius: 0;
  border: 2px solid rgba(0, 255, 136, 0.3);
  transition: all 0.3s ease;
  flex-wrap: wrap;
  position: relative;
  clip-path: polygon(
    0 0,
    calc(100% - 15px) 0,
    100% 15px,
    100% 100%,
    15px 100%,
    0 calc(100% - 15px)
  );
}

.feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 255, 136, 0.05) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 255, 136, 0.4);
  border-color: rgba(0, 255, 136, 0.8);
}

.feature-item:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 3rem;
  min-width: 80px;
  text-align: center;
}

.feature-content h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #00ff88;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.feature-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.feature-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 136, 0.3);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.feature-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 255, 136, 0.4);
}

/* Progress Section */
.progress {
  background: #0a0a0f;
  background-image: radial-gradient(
      circle at 50% 50%,
      rgba(0, 255, 136, 0.05) 0%,
      transparent 70%
    ),
    linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
  position: relative;
}

.progress-image {
  margin-bottom: 40px;
  text-align: center;
}

.progress-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(0, 255, 136, 0.3);
  transition: transform 0.3s ease;
}

.progress-img:hover {
  transform: scale(1.02);
}

.roadmap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 600px;
  margin: 0 auto;
}

.roadmap-item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 25px;
  border-radius: 0;
  background: rgba(10, 10, 20, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  clip-path: polygon(
    0 0,
    calc(100% - 15px) 0,
    100% 15px,
    100% 100%,
    15px 100%,
    0 calc(100% - 15px)
  );
}

.roadmap-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #00ff88, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.roadmap-item:hover {
  transform: translateX(10px);
  border-color: rgba(0, 255, 136, 0.6);
  box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
}

.roadmap-item:hover::before {
  opacity: 1;
}

.roadmap-item.completed .roadmap-marker {
  background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
  color: #0a1929;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.roadmap-item.active .roadmap-marker {
  background: linear-gradient(135deg, #00ccff 0%, #0099cc 100%);
  color: #0a1929;
  box-shadow: 0 0 20px rgba(0, 204, 255, 0.5);
  animation: pulse 2s infinite;
}

.roadmap-item.upcoming .roadmap-marker {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.roadmap-marker {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  min-width: 60px;
}

.roadmap-content h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #00ff88;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.roadmap-content p {
  color: rgba(255, 255, 255, 0.8);
}

/* Sneak Peek Section */
.sneak-peek {
  background: #0a0a0f;
  background-image: radial-gradient(
      circle at 50% 50%,
      rgba(0, 204, 255, 0.05) 0%,
      transparent 70%
    ),
    linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  text-align: center;
  padding: 120px 0;
  position: relative;
}

.sneak-peek-content h2 {
  margin-bottom: 40px;
}

.sneak-peek-image {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(0, 255, 136, 0.3);
}

.sneak-peek-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.sneak-peek-img:hover {
  transform: scale(1.05);
}

.sneak-peek-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 255, 136, 0.1),
    transparent
  );
  animation: placeholderShimmer 3s infinite;
}

/* Updates Section */
.updates {
  background: linear-gradient(135deg, #0a1929 0%, #1a3a52 100%);
  position: relative;
}

.updates-with-bg {
  position: relative;
  overflow: hidden;
}

.updates-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/Atmospheric Background Scene.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: 0;
}

.updates-with-bg .container {
  position: relative;
  z-index: 1;
}

.updates-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.update-item {
  background: rgba(10, 10, 20, 0.6);
  padding: 30px;
  border-radius: 0;
  border: 2px solid rgba(0, 255, 136, 0.3);
  transition: all 0.3s ease;
  position: relative;
  clip-path: polygon(
    0 0,
    calc(100% - 15px) 0,
    100% 15px,
    100% 100%,
    15px 100%,
    0 calc(100% - 15px)
  );
}

.update-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #00ff88, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.update-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 255, 136, 0.3);
  border-color: rgba(0, 255, 136, 0.6);
}

.update-item:hover::before {
  opacity: 1;
}

.update-item h3 {
  font-family: "Orbitron", sans-serif;
  color: #00ff88;
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.update-item p {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.update-item strong {
  color: #00ccff;
}

/* FAQ Section */
.faq {
  background: #0a0a0f;
  background-image: radial-gradient(
      circle at 50% 50%,
      rgba(0, 255, 136, 0.05) 0%,
      transparent 70%
    ),
    linear-gradient(135deg, #1a1a2e 0%, #0a0a0f 100%);
  position: relative;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(10, 10, 20, 0.6);
  padding: 30px;
  border-radius: 0;
  border: 2px solid rgba(0, 255, 136, 0.2);
  transition: all 0.3s ease;
  position: relative;
  clip-path: polygon(
    0 0,
    calc(100% - 15px) 0,
    100% 15px,
    100% 100%,
    15px 100%,
    0 calc(100% - 15px)
  );
}

.faq-item:hover {
  border-color: rgba(0, 255, 136, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 255, 136, 0.2);
}

.faq-item h3 {
  font-family: "Orbitron", sans-serif;
  color: #00ff88;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq-item p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

/* Contact Section */
.contact {
  background: #0a0a0f;
  background-image: radial-gradient(
      circle at 50% 50%,
      rgba(0, 204, 255, 0.05) 0%,
      transparent 70%
    ),
    linear-gradient(135deg, #0a0a0f 0%, #16213e 100%);
  text-align: center;
  position: relative;
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
}

.contact-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.contact-content strong {
  color: #00ff88;
  font-size: 1.2rem;
}

/* Footer */
.footer {
  background: rgba(10, 10, 15, 0.95);
  padding: 60px 0 30px;
  border-top: 3px solid rgba(0, 255, 136, 0.4);
  text-align: center;
  position: relative;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00ff88, transparent);
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  color: #00ff88;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.footer-divider {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #00ff88;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.footer-navigation {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-navigation a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer-navigation a:hover {
  color: #00ff88;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-ssl {
  margin-top: 20px;
  color: rgba(0, 255, 136, 0.8);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
}

/* Legal Pages Styles */
.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 20px 60px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.legal-container h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #00ff88 0%, #00ccff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.legal-container h2 {
  font-size: 1.8rem;
  margin: 40px 0 20px;
  color: #00ff88;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.legal-container h3 {
  font-size: 1.3rem;
  margin: 30px 0 15px;
  color: #00ccff;
}

.legal-container p {
  margin-bottom: 20px;
  font-size: 1rem;
}

.legal-container ul {
  margin: 20px 0;
  padding-left: 30px;
}

.legal-container li {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.legal-container strong {
  color: #00ff88;
}

.legal-container a {
  color: #00ccff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.legal-container a:hover {
  color: #00ff88;
  text-decoration: underline;
}

.back-link {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 255, 136, 0.3);
}

.back-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #00ff88;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.back-link a:hover {
  transform: translateX(-5px);
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    width: 100%;
  }

  .mockup-content h1 {
    font-size: 2.5rem;
  }

  .overview-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .feature-img {
    max-width: 100%;
    margin: 20px auto 0;
  }

  .hero-main {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .hero-text-block {
    order: 1;
  }

  .hero-image {
    order: 2;
  }

  .game-interface-mockup {
    margin-bottom: 0;
  }

  .progress-img {
    max-width: 100%;
  }

  .sneak-peek-image {
    margin: 0 15px;
  }

  .roadmap {
    gap: 25px;
  }

  .roadmap-item {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-content,
  .footer-navigation {
    flex-direction: column;
    gap: 15px;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }

  .age-modal-content {
    padding: 30px 20px;
  }

  .age-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .section {
    padding: 60px 0;
  }

  .section h2 {
    font-size: 2rem;
  }

  .mockup-content h1 {
    font-size: 2rem;
  }

  .mockup-header {
    flex-direction: column;
    gap: 10px;
  }
}
