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

  :root {
    --color-1: #0a0e1a;
    --color-2: #111827;
    --color-3: #1e2a45;
    --color-4: #f59e0b;
    --color-5: #fbbf24;
    --color-6: #ffffff;
    --color-7: #94a3b8;
    --color-8: #22d3ee;
    --color-9: #1a2540;
    --color-10: #0f172a;
    --color-11: #f97316;
    --color-12: #16213e;
    --space-1: 0.5rem;
    --space-2: 1rem;
    --space-3: 1.5rem;
    --space-4: 2rem;
    --space-5: 3rem;
    --space-6: 5rem;
    --radius-1: 8px;
    --radius-2: 16px;
    --radius-3: 24px;
    --shadow-1: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-2: 0 8px 40px rgba(0,0,0,0.6);
    --shadow-3: 0 20px 60px rgba(0,0,0,0.8);
    --font-1: 'Segoe UI', system-ui, -apple-system, sans-serif;
  }

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

  .cm-page {
    font-family: var(--font-1);
    background: var(--color-1);
    color: var(--color-6);
    line-height: 1.7;
  }

  /* HERO */
  .cm-hero {
    position: relative;
    padding: var(--space-6) var(--space-4) var(--space-5);
    background: linear-gradient(135deg, var(--color-10) 0%, var(--color-3) 50%, var(--color-12) 100%);
    text-align: center;
    overflow: hidden;
  }

  .cm-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(245,158,11,0.15) 0%, transparent 70%);
    pointer-events: none;
  }

  .cm-hero h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--color-6) 0%, var(--color-5) 60%, var(--color-4) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-3);
    position: relative;
    z-index: 1;
  }

  .cm-hero-lead {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--color-7);
    max-width: 680px;
    margin: 0 auto var(--space-4);
    position: relative;
    z-index: 1;
  }

  .cm-stat-row {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: var(--space-4);
    position: relative;
    z-index: 1;
  }

  .cm-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .cm-stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-4);
    line-height: 1;
  }

  .cm-stat-label {
    font-size: 0.78rem;
    color: var(--color-7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .cm-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    align-self: center;
  }

  .btn-primary-cta {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background: linear-gradient(135deg, var(--color-4), var(--color-11));
    color: var(--color-1);
    font-weight: 800;
    font-size: 1rem;
    border-radius: var(--radius-2);
    text-decoration: none;
    box-shadow: 0 0 30px rgba(245,158,11,0.4), var(--shadow-1);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    z-index: 1;
    letter-spacing: 0.03em;
  }

  .btn-primary-cta:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 0 50px rgba(245,158,11,0.6), var(--shadow-2);
  }

  /* SECTION BASE */
  .cm-section {
    padding: var(--space-5) var(--space-4);
  }

  .cm-section-alt {
    background: var(--color-2);
  }

  .cm-section-dark {
    background: var(--color-10);
  }

  .section-heading {
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--color-6);
    margin-bottom: var(--space-2);
  }

  .section-intro {
    color: var(--color-7);
    font-size: 1rem;
    margin-bottom: var(--space-4);
    max-width: 700px;
  }

  .glow-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-4), var(--color-8));
    border-radius: 2px;
    margin-bottom: var(--space-3);
  }

  /* GAME CARDS GRID */
  .cards-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-3);
  }

  .cm-game-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    padding: var(--space-3);
    background: linear-gradient(145deg, var(--color-3), var(--color-9));
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-2);
    box-shadow: var(--shadow-1);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  }

  .cm-game-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2);
    border-color: rgba(245,158,11,0.3);
  }

  .cm-game-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(34,211,238,0.1));
    border-radius: var(--radius-1);
    font-size: 1.6rem;
    flex-shrink: 0;
  }

  .cm-game-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-5);
    margin-bottom: 4px;
  }

  .cm-game-card p {
    font-size: 0.9rem;
    color: var(--color-7);
    line-height: 1.6;
  }

  .cm-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 99px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(245,158,11,0.15);
    color: var(--color-4);
    border: 1px solid rgba(245,158,11,0.3);
    width: fit-content;
  }

  .cm-badge-cyan {
    background: rgba(34,211,238,0.1);
    color: var(--color-8);
    border-color: rgba(34,211,238,0.3);
  }

  /* TIMELINE STEPS */
  .cm-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 720px;
    margin: 0 auto;
  }

  .cm-step {
    display: flex;
    gap: var(--space-3);
    padding-bottom: var(--space-3);
    position: relative;
  }

  .cm-step-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
  }

  .cm-step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-4), var(--color-11));
    color: var(--color-1);
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(245,158,11,0.3);
  }

  .cm-step-line {
    flex: 1;
    width: 2px;
    background: linear-gradient(180deg, rgba(245,158,11,0.4), rgba(245,158,11,0.05));
    margin-top: 6px;
  }

  .cm-step:last-child .cm-step-line { display: none; }

  .cm-step-content {
    padding-top: 8px;
    padding-bottom: var(--space-2);
  }

  .cm-step-content strong {
    display: block;
    font-size: 1rem;
    color: var(--color-6);
    margin-bottom: 4px;
    font-weight: 700;
  }

  .cm-step-content span {
    font-size: 0.9rem;
    color: var(--color-7);
  }

  /* HIGHLIGHT BOXES */
  .cm-highlight-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-3);
  }

  .highlight-box {
    padding: var(--space-3);
    background: linear-gradient(145deg, var(--color-3), var(--color-9));
    border: 1px solid rgba(34,211,238,0.15);
    border-radius: var(--radius-2);
    box-shadow: var(--shadow-1);
    transition: transform 0.25s;
  }

  .highlight-box:hover { transform: translateY(-3px); }

  .highlight-box h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-8);
    margin-bottom: var(--space-1);
  }

  .highlight-box p {
    font-size: 0.88rem;
    color: var(--color-7);
    line-height: 1.6;
  }

  /* ACCORDION */
  .accordion-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .cm-accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-3) 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--color-6);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-1);
    gap: var(--space-2);
    transition: color 0.2s;
  }

  .cm-accordion-trigger:hover { color: var(--color-4); }

  .cm-accordion-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(245,158,11,0.1);
    border: 1px solid rgba(245,158,11,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--color-4);
    flex-shrink: 0;
    transition: transform 0.3s;
    line-height: 1;
  }

  .accordion-item.open .cm-accordion-icon { transform: rotate(45deg); }

  .accordion-body {
    display: none;
    padding-bottom: var(--space-3);
    color: var(--color-7);
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .accordion-item.open .accordion-body { display: block; }

  /* TRUST ROW */
  .trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    align-items: center;
    justify-content: center;
    padding: var(--space-3);
    background: linear-gradient(135deg, rgba(245,158,11,0.06), rgba(34,211,238,0.04));
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-2);
  }

  .trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255,255,255,0.05);
    border-radius: 99px;
    font-size: 0.82rem;
    color: var(--color-7);
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.08);
  }

  .trust-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-4);
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(245,158,11,0.6);
  }

  .trust-badge-dot.cyan { background: var(--color-8); box-shadow: 0 0 8px rgba(34,211,238,0.6); }
  .trust-badge-dot.green { background: #22c55e; box-shadow: 0 0 8px rgba(34,197,94,0.6); }

  /* TABLE */
  .table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  .feature-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
  }

  .feature-table thead tr {
    background: linear-gradient(135deg, var(--color-3), var(--color-9));
  }

  .feature-table th {
    padding: var(--space-2) var(--space-3);
    text-align: left;
    font-weight: 700;
    color: var(--color-5);
    border-bottom: 2px solid rgba(245,158,11,0.3);
    white-space: nowrap;
  }

  .feature-table td {
    padding: var(--space-2) var(--space-3);
    color: var(--color-7);
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .feature-table tbody tr:hover td {
    background: rgba(255,255,255,0.03);
    color: var(--color-6);
  }

  .feature-table .check { color: #22c55e; font-weight: 700; }

  /* CTA SECTION */
  .cm-cta-section {
    padding: var(--space-5) var(--space-4);
    text-align: center;
    background: linear-gradient(135deg, var(--color-10), var(--color-3), var(--color-12));
    position: relative;
    overflow: hidden;
  }

  .cm-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(245,158,11,0.12) 0%, transparent 65%);
    pointer-events: none;
  }

  .cm-cta-title {
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--color-6);
    margin-bottom: var(--space-2);
    position: relative;
    z-index: 1;
  }

  .cm-cta-sub {
    color: var(--color-7);
    margin-bottom: var(--space-4);
    font-size: 1rem;
    position: relative;
    z-index: 1;
  }

  .btn-secondary-cta {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--color-4);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-2);
    text-decoration: none;
    border: 2px solid var(--color-4);
    transition: background 0.2s, color 0.2s;
    margin-left: var(--space-2);
    position: relative;
    z-index: 1;
  }

  .btn-secondary-cta:hover {
    background: rgba(245,158,11,0.1);
  }

  .section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245,158,11,0.3), transparent);
    margin: 0;
  }

  @media (max-width: 768px) {
    .cm-hero { padding: var(--space-5) var(--space-3) var(--space-4); }
    .cm-section { padding: var(--space-4) var(--space-3); }
    .cm-stat-divider { display: none; }
    .cards-grid-2 { grid-template-columns: 1fr; }
    .cm-highlight-row { grid-template-columns: 1fr 1fr; }
    .btn-secondary-cta { margin-left: 0; margin-top: var(--space-2); display: block; text-align: center; }
  }

  @media (max-width: 480px) {
    .cm-highlight-row { grid-template-columns: 1fr; }
    .cm-stat-row { gap: var(--space-3); }
  }