:root {
  --color-primary: #2c7a3f;
  --color-primary-light: #4a9d5e;
  --color-primary-dark: #1e5a2d;
  --color-secondary: #f4a261;
  --color-accent: #e76f51;
  --color-background: #fafaf8;
  --color-surface: #ffffff;
  --color-text: #2d3748;
  --color-text-light: #718096;
  --color-border: #e2e8f0;
  --color-success: #48bb78;
  --color-warning: #f6ad55;
  --color-error: #f56565;

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  --font-family-base: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;

  --border-radius: 0.5rem;
  --border-radius-lg: 1rem;
  --transition: all 0.3s ease;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: var(--font-size-4xl); margin-bottom: var(--spacing-lg); }
h2 { font-size: var(--font-size-3xl); margin-bottom: var(--spacing-md); }
h3 { font-size: var(--font-size-2xl); margin-bottom: var(--spacing-md); }
h4 { font-size: var(--font-size-xl); margin-bottom: var(--spacing-sm); }

p { margin-bottom: var(--spacing-sm); }

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover { color: var(--color-primary-dark); }
a:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: var(--font-size-base);
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
}

.age-gate-content p, .cookie-banner-content p {
  color: #000 !important;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-secondary {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: white;
}

.header {
  background: white;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-sm) 0;
}

.logo {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.nav ul {
  display: flex;
  list-style: none;
  gap: var(--spacing-lg);
  align-items: center;
}

.nav a {
  font-weight: 500;
  color: var(--color-text);
  padding: var(--spacing-xs) 0;
  position: relative;
}

.nav a:hover {
  color: var(--color-primary);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text);
  padding: 0.5rem;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background: currentColor;
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
  background: linear-gradient(135deg, rgba(44, 122, 63, 0.95), rgba(74, 157, 94, 0.9)),
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hex" x="0" y="0" width="20" height="34.64" patternUnits="userSpaceOnUse"><path d="M10 0l10 5.774v11.547L10 23.094 0 17.321V5.774z" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect fill="url(%23hex)" width="100" height="100"/></svg>');
  background-size: cover;
  background-position: center;
  color: white;
  padding: var(--spacing-2xl) 0;
  text-align: center;
  position: relative;
}

.hero h1 {
  color: white;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--spacing-md);
}

.hero p {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-xl);
  opacity: 0.95;
}

.trust-strip {
  background: white;
  padding: var(--spacing-md) 0;
  box-shadow: var(--shadow-sm);
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xl);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-weight: 600;
  color: var(--color-primary);
}

.trust-item svg {
  width: 24px;
  height: 24px;
  fill: var(--color-primary);
}

.section {
  padding: var(--spacing-2xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.game-card {
  background: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-dark));
}

.game-card-content {
  padding: var(--spacing-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.game-card-title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-sm);
  color: var(--color-text);
}

.game-card-description {
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
  flex-grow: 1;
}

.game-tags {
  display: flex;
  gap: var(--spacing-xs);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-md);
}

.tag {
  background: var(--color-background);
  color: var(--color-primary);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: var(--font-size-sm);
  font-weight: 500;
}

.footer {
  background: #1a202c;
  color: white;
  padding: var(--spacing-2xl) 0 var(--spacing-md);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-section h4 {
  color: white;
  margin-bottom: var(--spacing-md);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: var(--spacing-xs);
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-section a:hover {
  color: white;
}

.responsible-play-block {
  background: rgba(255, 255, 255, 0.05);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius);
  margin-top: var(--spacing-xl);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.responsible-play-block h4 {
  color: var(--color-warning);
  margin-bottom: var(--spacing-md);
}

.help-logos {
  display: flex;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
  align-items: center;
  margin: var(--spacing-md) 0;
}

.help-logo {
  height: 50px;
  width: auto;
  transition: var(--transition);
}

.help-logo:hover {
  transform: scale(1.05);
}

.help-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font-size-sm);
}

.age-gate-overlay,
.cookie-consent-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.age-gate-overlay.active,
.cookie-consent-overlay.active {
  opacity: 1;
  visibility: visible;
}

.age-gate-content {
  background: white;
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  max-width: 500px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.age-gate-content h2 {
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
}

.age-gate-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  margin-top: var(--spacing-lg);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: var(--spacing-lg);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transform: translateY(100%);
  transition: var(--transition);
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.cookie-buttons {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: white;
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.cookie-category {
  padding: var(--spacing-md);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  margin-bottom: var(--spacing-md);
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-xs);
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: var(--transition);
  border-radius: 24px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: var(--transition);
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: var(--color-primary);
}

input:checked + .toggle-slider:before {
  transform: translateX(26px);
}

input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.game-iframe-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin: var(--spacing-lg) 0;
  background: #000;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.game-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.game-notice {
  background: var(--color-warning);
  color: white;
  padding: var(--spacing-md);
  border-radius: var(--border-radius);
  margin: var(--spacing-md) 0;
  text-align: center;
  font-weight: 600;
}

.content-section {
  background: white;
  padding: var(--spacing-lg);
  border-radius: var(--border-radius);
  margin-bottom: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
}

.filter-buttons {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-lg);
  justify-content: center;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border: 2px solid var(--color-border);
  background: white;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: white;
}

.text-center {
  text-align: center;
}

.mt-lg {
  margin-top: var(--spacing-lg);
}

@media (max-width: 768px) {
  .nav ul {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    z-index: 1000;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .nav.active ul {
    display: flex;
    transform: translateX(0);
  }

  .nav.active ul li {
    opacity: 0;
    animation: fadeInUp 0.3s ease forwards;
  }

  .nav.active ul li:nth-child(1) { animation-delay: 0.1s; }
  .nav.active ul li:nth-child(2) { animation-delay: 0.2s; }
  .nav.active ul li:nth-child(3) { animation-delay: 0.3s; }
  .nav.active ul li:nth-child(4) { animation-delay: 0.4s; }
  .nav.active ul li:nth-child(5) { animation-delay: 0.5s; }

  .nav ul li a {
    font-size: 1.25rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 255, 0, 0.1);
    display: block;
    width: 100%;
  }

  .mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .header.dark .mobile-menu-btn {
    color: #ffffff;
  }

  .header.dark .nav.active ul {
    background: rgba(10, 10, 10, 0.98);
  }

  .header.dark .nav.active ul li a {
    color: #ffffff;
    border-bottom-color: rgba(0, 255, 0, 0.2);
  }

  .header.dark .nav.active ul li a:hover {
    color: #00ff00;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .games-grid-dark {
    grid-template-columns: 1fr;
  }

  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .help-logos {
    justify-content: center;
  }

  .trust-items {
    flex-direction: column;
    align-items: center;
  }

  .hero-dark {
    padding: 3rem 0;
  }

  .hero-dark h1 {
    font-size: 2rem;
  }

  .hero-dark p {
    font-size: 1rem;
  }

  .section-dark {
    padding: 3rem 0;
  }

  .container {
    padding: 0 var(--spacing-sm);
  }

  .age-banner {
    font-size: 0.75rem;
    padding: 0.4rem 0;
    flex-wrap: wrap;
  }

  .age-banner .age-badge {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dark Theme Styles */
body.dark-theme {
  background-color: #0a0a0a;
  color: #ffffff;
}

body.dark-theme h1,
body.dark-theme h2,
body.dark-theme h3,
body.dark-theme h4,
body.dark-theme h5,
body.dark-theme h6 {
  color: #ffffff;
}

body.dark-theme .content-section {
  background: #1a1a1a;
  color: #ffffff;
  border: 1px solid rgba(0, 255, 0, 0.2);
}

body.dark-theme .content-section h2,
body.dark-theme .content-section h3,
body.dark-theme .content-section h4 {
  color: #ffffff;
}

body.dark-theme .content-section p {
  color: rgba(255, 255, 255, 0.9);
}

body.dark-theme .content-section a {
  color: #00ff00;
}

body.dark-theme .content-section a:hover {
  color: #00cc00;
}

.age-banner {
  background: #00ff00;
  color: #000000;
  padding: 0.5rem 0;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1000;
}

.age-banner .age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #ff0000;
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
}

.header.dark {
  background: #0a0a0a;
  border-bottom: 1px solid rgba(0, 255, 0, 0.2);
  box-shadow: none;
}

.header.dark .logo {
  color: #ffffff;
}

.header.dark .logo svg {
  color: #00ff00;
}

.header.dark .nav a {
  color: #ffffff;
}

.header.dark .nav a:hover,
.header.dark .nav a.active {
  color: #00ff00;
}

.header.dark .nav a::after {
  background: #00ff00;
}

.header.dark .mobile-menu-btn {
  color: #ffffff;
}

.header.dark .nav.active ul {
  background: #1a1a1a;
  border: 1px solid rgba(0, 255, 0, 0.2);
}

.btn-green {
  background: linear-gradient(135deg, #00ff00, #00cc00);
  color: #000000;
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 255, 0, 0.3);
  text-decoration: none;
  display: inline-block;
}

.btn-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 255, 0, 0.5);
  background: linear-gradient(135deg, #00cc00, #00ff00);
  color: #000000;
}

.hero-dark {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(10, 10, 10, 0.9)),
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="jungle" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23003300;stop-opacity:1" /><stop offset="100%" style="stop-color:%23000000;stop-opacity:1" /></linearGradient></defs><rect fill="url(%23jungle)" width="1200" height="600"/><path d="M100 500 Q200 300 300 400 T500 350 T700 450 T900 300 T1100 400" stroke="%23006600" stroke-width="3" fill="none" opacity="0.3"/><circle cx="200" cy="150" r="40" fill="%23006600" opacity="0.2"/><circle cx="800" cy="200" r="60" fill="%23006600" opacity="0.15"/><rect x="400" y="300" width="200" height="150" fill="%23333333" opacity="0.2" rx="10"/></svg>');
  background-size: cover;
  background-position: center;
  padding: 6rem 0;
  text-align: center;
  color: #ffffff;
  position: relative;
}

.hero-dark h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-dark p {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-dark {
  background: #0a0a0a;
  padding: 5rem 0;
  color: #ffffff;
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: #ffffff;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.9);
}

.games-grid-dark {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.game-card-dark {
  background: #1a1a1a;
  border: 2px solid rgba(0, 255, 0, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.game-card-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.1), transparent);
  transition: left 0.5s ease;
}

.game-card-dark:hover::before {
  left: 100%;
}

.game-card-dark:hover {
  border-color: #00ff00;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 0, 0.3);
}

.game-card-dark h3 {
  color: #ffffff;
}

.footer-dark {
  background: #0a0a0a;
  color: #ffffff;
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(0, 255, 0, 0.2);
}

.footer-dark .logo {
  color: #ffffff;
}

.footer-dark .logo svg {
  color: #00ff00;
}

.footer-dark a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-dark a:hover {
  color: #00ff00;
}

.footer-dark h4 {
  color: #ffffff;
}

.footer-bottom-dark {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-dark p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-bottom-dark .legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-dark .legal-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

body.dark-theme .game-card {
  background: #1a1a1a;
  border: 2px solid rgba(0, 255, 0, 0.2);
  color: #ffffff;
}

body.dark-theme .game-card-title {
  color: #ffffff;
}

body.dark-theme .game-card-description {
  color: rgba(255, 255, 255, 0.8);
}

body.dark-theme .filter-btn {
  background: #1a1a1a;
  border-color: rgba(0, 255, 0, 0.3);
  color: #ffffff;
}

body.dark-theme .filter-btn:hover,
body.dark-theme .filter-btn.active {
  border-color: #00ff00;
  background: #00ff00;
  color: #000000;
}

body.dark-theme .tag {
  background: rgba(0, 255, 0, 0.2);
  color: #00ff00;
}

@media print {
  .header,
  .footer,
  .age-gate-overlay,
  .cookie-banner,
  .cookie-modal {
    display: none;
  }

  body {
    background: white;
    color: black;
  }
}
