/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* Color Scheme: Red, Charcoal Gray, Light Beige */
:root {
  --primary-red: #ff3333;
  --neon-red: #ff0066;
  --neon-pink: #ff00ff;
  --charcoal-gray: #2c2c2c;
  --dark-charcoal: #1a1a1a;
  --light-beige: #f5f5dc;
  --accent-cyan: #00ffff;
  --accent-purple: #9933ff;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(
    135deg,
    var(--dark-charcoal) 0%,
    var(--charcoal-gray) 100%
  );
  border-bottom: 2px solid var(--neon-red);
  backdrop-filter: blur(10px);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  background: linear-gradient(45deg, var(--neon-red), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: none;
}

/* Burger Menu */
.burger-checkbox {
  display: none;
}

.burger-label {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 25px;
  z-index: 1001;
}

.burger-label span {
  width: 30px;
  height: 3px;
  background: linear-gradient(45deg, var(--neon-red), var(--accent-cyan));
  margin: 3px 0;
  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,
    var(--dark-charcoal) 0%,
    var(--charcoal-gray) 100%
  );
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
  border-left: 2px solid var(--neon-red);
  box-shadow: -5px 0 20px rgba(255, 0, 102, 0.3);
}

.burger-checkbox:checked ~ .nav {
  transform: translateX(0);
}

.nav a {
  color: var(--light-beige);
  text-decoration: none;
  padding: 15px 0;
  font-size: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.nav a:hover {
  color: var(--neon-red);
  padding-left: 10px;
  text-shadow: 0 0 10px var(--neon-red);
}

.nav-play-link {
  background: linear-gradient(45deg, var(--neon-red), var(--accent-cyan));
  color: white !important;
  padding: 15px 20px !important;
  border-radius: 8px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.nav-play-link:hover {
  background: linear-gradient(45deg, var(--accent-cyan), var(--neon-red));
  padding-left: 20px !important;
  transform: scale(1.05);
}

body.menu-open {
  overflow: hidden;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    var(--neon-red) 0%,
    var(--accent-purple) 50%,
    var(--accent-cyan) 100%
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    var(--neon-red) 0%,
    var(--accent-purple) 50%,
    var(--accent-cyan) 100%
  );
  opacity: 0.4;
  z-index: 1;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(44, 44, 44, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  margin-bottom: 20px;
  background: linear-gradient(45deg, var(--neon-red), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 0, 102, 0.5);
}

.hero-subtitle {
  font-size: 24px;
  color: var(--light-beige);
  text-transform: uppercase;
  letter-spacing: 3px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Sections */
.section {
  padding: 80px 0;
}

.section h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 40px;
  text-align: center;
  background: linear-gradient(45deg, var(--neon-red), var(--accent-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: 40px;
  align-items: center;
}

.overview-text p {
  margin-bottom: 20px;
  color: var(--light-beige);
  line-height: 1.8;
}

.overview-text strong {
  color: var(--neon-red);
}

.placeholder-16-9 {
  background: linear-gradient(
    135deg,
    var(--charcoal-gray),
    var(--dark-charcoal)
  );
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--neon-red);
  border-radius: 10px;
  font-size: 18px;
  color: var(--light-beige);
  box-shadow: 0 10px 30px rgba(255, 0, 102, 0.3);
  overflow: hidden;
  position: relative;
}

.placeholder-16-9 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.placeholder-16-9 span {
  position: absolute;
  z-index: 1;
}

.placeholder-16-9:has(img) span {
  display: none;
}

/* Features Section */
.features {
  background: linear-gradient(
    135deg,
    var(--dark-charcoal) 0%,
    var(--charcoal-gray) 100%
  );
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
  background: linear-gradient(
    135deg,
    rgba(255, 0, 102, 0.1),
    rgba(0, 255, 255, 0.1)
  );
  border: 1px solid var(--neon-red);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 0, 102, 0.4);
  border-color: var(--accent-cyan);
}

.feature-icon {
  font-size: 48px;
  min-width: 60px;
  text-align: center;
}

.feature-content h3 {
  color: var(--neon-red);
  margin-bottom: 10px;
  font-size: 24px;
}

.feature-content p {
  color: var(--light-beige);
  font-size: 16px;
}

/* Progress Section */
.progress-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.progress-item {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
}

.progress-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--charcoal-gray);
  border: 3px solid var(--charcoal-gray);
  position: relative;
  z-index: 2;
}

.progress-item.completed .progress-dot {
  background: var(--neon-red);
  border-color: var(--neon-red);
  box-shadow: 0 0 20px var(--neon-red);
}

.progress-item.active .progress-dot {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px var(--accent-cyan);
  animation: pulse-dot 2s infinite;
}

.progress-item.upcoming .progress-dot {
  background: transparent;
  border-color: var(--accent-purple);
}

@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.progress-content h3 {
  color: var(--neon-red);
  margin-bottom: 5px;
}

.progress-content p {
  color: var(--light-beige);
}

/* Sneak Peek Background Section */
.sneak-peek-bg {
  background: linear-gradient(
    135deg,
    var(--neon-red) 0%,
    var(--accent-purple) 100%
  );
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.sneak-peek-overlay {
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(44, 44, 44, 0.8));
  padding: 100px 0;
}

.sneak-peek-bg h2 {
  color: white;
  margin-bottom: 20px;
}

.sneak-peek-bg p {
  color: var(--light-beige);
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.placeholder-full {
  background: linear-gradient(
    135deg,
    var(--charcoal-gray),
    var(--dark-charcoal)
  );
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--neon-red);
  border-radius: 15px;
  font-size: 24px;
  color: var(--light-beige);
  box-shadow: 0 20px 50px rgba(255, 0, 102, 0.3);
}

/* Sneak Peek Gallery */
.sneak-peek-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid var(--neon-red);
  box-shadow: 0 10px 30px rgba(255, 0, 102, 0.3);
  transition: all 0.3s ease;
  aspect-ratio: 16/9;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 0, 102, 0.5);
  border-color: var(--accent-cyan);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Updates Section */
.updates {
  background: linear-gradient(
    135deg,
    var(--charcoal-gray) 0%,
    var(--dark-charcoal) 100%
  );
}

.updates-content p {
  margin-bottom: 20px;
  color: var(--light-beige);
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.updates-content strong {
  color: var(--neon-red);
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 30px;
  padding: 25px;
  background: linear-gradient(
    135deg,
    rgba(255, 0, 102, 0.1),
    rgba(0, 255, 255, 0.1)
  );
  border: 1px solid var(--neon-red);
  border-radius: 15px;
}

.faq-item h3 {
  color: var(--neon-red);
  margin-bottom: 15px;
  font-size: 20px;
}

.faq-item p {
  color: var(--light-beige);
  line-height: 1.7;
}

.faq-item strong {
  color: var(--neon-red);
}

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h3 {
  color: var(--neon-red);
  margin-bottom: 20px;
}

.contact-details {
  margin-top: 30px;
}

.contact-item {
  margin-bottom: 25px;
  color: var(--light-beige);
  line-height: 1.6;
}

.contact-item strong {
  color: var(--neon-red);
}

/* Form Styles */
.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--light-beige);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--charcoal-gray);
  border-radius: 8px;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--neon-red);
  box-shadow: 0 0 15px rgba(255, 0, 102, 0.3);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 5px;
}

.checkbox-group label {
  margin-bottom: 0;
  line-height: 1.4;
}

.checkbox-group a {
  color: var(--neon-red);
  text-decoration: none;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(45deg, var(--neon-red), var(--accent-cyan));
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 0, 102, 0.4);
}

/* Section Navigation Buttons */
.section-nav {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
}

.btn-next-section {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(45deg, var(--neon-red), var(--accent-cyan));
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 20px rgba(255, 0, 102, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-next-section::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid white;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  transition: all 0.3s ease;
}

.btn-next-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 0, 102, 0.5);
  padding-right: 50px;
}

.btn-next-section:hover::before {
  right: 15px;
}

.hero-content .btn-next-section {
  z-index: 3;
  position: relative;
}

.hero-warning {
  color: var(--neon-red);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: bold;
  margin: 20px 0;
  text-align: center;
  text-shadow: 0 0 10px rgba(255, 51, 51, 0.5);
  padding: 15px;
  background: rgba(255, 51, 51, 0.15);
  border: 2px solid var(--neon-red);
  border-radius: 8px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
  width: 100%;
}

.hero-buttons .btn-play-now,
.hero-buttons .btn-next-section {
  flex: 0 0 auto;
  margin: 0;
}

.btn-play-now {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(45deg, var(--neon-red), var(--accent-cyan));
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 20px rgba(255, 0, 102, 0.3);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-play-now:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 0, 102, 0.5);
}

.warning-text {
  color: var(--neon-red);
  font-weight: bold;
  padding: 15px;
  background: rgba(255, 51, 51, 0.15);
  border-left: 4px solid var(--neon-red);
  border-radius: 5px;
  margin: 20px 0;
}

.warning-text strong {
  color: var(--neon-red);
}

/* Age Modal */
.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(10px);
}

.age-modal.hidden {
  display: none;
}

.age-modal-content {
  background: linear-gradient(
    135deg,
    var(--charcoal-gray),
    var(--dark-charcoal)
  );
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  border: 2px solid var(--neon-red);
  box-shadow: 0 20px 50px rgba(255, 0, 102, 0.3);
  max-width: 400px;
  margin: 20px;
}

.age-modal h2 {
  color: var(--neon-red);
  margin-bottom: 20px;
}

.age-modal p {
  color: var(--light-beige);
  margin-bottom: 30px;
  font-size: 18px;
}

.age-warning {
  background: rgba(255, 51, 51, 0.2);
  border: 2px solid var(--neon-red);
  border-radius: 8px;
  padding: 15px;
  margin: 20px 0;
  color: var(--light-beige);
  font-size: 14px;
  line-height: 1.6;
}

.age-warning strong {
  color: var(--neon-red);
}

.age-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-yes,
.btn-no {
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-yes {
  background: linear-gradient(45deg, var(--neon-red), var(--accent-cyan));
  color: white;
}

.btn-no {
  background: var(--charcoal-gray);
  color: var(--light-beige);
  border: 2px solid var(--neon-red);
}

.btn-yes:hover,
.btn-no:hover {
  transform: translateY(-2px);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    135deg,
    var(--dark-charcoal),
    var(--charcoal-gray)
  );
  padding: 20px;
  border-top: 2px solid var(--neon-red);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -5px 20px rgba(255, 0, 102, 0.3);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  color: var(--light-beige);
  margin: 0;
  flex: 1;
}

.cookie-banner a {
  color: var(--neon-red);
  text-decoration: none;
}

.cookie-banner a:hover {
  text-decoration: underline;
}

.cookie-btn {
  background: linear-gradient(45deg, var(--neon-red), var(--accent-cyan));
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  margin-left: 20px;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 0, 102, 0.4);
}

/* Footer */
.footer {
  background: linear-gradient(
    135deg,
    var(--dark-charcoal) 0%,
    var(--charcoal-gray) 100%
  );
  padding: 40px 0 20px;
  border-top: 2px solid var(--neon-red);
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.footer-nav,
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a,
.footer-links a {
  color: var(--light-beige);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-links a:hover {
  color: var(--neon-red);
}

.footer-info p {
  color: var(--light-beige);
  margin: 5px 0;
  font-size: 14px;
}

/* Legal Pages */
.legal-page {
  background: linear-gradient(
    135deg,
    var(--dark-charcoal) 0%,
    var(--charcoal-gray) 100%
  );
  min-height: 100vh;
  padding: 100px 0 60px;
  color: var(--light-beige);
}

.legal-page h1 {
  color: var(--neon-red);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 0 0 20px rgba(255, 0, 102, 0.5);
}

.back-link {
  text-align: center;
  margin-bottom: 40px;
}

.back-link a {
  color: var(--accent-cyan);
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

.back-link a:hover {
  color: var(--neon-red);
  text-shadow: 0 0 10px var(--neon-red);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background: linear-gradient(
    135deg,
    rgba(255, 0, 102, 0.1),
    rgba(0, 255, 255, 0.1)
  );
  border: 1px solid var(--neon-red);
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(255, 0, 102, 0.2);
}

.legal-content h2 {
  color: var(--neon-red);
  margin: 30px 0 20px 0;
  font-size: 24px;
  border-bottom: 2px solid var(--neon-red);
  padding-bottom: 10px;
}

.legal-content h3 {
  color: var(--accent-cyan);
  margin: 25px 0 15px 0;
  font-size: 20px;
}

.legal-content p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: var(--light-beige);
}

.legal-content ul {
  margin: 20px 0;
  padding-left: 30px;
}

.legal-content li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: var(--light-beige);
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.legal-content th,
.legal-content td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 0, 102, 0.3);
}

.legal-content th {
  background: linear-gradient(45deg, var(--neon-red), var(--accent-purple));
  color: white;
  font-weight: bold;
}

.legal-content a {
  color: var(--neon-red);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
  color: var(--accent-cyan);
}

.effective-date {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 2px solid var(--neon-red);
  color: var(--accent-cyan);
  font-weight: bold;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .overview-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .nav {
    width: 250px;
    padding: 70px 20px 20px;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .sneak-peek-gallery {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-nav {
    margin-top: 30px;
    padding-top: 20px;
  }

  .btn-next-section {
    padding: 12px 30px;
    font-size: 14px;
  }

  .cookie-btn {
    margin-left: 0;
    width: 100%;
    max-width: 200px;
  }

  .age-modal-content {
    padding: 30px 20px;
    margin: 10px;
  }

  .age-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn-yes,
  .btn-no {
    width: 100%;
  }

  .legal-content {
    padding: 20px;
    margin: 0 10px;
  }

  .legal-page {
    padding: 80px 0 40px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-play-now {
    padding: 12px 30px;
    font-size: 14px;
    white-space: nowrap;
  }

  .hero-warning {
    font-size: 0.9rem;
    padding: 12px;
    margin: 15px 10px;
  }

  .nav-play-link {
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .section {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .feature-icon {
    font-size: 36px;
  }

  .feature-content h3 {
    font-size: 20px;
  }

  .section-nav {
    margin-top: 25px;
    padding-top: 15px;
  }

  .btn-next-section {
    padding: 10px 25px;
    font-size: 13px;
    width: 90%;
    max-width: 250px;
  }

  .btn-next-section::before {
    right: 15px;
  }

  .btn-next-section:hover {
    padding-right: 40px;
  }
}
