:root {
  --brand-primary: #00a651;
  --brand-primary-dark: #007a3d;
  --brand-secondary: #1a1a2e;
  --brand-accent: #f5c518;
  --brand-light: #f4f7f4;
  --text-dark: #1a1a1a;
  --text-mid: #444;
  --text-light: #777;
  --white: #ffffff;
  --border: #e0e6e0;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --transition: 0.25s ease;
  --font-main: 'Segoe UI', Arial, Helvetica, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--brand-light);
}

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

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  color: var(--brand-primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--brand-primary-dark);
  text-decoration: underline;
}

ul {
  list-style: none;
}

.site-header {
  background: var(--brand-secondary);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: default;
}

.logo-icon {
  background: var(--brand-primary);
  color: var(--white);
  font-weight: 900;
  font-size: 1.2rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  letter-spacing: -1px;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.logo-text strong {
  color: var(--brand-accent);
  font-weight: 800;
}

.main-nav ul {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.main-nav ul li a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}

.main-nav ul li a:hover {
  background: var(--brand-primary);
  color: var(--white);
  text-decoration: none;
}

.bonus-banner {
  background: linear-gradient(135deg, var(--brand-secondary) 0%, #0d2b0d 60%, var(--brand-primary-dark) 100%);
  border-bottom: 3px solid var(--brand-primary);
  padding: 28px 0;
}

.mid-banner {
  margin: 48px 0;
  border-radius: var(--radius);
  border: 3px solid var(--brand-accent);
}

.banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.banner-tag {
  display: inline-block;
  background: var(--brand-accent);
  color: var(--brand-secondary);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.banner-headline {
  font-size: 1.35rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
}

.banner-headline strong {
  color: var(--brand-accent);
}

.banner-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

.btn {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--brand-accent);
  color: var(--brand-secondary);
}

.btn-primary:hover {
  background: #e6b800;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,197,24,0.4);
}

.btn-secondary {
  background: var(--brand-primary);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--brand-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,166,81,0.35);
}

.btn-large {
  font-size: 1.15rem;
  padding: 18px 40px;
}

.main-content {
  padding: 48px 20px;
}

h1 {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--brand-secondary);
  line-height: 1.15;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 16px;
}

h1::after {
  content: '';
  display: block;
  width: 70px;
  height: 5px;
  background: var(--brand-primary);
  border-radius: 3px;
  margin-top: 12px;
}

.intro-text {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 820px;
  margin-bottom: 48px;
  line-height: 1.8;
}

section {
  margin-bottom: 56px;
}

h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--brand-secondary);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
  line-height: 1.25;
}

h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-primary-dark);
  margin: 24px 0 10px;
}

p {
  margin-bottom: 16px;
  color: var(--text-mid);
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 24px 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-table {
  width: 100%;
  min-width: 420px;
  border-collapse: collapse;
  background: var(--white);
}

.info-table thead {
  background: var(--brand-secondary);
  color: var(--white);
}

.info-table thead th {
  padding: 14px 18px;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.info-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.info-table tbody tr:last-child {
  border-bottom: none;
}

.info-table tbody tr:hover {
  background: #f0faf4;
}

.info-table tbody td {
  padding: 12px 18px;
  font-size: 0.95rem;
  color: var(--text-mid);
}

.info-table tbody td:first-child {
  font-weight: 600;
  color: var(--text-dark);
}

.promo-cards,
.game-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 28px;
}

.promo-card,
.game-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.promo-card:hover,
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.13);
}

.promo-icon,
.game-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
  line-height: 1;
}

.promo-card h3,
.game-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-secondary);
  margin: 0 0 10px;
}

.promo-card p,
.game-card p {
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.promo-card .btn {
  width: 100%;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}

.pros-box,
.cons-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.pros-box {
  border-top: 5px solid var(--brand-primary);
}

.cons-box {
  border-top: 5px solid #e74c3c;
}

.pros-box h3 {
  color: var(--brand-primary-dark);
}

.cons-box h3 {
  color: #c0392b;
}

.pros-box ul,
.cons-box ul {
  list-style: none;
  margin-top: 10px;
}

.pros-box ul li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}

.pros-box ul li:last-child,
.cons-box ul li:last-child {
  border-bottom: none;
}

.pros-box ul li::before {
  content: '✓';
  color: var(--brand-primary);
  font-weight: 800;
  position: absolute;
  left: 0;
  top: 6px;
}

.cons-box ul li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}

.cons-box ul li::before {
  content: '✗';
  color: #e74c3c;
  font-weight: 800;
  position: absolute;
  left: 0;
  top: 6px;
}

.faq-list {
  margin-top: 24px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-toggle {
  display: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-secondary);
  cursor: pointer;
  user-select: none;
  transition: background var(--transition);
}

.faq-question:hover {
  background: #f0faf4;
}

.faq-arrow {
  font-size: 0.8rem;
  color: var(--brand-primary);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-toggle:checked + .faq-question .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 22px;
}

.faq-toggle:checked ~ .faq-answer {
  max-height: 500px;
  padding: 0 22px 18px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 0;
  line-height: 1.7;
}

.cta-center {
  text-align: center;
  margin: 32px 0 8px;
}

.site-footer {
  background: var(--brand-secondary);
  color: rgba(255,255,255,0.7);
  padding: 40px 0 24px;
  margin-top: 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo .logo-text {
  font-size: 1.1rem;
}

.footer-disclaimer {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  max-width: 900px;
  margin-bottom: 10px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  flex-wrap: wrap;
}

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

.age-badge {
  background: var(--brand-primary);
  color: var(--white) !important;
  font-weight: 900;
  font-size: 0.9rem !important;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

@media (min-width: 600px) {
  .promo-cards,
  .game-cards {
    grid-template-columns: 1fr 1fr;
  }

  .pros-cons-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .banner-inner {
    flex-wrap: nowrap;
  }

  .banner-headline {
    font-size: 1.5rem;
  }
}

@media (max-width: 599px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .main-nav ul {
    gap: 4px;
  }

  .main-nav ul li a {
    font-size: 0.82rem;
    padding: 5px 9px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .banner-headline {
    font-size: 1.15rem;
  }
}