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

  .millionz-page {
    --accent-glow: 0 10px 40px rgba(0,0,0,0.35);
    color: var(--fg);
    padding: clamp(2rem, 5vw, 4rem) 0;
  }

  .millionz-page * { box-sizing: border-box; }

  /* HERO */
  .hero-wrapper {
    position: relative;
    border-radius: var(--rad);
    padding: clamp(2rem, 5vw, 4.5rem) clamp(1.25rem, 4vw, 3rem);
    background: var(--grad, linear-gradient(135deg, var(--c1), var(--c2)));
    overflow: hidden;
    box-shadow: var(--shadow, var(--accent-glow));
    margin-bottom: clamp(2rem, 5vw, 4rem);
  }

  .hero-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15), transparent 50%),
      radial-gradient(circle at 10% 90%, rgba(0,0,0,0.25), transparent 45%);
    pointer-events: none;
  }

  .hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
  }

  @media (min-width: 1024px) {
    .hero-inner { grid-template-columns: 1.4fr 1fr; }
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 999px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
  }

  .hero-badge .pulse {
    width: 8px; height: 8px;
    background: var(--c3, #ff4757);
    border-radius: 50%;
    box-shadow: 0 0 0 0 var(--c3, #ff4757);
    animation: pulse 1.8s infinite;
  }

  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,71,87,0.7); }
    70% { box-shadow: 0 0 0 12px rgba(255,71,87,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,71,87,0); }
  }

  .main-headline {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    font-weight: 800;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
  }

  .hero-lead {
    color: rgba(255,255,255,0.92);
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.6;
    max-width: 60ch;
    margin: 0 0 1.75rem 0;
  }

  .hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
  }

  .action-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    background: #fff;
    color: var(--c1, #1a1a2e);
    text-decoration: none;
    font-weight: 700;
    border-radius: var(--rad-sm, 12px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    font-size: 1.05rem;
  }
  .action-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.35);
  }
  .action-button .arrow { transition: transform 0.25s ease; }
  .action-button:hover .arrow { transform: translateX(4px); }

  .trust-strip {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.18);
  }
  .trust-item {
    color: rgba(255,255,255,0.95);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
  .trust-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
  }
  .trust-label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.85;
  }

  .hero-promo {
    position: relative;
    padding: 1.75rem;
    border-radius: var(--rad-sm, 16px);
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
  }
  .hero-promo h3 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.85;
    font-weight: 600;
  }
  .hero-promo .amount {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.4rem;
    background: linear-gradient(135deg, #fff, var(--c4, #ffd700));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .hero-promo .spins { font-size: 1.1rem; font-weight: 600; margin-bottom: 1.2rem; }

  .countdown {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
  }
  .countdown-unit {
    flex: 1;
    background: rgba(255,255,255,0.1);
    padding: 0.6rem 0.4rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.15);
  }
  .countdown-unit span {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
  }
  .countdown-unit small {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.75;
  }

  /* SECTION HEADINGS */
  .section-heading {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 800;
    margin: 0 0 0.6rem;
    color: var(--fg);
    letter-spacing: -0.01em;
  }
  .section-intro {
    color: var(--muted);
    max-width: 70ch;
    line-height: 1.65;
    margin: 0 0 2rem;
  }
  .section-block {
    margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  }

  /* TABLE */
  .table-responsive {
    overflow-x: auto;
    border-radius: var(--rad-sm, 14px);
    box-shadow: var(--shadow, 0 10px 30px rgba(0,0,0,0.08));
    border: 1px solid var(--border);
  }
  .catalog-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
    min-width: 600px;
  }
  .catalog-table thead {
    background: var(--grad, linear-gradient(135deg, var(--c1), var(--c2)));
  }
  .catalog-table thead th {
    color: #fff;
    text-align: left;
    padding: 1.1rem 1.25rem;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
  }
  .catalog-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
    color: var(--fg);
  }
  .catalog-table tr:last-child td { border-bottom: none; }
  .catalog-table tbody tr {
    transition: background 0.2s;
  }
  .catalog-table tbody tr:hover {
    background: color-mix(in srgb, var(--c1) 6%, transparent);
  }
  .catalog-table .num-badge {
    display: inline-block;
    padding: 0.3rem 0.7rem;
    background: var(--grad2, var(--grad));
    color: #fff;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
  }

  /* CATEGORY CARDS */
  .cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  @media (min-width: 768px) {
    .cards-grid { grid-template-columns: repeat(3, 1fr); }
  }

  .game-card {
    position: relative;
    padding: 2rem 1.75rem;
    border-radius: var(--rad-sm, 16px);
    background: var(--card);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
    overflow: hidden;
  }
  .game-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--grad, linear-gradient(90deg, var(--c1), var(--c3)));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  .game-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
    border-color: var(--c1);
  }
  .game-card:hover::before { transform: scaleX(1); }

  .game-card .icon-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--grad, linear-gradient(135deg, var(--c1), var(--c2)));
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  .game-card h3 {
    margin: 0 0 0.7rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--fg);
  }
  .game-card p {
    margin: 0;
    line-height: 1.65;
    color: var(--muted);
  }

  /* BONUS HIGHLIGHT */
  .bonus-highlight {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: var(--rad);
    background: linear-gradient(135deg, var(--c1,#1a1a2e), var(--c2,#16213e));
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  .bonus-highlight::after {
    content: "";
    position: absolute;
    top: 0; right: 0; width: 50%; height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(255,215,0,0.18), transparent 60%);
    pointer-events: none;
  }
  @media (min-width: 768px) {
    .bonus-highlight { grid-template-columns: 1.3fr 1fr; align-items: center; }
  }
  .bonus-highlight h2 { color: #fff; margin-top: 0; }
  .bonus-highlight p { line-height: 1.7; color: rgba(255,255,255,0.9); }
  .bonus-highlight strong { color: var(--c4,#ffd700); font-size: 1.15em; }
  .bonus-cta {
    background: linear-gradient(135deg, var(--c4, #ffd700), var(--c3, #ff8c00));
    color: #1a1a2e;
  }

  /* MOBILE LIST */
  .mobile-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
  }
  @media (min-width: 1024px) {
    .mobile-block { grid-template-columns: 1fr 1fr; }
  }
  .feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: grid;
    gap: 0.85rem;
  }
  .feature-list li {
    padding: 1rem 1.25rem;
    background: var(--card);
    border-radius: var(--rad-sm, 12px);
    border-left: 4px solid var(--c1);
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    font-weight: 500;
  }

  .demo-card {
    padding: 2.25rem;
    border-radius: var(--rad-sm, 16px);
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow, 0 8px 24px rgba(0,0,0,0.08));
  }
  .demo-card h3 {
    margin-top: 0;
    color: var(--c1);
    font-size: 1.3rem;
  }

  /* FAQ ACCORDION */
  .faq-list {
    display: grid;
    gap: 1rem;
  }
  .faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--rad-sm, 12px);
    overflow: hidden;
    transition: box-shadow 0.3s, border-color 0.3s;
  }
  .faq-item[open] {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--c1);
  }
  .faq-item summary {
    cursor: pointer;
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--fg);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--c1);
    transition: transform 0.3s;
    font-weight: 300;
  }
  .faq-item[open] summary::after { transform: rotate(45deg); }
  .faq-item .answer {
    padding: 0 1.5rem 1.4rem;
    color: var(--muted);
    line-height: 1.7;
  }

  /* FINAL CTA */
  .final-cta {
    margin-top: clamp(2rem, 5vw, 4rem);
    text-align: center;
    padding: clamp(2.5rem, 5vw, 4rem) 1.5rem;
    border-radius: var(--rad);
    background: var(--grad2, var(--grad, linear-gradient(135deg, var(--c2), var(--c1))));
    color: #fff;
    box-shadow: var(--shadow);
  }
  .final-cta h2 { color: #fff; margin-top: 0; font-size: clamp(1.6rem,3vw,2.2rem); }
  .final-cta p { max-width: 55ch; margin: 0.5rem auto 1.75rem; line-height: 1.6; opacity: 0.95; }