:root {
  --bg: #ffffff;
  --bg-header-start: #611051;
  --bg-header-end: #e52817;
  --bg-footer: #ffffff;
  --bg-card: #ffffff;
  --bg-surf: #f8f9fa;
  --bg-surf2: #edf2f7;
  --accent: #ff0000;
  --accent2: #ff5722;
  --accent-gold: #ffcc00;
  --success: #10b981;
  --text: #2d3748;
  --text-light: #ffffff;
  --text2: #4a5568;
  --border: #e2e8f0;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color .2s ease;
}

a:hover {
  color: var(--accent2);
}

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

/* HEADER */
.site-header {
  background: linear-gradient(90deg, var(--bg-header-start) 0%, var(--bg-header-end) 100%);
  padding: 14px 0;
  box-shadow: var(--shadow);
}

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

.logo-link {
  display: inline-block;
  flex-shrink: 0;
}

.logo-img {
  height: 40px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  color: var(--text-light);
  font-weight: 500;
  font-size: 15px;
  padding: 6px 4px;
  border-bottom: 2px solid transparent;
  transition: border-color .2s ease, color .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent-gold);
  border-bottom-color: var(--accent-gold);
}

.play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--text-light) !important;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .5px;
  box-shadow: 0 4px 14px rgba(255, 0, 0, .35);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  flex-shrink: 0;
  white-space: nowrap;
}

.play-btn:hover {
  background: var(--accent2);
  color: var(--text-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 87, 34, .45);
}

.burger-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 0;
  position: relative;
  flex-shrink: 0;
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--text-light);
  border-radius: 2px;
  position: absolute;
  left: 8px;
  transition: all .25s ease;
}

.burger-btn span:nth-child(1) { top: 12px; }
.burger-btn span:nth-child(2) { top: 19px; }
.burger-btn span:nth-child(3) { top: 26px; }

.burger-btn.open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

.mobile-menu {
  display: none;
  background: linear-gradient(180deg, var(--bg-header-start), var(--bg-header-end));
  padding: 10px 0 18px;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--text-light);
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: 15px;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

/* HERO / MAIN CONTENT */
main {
  padding: 40px 0 60px;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.hero-text h1 {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text);
  font-weight: 800;
}

.hero-text p {
  font-size: 17px;
  color: var(--text2);
  margin-bottom: 24px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--text-light) !important;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: .5px;
  box-shadow: 0 6px 20px rgba(255, 0, 0, .3);
  transition: transform .15s ease, background .2s ease;
}

.hero-cta:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  color: var(--text-light) !important;
}

.hero-image img {
  border-radius: 14px;
  box-shadow: var(--shadow);
}

h1 {
  font-size: 32px;
  line-height: 1.25;
  margin-bottom: 18px;
  font-weight: 800;
  color: var(--text);
}

h2 {
  font-size: 26px;
  line-height: 1.3;
  margin: 36px 0 14px;
  font-weight: 700;
  color: var(--text);
}

h3 {
  font-size: 20px;
  line-height: 1.35;
  margin: 26px 0 10px;
  font-weight: 700;
  color: var(--text);
}

p {
  margin-bottom: 14px;
  color: var(--text2);
}

ul, ol {
  margin: 12px 0 18px 24px;
  color: var(--text2);
}

ul li, ol li {
  margin-bottom: 6px;
}

.content-section img {
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin: 20px 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 40px 0;
}

.two-col.reverse {
  grid-template-columns: 1fr 1.2fr;
}

.two-col.reverse .col-img { order: -1; }

/* TABLES */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
  background: var(--bg-card);
}

table th,
table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text);
}

table th {
  background: var(--bg-surf);
  font-weight: 700;
  color: var(--text);
}

table tr:last-child td {
  border-bottom: none;
}

table tr:hover td {
  background: var(--bg-surf2);
}

/* CARDS / HIGHLIGHT BOXES */
.highlight-box {
  background: var(--bg-surf);
  border-left: 4px solid var(--accent);
  padding: 18px 20px;
  border-radius: 8px;
  margin: 20px 0;
}

.highlight-box p:last-child { margin-bottom: 0; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 20px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.card h3 {
  margin-top: 0;
  color: var(--accent);
  font-size: 18px;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, var(--bg-header-start), var(--bg-header-end));
  color: var(--text-light);
  padding: 40px 30px;
  border-radius: 14px;
  text-align: center;
  margin: 40px 0;
}

.cta-section h2 {
  color: var(--text-light);
  margin-top: 0;
}

.cta-section p {
  color: rgba(255,255,255,.9);
  font-size: 17px;
  margin-bottom: 24px;
}

.cta-section .hero-cta {
  background: var(--accent-gold);
  color: #3d1f00 !important;
  box-shadow: 0 6px 20px rgba(255, 204, 0, .35);
}

.cta-section .hero-cta:hover {
  background: #ffdb4a;
  color: #3d1f00 !important;
}

/* FAQ */
.faq-list {
  margin: 20px 0;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 12px;
  background: var(--bg-card);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  position: relative;
  padding-right: 46px;
  font-size: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--accent);
  font-weight: 700;
  transition: transform .25s ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item .faq-answer {
  padding: 0 20px 18px;
  color: var(--text2);
}

/* FOOTER */
.site-footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border);
  padding: 36px 0 20px;
  margin-top: 40px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: center;
  margin-bottom: 20px;
}

.footer-nav a {
  color: var(--text2);
  font-size: 14px;
  padding: 4px 0;
}

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

.footer-disclaimer {
  font-size: 13px;
  color: var(--text2);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 14px;
  line-height: 1.55;
}

.footer-copyright {
  text-align: center;
  font-size: 13px;
  color: var(--text2);
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.age-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--text-light);
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 12px;
  margin-right: 6px;
}

/* 404 */
.error-page {
  text-align: center;
  padding: 60px 20px;
}

.error-code {
  font-size: 120px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(90deg, var(--bg-header-start), var(--bg-header-end));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}

.error-page h1 {
  font-size: 28px;
  margin-bottom: 12px;
}

.error-page p {
  font-size: 17px;
  margin-bottom: 26px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* MOBILE */
@media (max-width: 900px) {
  .hero,
  .two-col,
  .two-col.reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .two-col.reverse .col-img { order: 0; }

  .hero-text h1 { font-size: 28px; }

  h1 { font-size: 26px; }
  h2 { font-size: 22px; }
  h3 { font-size: 18px; }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .burger-btn {
    display: block;
  }

  .header-inner {
    justify-content: space-between;
    gap: 12px;
  }

  .play-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .logo-img { height: 34px; }

  main { padding: 26px 0 40px; }

  .container { padding: 0 16px; }

  .cta-section {
    padding: 30px 20px;
  }

  .error-code { font-size: 90px; }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  .hero-text h1 { font-size: 24px; }
  h1 { font-size: 22px; }
  h2 { font-size: 20px; }
  .play-btn { padding: 7px 12px; font-size: 12px; }
  .logo-img { height: 30px; }
}
