html,
body {
  margin: 0;
  padding: 0;
  background: black;
}

canvas {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
}

/* Main Content Container */
#main-content {
  color: black;
  text-align: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 6rem 2rem 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 10;
  min-height: 100vh;
  box-sizing: border-box;
}

/* Page Title - Enhanced glow for better readability */
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  background: linear-gradient(135deg, #6B46C1 0%, #2D1B4E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  padding-top: 2rem;
  line-height: 1.2;
  filter: drop-shadow(0 0 20px rgba(107, 70, 193, 1)) drop-shadow(0 0 40px rgba(107, 70, 193, 0.8)) drop-shadow(0 4px 20px rgba(255, 255, 255, 0.6));
  animation: fadeInTitle 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes fadeInTitle {
  from {
    opacity: 0;
    transform: translateY(-20px);
    filter: blur(10px) drop-shadow(0 4px 15px rgba(107, 70, 193, 0.4));
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0) drop-shadow(0 0 20px rgba(107, 70, 193, 1)) drop-shadow(0 0 40px rgba(107, 70, 193, 0.8)) drop-shadow(0 4px 20px rgba(255, 255, 255, 0.6));
  }
}



/* Slideshow Styles */
.slider-container {
  width: 100%;
  max-width: 1000px;
  position: relative;
  margin: 2rem auto;
  perspective: 1000px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.slides-wrapper {
  position: relative;
  width: 100%;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  padding: 1rem;
  box-sizing: border-box;
}

.slide.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 2;
  pointer-events: auto;
}

/* Enhanced glow for slide titles */
.slide-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  background: linear-gradient(135deg, #6B46C1 0%, #2D1B4E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  line-height: 1.3;
  filter: drop-shadow(0 0 15px rgba(107, 70, 193, 1)) drop-shadow(0 0 30px rgba(107, 70, 193, 0.7)) drop-shadow(0 3px 15px rgba(255, 255, 255, 0.5));
  white-space: pre-line;
}

/* Enhanced glow for slide descriptions */
.slide-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 500;
  color: rgba(0, 0, 0, 0.95);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 0 0 10px rgba(255, 255, 255, 1), 0 0 20px rgba(255, 255, 255, 0.8), 0 1px 2px rgba(255, 255, 255, 0.9);
}


/* Android notice - solid background, no glow */
.android-notice {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  font-weight: 500;
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  background: #6B46C1;
  border-radius: 50px;
  border: 1px solid rgba(233, 216, 253, 0.4);
  text-align: center;
  margin: 1.5rem auto;
  max-width: 90%;
  transition: all 0.3s ease;
}

.android-notice:hover {
  background: #805AD5;
  border-color: rgba(233, 216, 253, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(107, 70, 193, 0.3);
}

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

/* Store Badges */
.store-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.store-badges a {
  display: inline-block;
  transition: transform 0.2s ease;
}

.store-badges a:hover {
  transform: translateY(-3px) scale(1.05);
}

.store-badges img {
  height: 90px;
  width: 300px;
  object-fit: contain;
}

@media (max-width: 768px) {

  .header-nav,
  .language-switcher.desktop-lang {
    display: none;
  }

  .site-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.2rem;
    gap: 0;
    min-height: 65px;
  }

  .header-left {
    flex: 1;
    justify-content: flex-start;
  }

  .hamburger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu {
    display: block;
  }

  #main-content {
    padding: 5rem 1.5rem 7rem;
    gap: 1.5rem;
  }

  .page-title {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-top: 1rem;
  }

  .slider-container {
    min-height: 200px;
    margin: 1rem auto;
  }

  .slides-wrapper {
    min-height: 160px;
  }


  .legal-links {
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }

  .legal-links a {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    width: 90%;
    max-width: 300px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 0.75rem;
  }

  .site-header .brand {
    font-size: 1.1rem;
  }

  .header-nav a {
    font-size: 0.75rem;
    padding: 0.35rem 0.7rem;
  }

  .language-switcher button {
    padding: 0.3rem 0.5rem;
    font-size: 0.7rem;
  }

  #main-content {
    padding: 4.5rem 1rem 6rem;
    gap: 1rem;
  }

  .page-title {
    font-size: clamp(1.8rem, 10vw, 2.5rem);
    margin-top: 0.5rem;
  }

  .android-notice {
    font-size: 0.85rem !important;
    padding: 0.85rem 1.2rem !important;
    font-weight: 600 !important;
  }

  .store-badges {
    gap: 1.5rem;
    margin: 1.5rem 0;
  }

  .store-badges img {
    height: 75px;
    width: 247px;
  }

  .slider-container {
    min-height: 240px;
    margin: 1.5rem auto;
  }

  .slides-wrapper {
    min-height: 200px;
  }

  .slide {
    padding: 0.5rem;
  }

}

/* Legal links - solid background, no glow */
.legal-links {
  margin-top: 2.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  pointer-events: auto;
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
}

.legal-links a {
  color: #ffffff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  background: #6B46C1;
  border: 1px solid rgba(233, 216, 253, 0.4);
  transition: all 0.3s ease;
}

.legal-links a:hover {
  background: #805AD5;
  border-color: rgba(233, 216, 253, 0.6);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(107, 70, 193, 0.4);
}

/* Site Header */
.site-header {
  background: linear-gradient(135deg, rgba(107, 70, 193, 0.95) 0%, rgba(128, 90, 213, 0.9) 50%, rgba(159, 122, 234, 0.85) 100%);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  min-height: 70px;
}

.header-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  flex: 1;
}

.site-header .brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  transition: opacity 0.2s;
}

.site-header .brand:hover {
  opacity: 0.85;
}

.header-nav {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.header-nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  pointer-events: auto;
}

.header-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.header-nav a.active {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.3);
}

.language-switcher {
  display: flex;
  gap: 0.4rem;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.4rem 0.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.language-switcher button {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
  padding: 0.45rem 0.75rem;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  pointer-events: auto;
}

.language-switcher button:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.language-switcher button.active {
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
  color: #6B46C1;
  border-color: transparent;
  font-weight: 700;
}

/* Hamburger Menu Button */
.hamburger-btn {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1.5rem;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  cursor: pointer;
  z-index: 10005;
  transition: background 0.2s;
}

.hamburger-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(15px);
  z-index: 10004;
  transition: right 0.3s ease-in-out;
  padding-top: 5rem;
}

.mobile-menu.active {
  right: 0;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.mobile-nav a {
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: #9F7AEA;
}

.mobile-lang-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  text-align: center;
}

.mobile-lang-switcher {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.mobile-lang-switcher button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
}

.mobile-lang-switcher button.active {
  background: white;
  color: #6B46C1;
  font-weight: bold;
  border-color: white;
}

/* Enhanced Modal/Lightbox styles */
#modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10005;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#modal.active {
  display: flex;
  flex-direction: column;
  opacity: 1;
}

#modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #6B46C1 0%, #805AD5 50%, #9F7AEA 100%);
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 20px rgba(107, 70, 193, 0.4);
  position: relative;
  overflow: hidden;
}

#modal-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

#modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

#modal-close {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 700;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

#modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

#modal-content {
  flex: 1;
  overflow-y: auto;
  padding: 0;
  position: relative;
}

#modal-content::-webkit-scrollbar {
  width: 12px;
}

#modal-content::-webkit-scrollbar-track {
  background: #f1f1f1;
}

#modal-content::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #6B46C1 0%, #9F7AEA 100%);
  border-radius: 10px;
  border: 2px solid #f1f1f1;
}

#modal-content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #805AD5 0%, #B794F4 100%);
}

#modal-body {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  color: #2D3748;
  line-height: 1.8;
  min-height: 100%;
  box-shadow: 0 0 50px rgba(107, 70, 193, 0.1);
}

#modal-body h1 {
  font-family: 'Playfair Display', serif;
  color: #6B46C1;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  border-bottom: 3px solid #E9D8FD;
  padding-bottom: 1rem;
}

#modal-body h2 {
  font-family: 'Playfair Display', serif;
  color: #805AD5;
  font-size: 2rem;
  font-weight: 800;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

#modal-body h3 {
  font-family: 'Playfair Display', serif;
  color: #9F7AEA;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

#modal-body p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  color: #4A5568;
}

#modal-body ul,
#modal-body ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

#modal-body li {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  color: #4A5568;
}

#modal-body a {
  color: #6B46C1;
  text-decoration: underline;
  transition: color 0.2s ease;
}

#modal-body a:hover {
  color: #9F7AEA;
}

#modal-body strong {
  color: #2D3748;
  font-weight: 700;
}

.modal-loading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 1.2rem;
  color: #6B46C1;
  gap: 1rem;
}

.modal-loading::after {
  content: '';
  width: 50px;
  height: 50px;
  border: 4px solid #E9D8FD;
  border-top-color: #6B46C1;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Tablet responsive */
@media (max-width: 1024px) {
  .site-header {
    padding: 1rem 1.5rem;
  }

  #main-content {
    padding: 5.5rem 2rem 7rem;
    max-width: 90%;
  }

  .page-title {
    font-size: clamp(2.2rem, 7vw, 3.5rem);
  }
}

/* Modal mobile responsive */
@media (max-width: 768px) {
  #modal-header {
    padding: 1rem 1.5rem;
  }

  #modal-title {
    font-size: 1.4rem;
  }

  #modal-close {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  #modal-body {
    padding: 2rem 1.5rem;
  }

  #modal-body h1 {
    font-size: 2rem;
  }

  #modal-body h2 {
    font-size: 1.6rem;
  }

  #modal-body h3 {
    font-size: 1.3rem;
  }

  #modal-body p,
  #modal-body li {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  #modal-header {
    padding: 0.75rem 1rem;
  }

  #modal-title {
    font-size: 1.2rem;
  }

  #modal-close {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  #modal-body {
    padding: 1.5rem 1rem;
  }

  #modal-body h1 {
    font-size: 1.6rem;
  }

  #modal-body h2 {
    font-size: 1.3rem;
  }

  #modal-body h3 {
    font-size: 1.1rem;
  }

  #modal-body p,
  #modal-body li {
    font-size: 0.95rem;
  }
}

/* Age Verification Gate */
#age-gate {
  position: fixed; /* Keep fixed to stay at the top */
  top: 0;
  left: 0;
  width: 100%;
  height: auto; /* Auto height to fit content */
  background: rgba(0, 0, 0, 0.9); /* Slightly less opaque background */
  z-index: 10003; /* Highest - temporary blocking banner */
  display: flex; /* Use flexbox for inner content alignment */
  justify-content: center;
  align-items: center; /* Center items vertically in the banner */
  padding: 10px 20px; /* Reduced padding for banner style */
  box-sizing: border-box; /* Include padding in width/height */
  backdrop-filter: none; /* Remove blur effect */
  -webkit-backdrop-filter: none;
  transition: all 0.3s ease-in-out; /* Smooth transition for hidden state */
  flex-wrap: wrap; /* Allow content to wrap on smaller screens */
}

#age-gate.hidden {
  top: -100px; /* Animate out of view */
  opacity: 0;
  pointer-events: none; /* Make it unclickable when hidden */
}

.age-gate-content {
  background: transparent; /* Remove background, let #age-gate handle it */
  padding: 0; /* Remove padding */
  border-radius: 0; /* Remove border-radius */
  text-align: center;
  max-width: 100%; /* Take full width within banner */
  width: auto; /* Let content define width */
  border: none; /* Remove border */
  box-shadow: none; /* Remove shadow */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px; /* Spacing between elements */
  color: white; /* Ensure text is visible */
}

/* Adjust specific elements within the banner to be more compact */
.age-gate-content h2,
.age-gate-content p,
.age-gate-content .disclaimer {
  margin: 0; /* Remove margins */
  font-size: 0.9rem; /* Smaller font size */
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9); /* Lighter text color */
}

.age-gate-content h2 {
    font-size: 1.1rem;
    font-weight: 600;
}

.age-gate-content .warning-icon {
  font-size: 1.2rem; /* Smaller icon */
  margin: 0;
}

.age-gate-buttons {
  display: flex;
  gap: 10px; /* Smaller gap for buttons */
  justify-content: center;
  flex-wrap: wrap;
}

.age-gate-buttons button {
  font-size: 0.8rem; /* Smaller button text */
  padding: 0.5rem 1rem; /* Smaller padding */
  border-radius: 6px;
  min-width: unset; /* Remove min-width constraint */
}

.age-gate-content .disclaimer a {
  color: #9F7AEA; /* Ensure link color is distinct */
  font-weight: 500;
}

.age-gate-lang {
    margin: 0;
    gap: 5px;
}
.age-gate-lang button {
    padding: 0.2rem 0.4rem;
    font-size: 0.6rem;
}

/* Cookie Consent Banner */
#cookie-consent {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(30, 30, 40, 0.98) 0%, rgba(20, 20, 30, 0.99) 100%);
  padding: 1rem 1.5rem;
  z-index: 10002;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0;
  transform: translateY(0);
  transition: transform 0.3s ease-out;
}

#cookie-consent.hidden {
  display: none;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.cookie-text a {
  color: #9F7AEA;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-buttons button {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cookie-buttons .btn-accept-all {
  background: linear-gradient(135deg, #6B46C1 0%, #805AD5 100%);
  color: white;
  border: none;
}

.cookie-buttons .btn-accept-all:hover {
  background: linear-gradient(135deg, #805AD5 0%, #9F7AEA 100%);
}

.cookie-buttons .btn-essential {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-buttons .btn-essential:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-buttons .btn-settings {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: none;
  text-decoration: underline;
  padding: 0.6rem 0.5rem;
}

@media (max-width: 600px) {
  #cookie-consent {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .cookie-text {
    font-size: 0.8rem;
    min-width: 100%;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  .cookie-buttons button {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }

  .age-gate-content {
    padding: 1.5rem;
    width: 95%;
  }

  .age-gate-content h2 {
    font-size: 1.8rem;
  }

  .age-gate-content .warning-icon {
    font-size: 2.5rem;
  }

  .age-gate-content p {
    font-size: 1.05rem;
  }

  .age-gate-content .disclaimer {
    font-size: 1.05rem;
    padding: 1.5rem;
  }

  .age-gate-buttons {
    flex-direction: column;
  }

  .age-gate-buttons button {
    width: 100%;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
  }

  .age-gate-lang {
    flex-wrap: wrap;
  }

  .age-gate-lang button {
    padding: 0.25rem 0.5rem;
    font-size: 0.65rem;
  }
}

/* Site Footer */
.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  padding: 0.75rem;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  z-index: 10001;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 25vh;
  overflow-y: auto;
  backdrop-filter: blur(10px);
}

.site-footer .footer-content {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.site-footer .footer-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.site-footer .footer-section-title {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin: 0;
    font-size: 0.85rem;
}

.site-footer .footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer .separator {
  display: none; /* No longer needed */
}

.site-footer .footer-copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 600px) {
  .site-footer {
    padding: 0.5rem;
    gap: 0.25rem;
    max-height: 20vh;
    font-size: 0.65rem;
  }

  .site-footer .footer-content {
    flex-direction: column;
    gap: 0.5rem;
  }

  .site-footer .footer-section-title {
    font-size: 0.7rem;
    margin-bottom: 0.25rem;
  }

  .site-footer .footer-links {
    gap: 0.2rem 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .site-footer a {
    font-size: 0.6rem;
    padding: 0.2rem 0.4rem;
    line-height: 1.2;
  }

  .site-footer .footer-copyright {
    font-size: 0.55rem;
    margin-top: 0.25rem;
    line-height: 1.2;
  }
}