/* === BASE STYLES === */:root {
      --accent: #c0a020;
      --accentLight: #f0c840;
      --accentGlow: rgba(192, 160, 32, 0.4);
      --primary: #1a0a2e;
      --primaryDark: #0d0518;
      --surface: #1e1035;
      --surfaceCard: #231240;
      --surfaceElevated: #2a1650;
      --text-primary: #f0e8ff;
      --text-secondary: #b89fd4;
      --text-muted: #7a6a9a;
      --border-subtle: rgba(192, 160, 32, 0.2);
      --border-accent: rgba(192, 160, 32, 0.5);
      --shadow-card: 0 8px 32px rgba(0,0,0,0.5);
      --shadow-glow: 0 0 24px rgba(192, 160, 32, 0.3);
      --radius: 12px;
      --radiusLg: 20px;
    }

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

    html, body {
      overflow-x: hidden;
      max-width: 100vw;
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
      background: var(--primaryDark);
      color: var(--text-primary);
      line-height: 1.7;
      font-size: 16px;
    }

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

    h2 {
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      margin-bottom: 1.5rem;
      position: relative;
    }

    h2::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), var(--accentLight));
      margin-top: 0.5rem;
      border-radius: 2px;
    }

    h3 { font-size: clamp(1rem, 2vw, 1.3rem); margin-bottom: 0.5rem; }

    p { color: var(--text-secondary); margin-bottom: 1rem; }
    p:last-child { margin-bottom: 0; }

    a { color: var(--accentLight); text-decoration: none; transition: color 0.2s; }
    a:hover { color: #fff; }

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

    /* Buttons */
    .btnPrimary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 32px;
      background: linear-gradient(135deg, var(--accent) 0%, var(--accentLight) 100%);
      color: #0d0518;
      font-weight: 800;
      font-size: 1rem;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 20px var(--accentGlow);
      letter-spacing: 0.03em;
      white-space: nowrap;
    }

    .btnPrimary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px var(--accentGlow);
      color: #0d0518;
    }

    .btnPrimary:active { transform: translateY(0); }

    .btnOutline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 28px;
      background: transparent;
      color: var(--accentLight);
      font-weight: 700;
      font-size: 1rem;
      border: 2px solid var(--border-accent);
      border-radius: 50px;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s;
      white-space: nowrap;
    }

    .btnOutline:hover {
      background: var(--accentGlow);
      border-color: var(--accent);
      color: #fff;
    }

    /* Cards */
    .card {
      background: var(--surfaceCard);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius);
      padding: 1.5rem;
      box-shadow: var(--shadow-card);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 16px var(--accentGlow);
    }

    .card p { margin-bottom: 0.4rem; }

    /* Images */
    .content-image {
      margin: 0 0 1.5rem;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border-subtle);
    }

    .content-image img {
      display: block;
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    .content-image.wide { border-radius: var(--radiusLg); }

    /* Table */
    .table-responsive { border-radius: var(--radius); overflow: hidden; margin: 1.5rem 0; }

    .comparisonTable {
      width: 100%;
      border-collapse: collapse;
      background: var(--surfaceCard);
    }

    .comparisonTable thead {
      background: linear-gradient(135deg, #2a1650, #1a0a2e);
    }

    .comparisonTable th {
      padding: 14px 20px;
      text-align: left;
      color: var(--accentLight);
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      border-bottom: 2px solid var(--border-accent);
    }

    .comparisonTable td {
      padding: 14px 20px;
      color: var(--text-secondary);
      border-bottom: 1px solid var(--border-subtle);
    }

    .comparisonTable tbody tr:last-child td { border-bottom: none; }

    .comparisonTable tbody tr:nth-child(even) { background: rgba(42, 22, 80, 0.4); }

    .comparisonTable tbody tr:hover { background: rgba(192, 160, 32, 0.08); }

    /* Info card */
    .infoCard {
      background: linear-gradient(135deg, rgba(42, 22, 80, 0.8), rgba(26, 10, 46, 0.9));
      border: 1px solid var(--border-accent);
      border-left: 4px solid var(--accent);
      border-radius: var(--radius);
      padding: 1.5rem;
      margin: 1.5rem 0;
    }

    .infoCard p { color: var(--text-secondary); margin-bottom: 0.75rem; }
    .infoCard strong { color: var(--accentLight); }

    /* Lists */
    .stepsList {
      list-style: none;
      padding: 0;
      margin: 1rem 0 1.5rem;
    }

    .stepsList li {
      position: relative;
      padding: 8px 0 8px 28px;
      color: var(--text-secondary);
      border-bottom: 1px solid var(--border-subtle);
    }

    .stepsList li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent), var(--accentLight));
    }

    .checklist {
      list-style: none;
      padding: 0;
      margin: 0.75rem 0;
    }

    .checklist li {
      position: relative;
      padding: 6px 0 6px 26px;
      color: var(--text-secondary);
    }

    .checklist li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--accentLight);
      font-weight: 700;
    }

    .highlightList {
      list-style: none;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 1rem 0 1.5rem;
    }

    .highlightList li {
      background: var(--surfaceElevated);
      border: 1px solid var(--border-accent);
      color: var(--accentLight);
      padding: 8px 18px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.9rem;
      transition: all 0.2s;
    }

    .highlightList li:hover {
      background: var(--accentGlow);
      transform: translateY(-2px);
    }

    /* Feature DL */
    .featureList {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      margin: 1rem 0;
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius);
      overflow: hidden;
    }

    .featureList dt, .featureList dd {
      padding: 12px 20px;
      border-bottom: 1px solid var(--border-subtle);
    }

    .featureList dt {
      background: rgba(42, 22, 80, 0.5);
      color: var(--accentLight);
      font-weight: 700;
    }

    .featureList dd {
      background: var(--surfaceCard);
      color: var(--text-secondary);
      margin: 0;
    }

    .featureList dt:last-of-type,
    .featureList dd:last-of-type { border-bottom: none; }

    /* Multiplier */
    .multiplier {
      color: var(--accentLight) !important;
      font-weight: 700 !important;
      font-size: 1.1rem !important;
    }

    /* Sections spacing */
    section { padding: 60px 0; }

    section:nth-child(even) { background: rgba(26, 10, 46, 0.5); }

    /* Accordion */
    .accordionItem {
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius);
      margin-bottom: 12px;
      overflow: hidden;
      background: var(--surfaceCard);
    }

    .accordionHeader { margin: 0; }

    .accordionBtn {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 18px 24px;
      background: transparent;
      border: none;
      color: var(--text-primary);
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      text-align: left;
      transition: background 0.2s;
    }

    .accordionBtn:hover { background: rgba(192, 160, 32, 0.08); }

    .accordionBtn[aria-expanded="true"] { color: var(--accentLight); }

    .accordionBtn::after {
      content: '+';
      font-size: 1.4rem;
      color: var(--accent);
      font-weight: 300;
      flex-shrink: 0;
      margin-left: 12px;
      transition: transform 0.3s;
    }

    .accordionBtn[aria-expanded="true"]::after {
      content: '−';
    }

    .accordionBody {
      display: none;
      padding: 0 24px 20px;
    }

    .accordionBody.show { display: block; }
    .accordionBody p { color: var(--text-secondary); }

    /* Game card */
    .gameCard { padding: 0; overflow: hidden; }
    .gameCard h3 {
      padding: 12px 14px;
      font-size: 0.9rem;
      text-align: center;
      background: rgba(26, 10, 46, 0.8);
      margin: 0;
    }
    .gameCard .content-image { margin: 0; border-radius: 0; border: none; }

    /* === LAYOUT STYLES === */
    .siteHeader {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(13, 5, 24, 0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-subtle);
      padding: 0;
    }

    .headerInner {
      display: flex;
      align-items: center;
      gap: 24px;
      padding: 14px 20px;
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
    }

    .logo a {
      text-decoration: none;
      display: block;
    }

    .logoText {
      font-size: 1.5rem;
      font-weight: 900;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, var(--accent), var(--accentLight));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 44px;
      height: 44px;
      background: transparent;
      border: 1px solid var(--border-subtle);
      border-radius: 8px;
      cursor: pointer;
      gap: 5px;
      padding: 8px;
      margin-left: auto;
    }

    .hamburgerLine {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--accentLight);
      border-radius: 2px;
      transition: all 0.3s;
    }

    .hamburger[aria-expanded="true"] .hamburgerLine:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .hamburger[aria-expanded="true"] .hamburgerLine:nth-child(2) {
      opacity: 0;
    }
    .hamburger[aria-expanded="true"] .hamburgerLine:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    header nav {
      flex: 1;
    }

    .navMenu {
      display: flex;
      align-items: center;
      gap: 8px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .navMenu a {
      color: var(--text-secondary);
      font-weight: 500;
      font-size: 0.95rem;
      padding: 8px 14px;
      border-radius: 8px;
      transition: all 0.2s;
      text-decoration: none;
      white-space: nowrap;
    }

    .navMenu a:hover {
      color: var(--accentLight);
      background: rgba(192, 160, 32, 0.1);
    }

    .headerCta {
      flex-shrink: 0;
      max-width: 200px;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .siteFooter {
      background: var(--primaryDark);
      border-top: 1px solid var(--border-subtle);
      padding: 40px 0 24px;
    }

    .footerInner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .footerNav ul {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      list-style: none;
      padding: 0;
      margin: 0 0 20px;
      justify-content: center;
    }

    .footerNav a {
      color: var(--text-muted);
      font-size: 0.875rem;
      padding: 6px 14px;
      border: 1px solid var(--border-subtle);
      border-radius: 20px;
      transition: all 0.2s;
    }

    .footerNav a:hover { color: var(--accentLight); border-color: var(--border-accent); }

    .footerDisclaimer {
      text-align: center;
      color: var(--text-muted);
      font-size: 0.8rem;
      line-height: 1.6;
      margin: 0;
    }

    @media (max-width: 767px) {
      .hamburger { display: flex; }

      .headerInner {
        flex-wrap: wrap;
        padding: 12px 16px;
      }

      .logo { flex: 1; }

      header nav {
        width: 100%;
        order: 3;
        display: none;
      }

      header nav.navOpen { display: block; }

      .navMenu {
        flex-direction: column;
        align-items: stretch;
        padding: 8px 0 12px;
        gap: 4px;
      }

      .navMenu a {
        display: block;
        padding: 12px 16px;
      }

      .headerCta {
        width: 100%;
        max-width: 100%;
        order: 4;
        margin-top: 8px;
      }

      .headerCta .btnPrimary {
        width: 100%;
        max-width: 100%;
      }
    }

    @media (min-width: 768px) and (max-width: 1023px) {
      .logoText { font-size: 1.3rem; }
    }

@media (max-width: 767px) {
      .hamburger { display: flex; }

      .headerInner {
        flex-wrap: wrap;
        padding: 12px 16px;
      }

      .logo { flex: 1; }

      header nav {
        width: 100%;
        order: 3;
        display: none;
      }

      header nav.navOpen { display: block; }

      .navMenu {
        flex-direction: column;
        align-items: stretch;
        padding: 8px 0 12px;
        gap: 4px;
      }

      .navMenu a {
        display: block;
        padding: 12px 16px;
      }

      .headerCta {
        width: 100%;
        max-width: 100%;
        order: 4;
        margin-top: 8px;
      }

      .headerCta .btnPrimary {
        width: 100%;
        max-width: 100%;
      }
    }