/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

:root {
  --primary-purple: #9333ea;
  --purple-hover: #a855f7;
  --purple-light: #c084fc;
  --dark-blue: #0f172a;
  --dark-blue-light: #1e293b;
  --text-white: #ffffff;
  --text-gray: #e2e8f0;
  --text-gray-light: #cbd5e1;
  --border-color: rgba(147, 51, 234, 0.3);
  --shadow-purple: rgba(147, 51, 234, 0.3);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(135deg, var(--dark-blue) 0%, #1e1b4b 100%);
  color: var(--text-white);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header Styles */
.main-header {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  width: 100%;
  box-sizing: border-box;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.logo-wrapper {
  flex-shrink: 0;
}

/* Header Navigation */
.header-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.menu-toggle {
  display: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-purple);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--text-white);
  background: rgba(147, 51, 234, 0.1);
}

.nav-link:hover::after {
  width: 80%;
}

.logo-link {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo-img {
  height: 50px;
  width: auto;
  display: block;
}


/* Main Content */
.main-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 3rem 1rem;
  padding-top: 7rem;
  box-sizing: border-box;
  gap: 2rem;
}

.content-ads-left,
.content-ads-right {
  display: none;
  width: 200px;
  position: fixed;
  top: 120px;
  bottom: 20px;
  max-height: calc(100vh - 140px);
  align-self: flex-start;
  z-index: 999;
  overflow-y: auto;
  overflow-x: hidden;
}

.content-ads-left {
  left: 20px;
}

.content-ads-right {
  right: 20px;
}

/* Scrollbar styles for ads */
.content-ads-left::-webkit-scrollbar,
.content-ads-right::-webkit-scrollbar {
  width: 6px;
}

.content-ads-left::-webkit-scrollbar-track,
.content-ads-right::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.3);
  border-radius: 10px;
}

.content-ads-left::-webkit-scrollbar-thumb,
.content-ads-right::-webkit-scrollbar-thumb {
  background: rgba(147, 51, 234, 0.5);
  border-radius: 10px;
}

.content-ads-left::-webkit-scrollbar-thumb:hover,
.content-ads-right::-webkit-scrollbar-thumb:hover {
  background: rgba(147, 51, 234, 0.7);
}

.content-ad-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 300px;
  max-height: calc(100vh - 180px);
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.15) 0%, rgba(30, 41, 59, 0.8) 100%);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.4s ease;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.content-ad-link::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.content-ad-link:hover::before {
  opacity: 1;
}

.content-ad-link:hover {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.25) 0%, rgba(30, 41, 59, 0.9) 100%);
  border-color: var(--primary-purple);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 32px rgba(147, 51, 234, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.ad-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
  gap: 1rem;
}

.ad-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(147, 51, 234, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary-purple);
  margin-bottom: 0.5rem;
  transition: all 0.4s ease;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(147, 51, 234, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(147, 51, 234, 0);
  }
}

.content-ad-link:hover .ad-icon-wrapper {
  background: var(--primary-purple);
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 0 20px rgba(147, 51, 234, 0.6);
}

.ad-icon {
  color: var(--primary-purple);
  transition: all 0.4s ease;
}

.content-ad-link:hover .ad-icon {
  color: var(--text-white);
  transform: scale(1.1);
}

.ad-title {
  color: var(--text-white);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
  text-shadow: 0 2px 8px rgba(147, 51, 234, 0.5);
  transition: all 0.3s ease;
}

.content-ad-link:hover .ad-title {
  color: var(--purple-light);
  text-shadow: 0 2px 12px rgba(147, 51, 234, 0.8);
  transform: scale(1.05);
}

.ad-subtitle {
  color: var(--text-gray);
  font-size: 0.85rem;
  font-weight: 400;
  margin-top: -0.5rem;
  transition: all 0.3s ease;
}

.content-ad-link:hover .ad-subtitle {
  color: var(--text-gray-light);
}

.ad-decoration {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
  align-items: center;
  justify-content: center;
}

.ad-star,
.ad-diamond {
  color: var(--primary-purple);
  font-size: 1.2rem;
  display: inline-block;
  transition: all 0.3s ease;
  animation: twinkle 2s ease-in-out infinite;
}

.ad-star:nth-child(2),
.ad-diamond:nth-child(2) {
  animation-delay: 0.3s;
}

.ad-star:nth-child(3),
.ad-diamond:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes twinkle {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.content-ad-link:hover .ad-star,
.content-ad-link:hover .ad-diamond {
  color: var(--purple-light);
  transform: scale(1.3) rotate(15deg);
  text-shadow: 0 0 10px rgba(147, 51, 234, 0.8);
}

.main-content {
  flex: 1;
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
}

.desktop-only {
  display: none;
}

@media (min-width: 1600px) {
  .desktop-only {
    display: flex;
  }
  
  .content-ads-left {
    justify-content: flex-end;
    left: 20px;
  }
  
  .content-ads-right {
    justify-content: flex-start;
    right: 20px;
  }

  .main-wrapper {
    padding-left: 260px;
    padding-right: 260px;
  }
}

/* Hide ads on smaller desktop screens to prevent overlap */
@media (min-width: 1400px) and (max-width: 1599px) {
  .content-ads-left,
  .content-ads-right {
    display: none !important;
  }
  
  .main-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

section {
  margin-bottom: 3rem;
  background: rgba(30, 41, 59, 0.5);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}

/* 404 Error Page Styles */
.error-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(30, 41, 59, 0.5);
}

.error-404-content {
  max-width: 600px;
  width: 100%;
}

.error-404-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  color: var(--primary-purple);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

.error-404 h1 {
  font-size: 8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1;
  text-shadow: 0 0 30px rgba(147, 51, 234, 0.5);
}

.error-404 h2 {
  color: var(--purple-light);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.error-404 p {
  color: var(--text-gray);
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.error-404-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.error-404-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--purple-hover) 100%);
  color: var(--text-white);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(147, 51, 234, 0.4);
  border: 2px solid transparent;
}

.error-404-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(147, 51, 234, 0.6);
  background: linear-gradient(135deg, var(--purple-hover) 0%, var(--purple-light) 100%);
}

.error-404-button:active {
  transform: translateY(-1px);
}

.error-404-button svg {
  transition: transform 0.3s ease;
}

.error-404-button:hover svg {
  transform: translateX(-3px);
}

section h1 {
  color: var(--primary-purple);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px var(--shadow-purple);
}

section h2 {
  color: var(--purple-light);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

section h3 {
  color: var(--purple-light);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

section p {
  margin-bottom: 1.5rem;
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.8;
}

section ul, section ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
  color: var(--text-gray);
}

section li {
  margin-bottom: 0.8rem;
  line-height: 1.7;
}

/* Banner Styles */
.banner {
  width: 100%;
  max-width: 100%;
  margin: 2rem 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(147, 51, 234, 0.4);
  border: 2px solid var(--border-color);
  box-sizing: border-box;
}

.banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-width: 100%;
}

/* Table Styles */
table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: rgba(15, 23, 42, 0.6);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

table thead {
  background: var(--primary-purple);
}

table th {
  padding: 1rem;
  text-align: left;
  color: var(--text-white);
  font-weight: 600;
  border-bottom: 2px solid var(--purple-hover);
}

table td {
  padding: 1rem;
  color: var(--text-gray);
  border-bottom: 1px solid rgba(147, 51, 234, 0.2);
}

table tbody tr:hover {
  background: rgba(147, 51, 234, 0.1);
  transition: background 0.3s ease;
}

table tbody tr:last-child td {
  border-bottom: none;
}

/* FAQ Accordion Styles */
.faq-section {
  margin-bottom: 3rem;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.faq-item {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.faq-item:hover {
  border-color: var(--primary-purple);
  box-shadow: 0 6px 20px rgba(147, 51, 234, 0.3);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.5rem 2rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--text-white);
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question:hover {
  color: var(--purple-light);
  background: rgba(147, 51, 234, 0.1);
}

.faq-question:focus {
  outline: 2px solid var(--primary-purple);
  outline-offset: -2px;
}

.faq-question span:first-child {
  flex: 1;
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(147, 51, 234, 0.2);
  color: var(--primary-purple);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-question:hover .faq-icon {
  background: var(--primary-purple);
  color: var(--text-white);
  transform: scale(1.1);
}

.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--primary-purple);
  color: var(--text-white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: rgba(15, 23, 42, 0.4);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 2rem 1.5rem 2rem;
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
}

.faq-item.active .faq-answer-content {
  opacity: 1;
}

/* Definition List Styles (for other pages if needed) */
dl {
  margin: 2rem 0;
}

dt {
  color: var(--primary-purple);
  font-weight: 600;
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

dd {
  color: var(--text-gray);
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* Footer Styles */
.main-footer {
  background: rgba(15, 23, 42, 0.95);
  border-top: 2px solid var(--border-color);
  margin-top: 4rem;
  padding: 3rem 0 2rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  width: 100%;
  box-sizing: border-box;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  box-sizing: border-box;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-age-restriction {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  margin-bottom: 1rem;
  background: rgba(147, 51, 234, 0.1);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-gray);
  font-size: 0.95rem;
  font-weight: 500;
}

.footer-age-restriction .age-icon {
  color: var(--primary-purple);
  flex-shrink: 0;
}

.footer-age-restriction span {
  line-height: 1.4;
}

.footer-copyright {
  color: var(--text-gray-light);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.footer-content {
  text-align: center;
}

/* Promotional Banner */
.promo-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.95) 0%, rgba(168, 85, 247, 0.95) 100%);
  backdrop-filter: blur(10px);
  border-top: 2px solid var(--primary-purple);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 998;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideUpBanner 0.4s ease-out;
}

@keyframes slideUpBanner {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.promo-banner-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.promo-banner-text {
  color: var(--text-white);
  font-size: 1.1rem;
  font-weight: 600;
  flex: 1;
  text-align: center;
}

.promo-banner-text strong {
  display: block;
  font-size: 1.2rem;
}

.promo-banner-button {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: var(--text-white);
  color: var(--primary-purple);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.promo-banner-button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.promo-banner-button:active {
  transform: translateY(0);
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary-purple);
  border: 2px solid var(--border-color);
  border-radius: 50%;
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(147, 51, 234, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  padding: 0;
}

.scroll-to-top:hover {
  background: var(--purple-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(147, 51, 234, 0.6);
}

.scroll-to-top:active {
  transform: translateY(-1px);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-wrapper {
    padding: 2rem 1rem;
    padding-top: 7rem;
    flex-direction: column;
  }

  .error-404 {
    min-height: 50vh;
    padding: 3rem 1.5rem;
  }

  .error-404-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
  }

  .error-404 h1 {
    font-size: 5rem;
  }

  .error-404 h2 {
    font-size: 2rem;
  }

  .error-404 p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .error-404-button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  .content-ads-left,
  .content-ads-right {
    display: none !important;
  }

  .main-content {
    width: 100%;
  }

  .header-container {
    padding: 0 1rem;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    z-index: 1001;
  }

  .menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-purple);
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .header-nav {
    position: relative;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0.5rem;
    border-left: 2px solid var(--border-color);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    align-items: flex-start;
    overflow-y: auto;
  }

  .nav-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    width: 100%;
    text-align: left;
    padding: 1rem;
    font-size: 1rem;
  }

  main {
    padding: 2rem 1rem;
  }

  section {
    padding: 1.5rem;
  }

  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }

  .faq-answer-content {
    padding: 0 1.5rem 1.25rem 1.5rem;
    font-size: 0.95rem;
  }

  .faq-icon {
    width: 28px;
    height: 28px;
    font-size: 1.3rem;
  }

  section h1 {
    font-size: 2rem;
  }

  section h2 {
    font-size: 1.75rem;
  }

  section h3 {
    font-size: 1.25rem;
  }

  table {
    font-size: 0.9rem;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  table thead {
    display: table-header-group;
  }

  table tbody {
    display: table-row-group;
  }

  table tr {
    display: table-row;
  }

  table th,
  table td {
    display: table-cell;
    padding: 0.75rem 0.5rem;
  }

  .banner {
    margin: 1.5rem 0;
    border-radius: 12px;
  }

  .promo-banner {
    padding: 0.875rem 1rem;
  }

  .promo-banner-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .promo-banner-text {
    font-size: 0.95rem;
  }

  .promo-banner-text strong {
    font-size: 1.05rem;
  }

  .promo-banner-button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    max-width: 250px;
  }

  .promo-banner {
    padding: 0.875rem 1rem;
  }

  .promo-banner-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .promo-banner-text {
    font-size: 0.95rem;
  }

  .promo-banner-text strong {
    font-size: 1.05rem;
  }

  .promo-banner-button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    max-width: 250px;
  }

  .scroll-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
  }

  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }

  .footer-age-restriction {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.875rem;
    font-size: 0.875rem;
    text-align: center;
  }

  .footer-age-restriction .age-icon {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 40px;
  }

  .nav-menu {
    width: 100%;
  }

  section h1 {
    font-size: 1.75rem;
  }

  section h2 {
    font-size: 1.5rem;
  }

  section p {
    font-size: 1rem;
  }

}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
.logo-link:focus,
.nav-link:focus {
  outline: 2px solid var(--primary-purple);
  outline-offset: 2px;
}

/* Animation for sections */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  animation: fadeIn 0.6s ease-out;
}

