/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --dark-bg: #0a0a0a;
  --dark-secondary: #1a1a1a;
  --dark-tertiary: #2a2a2a;
  --purple-gradient: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  --purple-light: #8b5cf6;
  --pink: #ec4899;
  --blue: #3b82f6;
  --white: #ffffff;
  --text-light: #e5e7eb;
  --text-gray: #9ca3af;
  --border-radius: 20px;
  --shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
  --shadow-hover: 0 15px 50px rgba(139, 92, 246, 0.5);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-light);
  background-color: var(--dark-bg);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Age Verification Popup */
.age-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.age-popup.active {
  display: flex;
}

.age-popup-content {
  background: var(--dark-secondary);
  padding: 50px;
  border-radius: var(--border-radius);
  text-align: center;
  max-width: 500px;
  border: 2px solid var(--purple-light);
  box-shadow: var(--shadow);
  animation: popupSlide 0.3s ease-out;
}

@keyframes popupSlide {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.age-popup-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.age-popup-content h2 {
  background: var(--purple-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  font-size: 28px;
  font-weight: 800;
}

.age-popup-content p {
  margin-bottom: 25px;
  font-size: 18px;
  color: var(--text-light);
}

.age-popup-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 20px;
}

.btn-age {
  padding: 15px 35px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-yes {
  background: var(--purple-gradient);
  color: var(--white);
}

.btn-yes:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-no {
  background: var(--dark-tertiary);
  color: var(--text-light);
  border: 2px solid var(--purple-light);
}

.btn-no:hover {
  background: var(--dark-tertiary);
  border-color: var(--pink);
}

.age-warning {
  font-size: 14px;
  color: var(--text-gray);
  margin-top: 15px;
}

/* Cookie Banner */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--dark-secondary);
  color: var(--white);
  padding: 25px;
  z-index: 9999;
  border-top: 2px solid var(--purple-light);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.cookie-banner.active {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-content p {
  flex: 1;
  margin: 0;
  font-size: 14px;
}

.cookie-content a {
  color: var(--purple-light);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.btn-cookie {
  padding: 12px 25px;
  border: 2px solid var(--purple-light);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-accept {
  background: var(--purple-gradient);
  color: var(--white);
  border: none;
}

.btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-reject {
  background: transparent;
  color: var(--text-light);
}

.btn-reject:hover {
  background: var(--dark-tertiary);
  border-color: var(--pink);
}

/* Navigation */
.navbar {
  background: var(--dark-secondary);
  padding: 20px 0;
  border-bottom: 2px solid var(--purple-light);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}

.nav-menu a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 16px;
}

.nav-menu a:hover {
  color: var(--purple-light);
}

/* Burger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(139, 92, 246, 0.2) 0%,
    transparent 50%
  );
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-character {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-character img {
  width: 350px;
  height: 350px;
  object-fit: contain;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 10px 30px rgba(139, 92, 246, 0.4));
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

.hero-text {
  flex: 1;
}

.hero-brand {
  background: var(--purple-gradient);
  padding: 40px;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
  text-align: center;
  box-shadow: var(--shadow);
}

.brand-name {
  font-size: 56px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 3px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 35px;
  color: var(--text-light);
}

/* Buttons */
.btn-primary {
  background: var(--purple-gradient);
  color: var(--white);
  padding: 18px 45px;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: var(--dark-tertiary);
  color: var(--text-light);
  padding: 18px 45px;
  border: 2px solid var(--purple-light);
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--purple-gradient);
  border-color: transparent;
  transform: translateY(-3px);
}

/* Sections */
section {
  padding: 100px 20px;
  position: relative;
  overflow-x: hidden;
}

.section-title {
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
}

.section-title.centered {
  text-align: center;
}

.section-subtitle {
  text-align: center;
  font-size: 20px;
  color: var(--text-gray);
  margin-bottom: 50px;
}

.section-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 25px;
}

.section-content {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.text-content {
  flex: 1;
  min-width: 0;
}

.illustration {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.illustration img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

/* About Section */
.about-section {
  background: var(--dark-secondary);
  position: relative;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 70% 50%,
    rgba(236, 72, 153, 0.1) 0%,
    transparent 50%
  );
}

.feature-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.feature-box {
  background: var(--dark-tertiary);
  border: 2px solid var(--purple-light);
  padding: 30px;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.feature-box:hover {
  border-color: var(--pink);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.feature-box h3 {
  color: var(--purple-light);
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
}

.feature-box p {
  color: var(--text-light);
  line-height: 1.8;
}

/* Games Section */
.games-section {
  background: var(--dark-bg);
}

.game-preview-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: 40px;
  margin: 50px 0;
}

.game-card {
  background: var(--dark-secondary);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 2px solid var(--purple-light);
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--pink);
}

.game-card-image {
  width: 100%;
  height: 300px;
  background: var(--dark-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.game-card-image img {
  /* width: 100%; */
  height: 100%;
  object-fit: cover;
}

.game-card-content {
  padding: 30px;
}

.game-card-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.game-card-description {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 25px;
}

.game-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 50px 0;
}

.game-feature {
  background: var(--dark-secondary);
  border: 2px solid var(--purple-light);
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: center;
}

.game-feature h3 {
  color: var(--purple-light);
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 700;
}

.game-feature p {
  color: var(--text-light);
  line-height: 1.8;
}

/* Who We Are Section */
.who-section {
  background: var(--dark-secondary);
  position: relative;
}

.who-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(139, 92, 246, 0.15) 0%,
    transparent 50%
  );
}

.developer-info,
.disclaimer-box {
  background: var(--dark-tertiary);
  border: 2px solid var(--purple-light);
  padding: 30px;
  border-radius: var(--border-radius);
  margin-top: 30px;
}

.developer-info h3,
.disclaimer-box h3 {
  color: var(--purple-light);
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
}

.disclaimer-box {
  border-color: var(--pink);
  background: rgba(236, 72, 153, 0.1);
}

.disclaimer-box h3 {
  color: var(--pink);
}

/* Footer */
.footer {
  background: var(--dark-bg);
  margin-top: 0;
  border-top: 2px solid var(--purple-light);
}

.footer-disclaimer {
  background: var(--dark-secondary);
  padding: 50px 20px;
  text-align: center;
}

.age-restriction {
  font-size: 72px;
  font-weight: 900;
  background: var(--purple-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
}

.footer-disclaimer-text {
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 40px;
}

.responsible-gaming {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.responsible-logo {
  display: inline-block;
  padding: 20px;
  background: var(--dark-tertiary);
  border-radius: 12px;
  border: 2px solid var(--purple-light);
  transition: all 0.3s ease;
  text-align: center;
}

.responsible-logo:hover {
  border-color: var(--pink);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.responsible-logo img {
  display: block;
  max-width: 100%;
  height: auto;
}

.footer-nav {
  background: var(--dark-secondary);
  padding: 30px 0;
  border-top: 2px solid var(--purple-light);
}

.footer-nav .nav-menu {
  justify-content: center;
  flex-wrap: wrap;
}

.footer-bottom {
  background: var(--dark-bg);
  padding: 30px 0;
  text-align: center;
}

.copyright {
  color: var(--text-gray);
  font-size: 14px;
}

/* Game Page */
.game-page {
  padding: 60px 20px;
  min-height: calc(100vh - 200px);
  background: var(--dark-bg);
}

.game-header {
  margin-bottom: 40px;
  text-align: center;
}

.game-page-title {
  font-size: 48px;
  font-weight: 900;
  background: var(--purple-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.game-container {
  max-width: 1200px;
  margin: 0 auto;
}

.game-wrapper {
  background: var(--dark-secondary);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 2px solid var(--purple-light);
  box-shadow: var(--shadow);
}

.game-embed {
  position: relative;
  width: 100%;
  min-height: 700px;
}

.game-embed iframe {
  width: 100%;
  height: 700px;
  border: none;
  display: block;
}

/* Reviews Page */
.reviews-page {
  padding: 60px 20px;
  min-height: calc(100vh - 200px);
  background: var(--dark-bg);
}

.reviews-header {
  text-align: center;
  margin-bottom: 60px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 350px), 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.review-card {
  background: var(--dark-secondary);
  padding: 35px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--purple-light);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-left-color: var(--pink);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.review-author {
  font-weight: 700;
  color: var(--purple-light);
  font-size: 20px;
}

.review-rating {
  color: #fbbf24;
  font-size: 22px;
}

.review-date {
  color: var(--text-gray);
  font-size: 14px;
  margin-bottom: 15px;
}

.review-text {
  line-height: 1.8;
  color: var(--text-light);
}

/* Legal Pages */
.legal-page {
  padding: 60px 20px;
  min-height: calc(100vh - 200px);
  background: var(--dark-bg);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--dark-secondary);
  padding: 50px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border: 2px solid var(--purple-light);
}

.legal-content h1 {
  background: var(--purple-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 42px;
  margin-bottom: 30px;
  font-weight: 900;
}

.legal-content h2 {
  color: var(--purple-light);
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 700;
}

.legal-content h3 {
  color: var(--text-light);
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.legal-content p {
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-light);
}

.legal-content ul,
.legal-content ol {
  margin-left: 30px;
  margin-bottom: 20px;
  line-height: 1.8;
}

.legal-content li {
  margin-bottom: 10px;
  color: var(--text-light);
}

.legal-content a {
  color: var(--purple-light);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--pink);
}

.last-updated {
  color: var(--text-gray);
  font-size: 14px;
  font-style: italic;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--dark-tertiary);
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-actions {
    gap: 10px;
  }

  .nav-actions .btn-primary {
    display: none;
  }

  .navbar .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--dark-secondary);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 30px 30px;
    gap: 20px;
    transition: right 0.3s ease;
    z-index: 1000;
    border-left: 2px solid var(--purple-light);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  }

  .navbar .nav-menu.active {
    right: 0;
  }

  .navbar .nav-menu li {
    width: 100%;
  }

  .navbar .nav-menu a {
    display: block;
    padding: 15px 0;
    font-size: 18px;
    border-bottom: 1px solid var(--dark-tertiary);
    width: 100%;
  }

  .navbar .nav-menu a:hover {
    color: var(--purple-light);
    padding-left: 10px;
  }

  .footer-nav .nav-menu {
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 0;
    height: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    width: 100%;
  }

  .footer-nav .nav-menu li {
    width: auto;
  }

  .footer-nav .nav-menu a {
    display: inline-block;
    padding: 10px 15px;
    font-size: 14px;
    border-bottom: none;
    width: auto;
  }

  .footer-nav .nav-menu a:hover {
    padding-left: 15px;
  }

  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
  }

  .menu-overlay.active {
    display: block;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .section-content {
    flex-direction: column;
  }

  .game-preview-cards {
    grid-template-columns: 1fr;
  }

  .feature-boxes {
    grid-template-columns: 1fr;
  }

  .game-features {
    grid-template-columns: 1fr;
  }

  .brand-name {
    font-size: 36px;
  }

  .section-title {
    font-size: 32px;
  }

  .cookie-banner {
    padding: 20px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .cookie-content p {
    font-size: 13px;
    line-height: 1.6;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  .btn-cookie {
    width: 100%;
    padding: 14px 20px;
    font-size: 14px;
  }

  .responsible-gaming {
    flex-direction: column;
  }
}

/* Extra Small Devices (360px and below) */
@media (max-width: 360px) {
  body {
    overflow-x: hidden;
  }

  .container {
    padding: 0 15px;
  }

  .nav-container {
    padding: 0 15px;
  }

  .logo-text {
    font-size: 20px;
  }

  .logo-img {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding: 40px 15px;
    min-height: auto;
  }

  .hero-character img {
    width: 100%;
    max-width: 280px;
    height: auto;
  }

  .hero-brand {
    padding: 25px 20px;
  }

  .brand-name {
    font-size: 28px;
    letter-spacing: 1px;
  }

  .hero-description {
    font-size: 16px;
  }

  .btn-primary {
    padding: 14px 30px;
    font-size: 14px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-text {
    font-size: 16px;
  }

  .game-preview-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .game-card {
    margin: 0;
  }

  .game-card-image {
    height: 200px;
  }

  .game-card-content {
    padding: 20px;
  }

  .game-card-title {
    font-size: 22px;
  }

  .feature-boxes {
    gap: 15px;
  }

  .feature-box {
    padding: 20px;
  }

  .feature-box h3 {
    font-size: 20px;
  }

  .game-features {
    gap: 15px;
  }

  .game-feature {
    padding: 20px;
  }

  .age-popup-content {
    padding: 30px 20px;
    max-width: 90%;
    margin: 0 15px;
  }

  .age-popup-icon {
    font-size: 48px;
  }

  .age-popup-content h2 {
    font-size: 22px;
  }

  .age-popup-content p {
    font-size: 16px;
  }

  .btn-age {
    padding: 12px 25px;
    font-size: 14px;
  }

  .cookie-banner {
    padding: 15px;
  }

  .cookie-content {
    padding: 0;
  }

  .cookie-content p {
    font-size: 12px;
  }

  .btn-cookie {
    padding: 12px 15px;
    font-size: 13px;
  }

  .legal-content {
    padding: 30px 20px;
  }

  .legal-content h1 {
    font-size: 32px;
  }

  .legal-content h2 {
    font-size: 22px;
  }

  .legal-content h3 {
    font-size: 18px;
  }

  .review-card {
    padding: 25px 20px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .responsible-logo {
    padding: 15px;
    min-width: auto;
    width: 100%;
  }

  .responsible-logo img {
    max-width: 150px;
  }

  .footer-disclaimer {
    padding: 30px 15px;
  }

  .footer-disclaimer-text {
    font-size: 14px;
  }

  .age-restriction {
    font-size: 48px;
  }

  .footer-nav {
    padding: 20px 0;
  }

  .navbar .nav-menu a {
    font-size: 14px;
  }

  .footer-nav .nav-menu {
    gap: 10px;
  }

  .footer-nav .nav-menu a {
    font-size: 12px;
    padding: 8px 12px;
  }

  .text-content,
  .illustration {
    min-width: auto;
    width: 100%;
  }

  .illustration img {
    max-width: 100%;
    width: 100%;
  }
}
