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

    :root {
      --bg: #0B0E14;
      --card: #151A24;
      --cyan: #00D1FF;
      --red: #FF1F44;
      --white: #FFFFFF;
      --muted: #8F9BB3;
      --border: rgba(255,255,255,0.07);
    }

    html { scroll-behavior: smooth; overflow-x: hidden; }
    section { overflow-x: clip; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--white);
      overflow-x: hidden;
    }

    /* ─── SCROLL REVEAL ───────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .reveal.revealed-in { opacity: 1; transform: translateY(0); }

    .reveal-left {
      opacity: 0;
      transform: translateX(-56px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal-left.revealed-in { opacity: 1; transform: translateX(0); }

    .reveal-right {
      opacity: 0;
      transform: translateX(56px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal-right.revealed-in { opacity: 1; transform: translateX(0); }

    .reveal-scale {
      opacity: 0;
      transform: scale(0.88) translateY(20px);
      transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34, 1.4, 0.64, 1);
    }
    .reveal-scale.revealed-in { opacity: 1; transform: scale(1) translateY(0); }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }

    /* ─── SECTIONS ABOVE FIXED BG ─────────────────── */
    section, footer { position: relative; z-index: 1; }

    /* ─── HEADER ──────────────────────────────────── */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      height: 72px;
      background: rgba(11, 14, 20, 0.85);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }

    .header-left {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      flex-shrink: 0;
    }

    .logo-text {
      font-family: 'Inter', sans-serif;
      font-size: 20px;
      font-weight: 900;
      color: var(--white);
      white-space: nowrap;
      line-height: 1;
      letter-spacing: -0.5px;
    }

    .logo-text .logo-ton {
      color: var(--cyan);
    }

    .logo-predictor {
      font-family: 'Inter', sans-serif;
      font-weight: 900;
      font-size: 15px;
      color: var(--white);
      letter-spacing: -0.5px;
    }

    /* ─── LIVE COUNTER ─────────────────────────────── */
    .live-count {
      display: inline-flex;
      align-items: center;
      gap: 1px;
    }

    .digit-slot {
      display: inline-block;
      overflow: hidden;
      height: 1.1em;
      vertical-align: middle;
      position: relative;
      width: 0.62em;
    }

    .digit-inner {
      display: flex;
      flex-direction: column;
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      line-height: 1.1em;
    }

    .digit-inner span {
      display: block;
      height: 1.1em;
      text-align: center;
    }

    .digit-sep {
      display: inline-block;
      width: 0.3em;
      text-align: center;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    nav a {
      font-size: 13.5px;
      font-weight: 600;
      color: var(--muted);
      text-decoration: none;
      padding: 6px 14px;
      border-radius: 8px;
      transition: color 0.2s, background 0.2s;
      white-space: nowrap;
    }

    nav a:hover {
      color: var(--white);
      background: rgba(255,255,255,0.06);
    }

    .header-right {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-shrink: 0;
    }

    .live-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(0, 209, 255, 0.08);
      border: 1px solid rgba(0, 209, 255, 0.2);
      border-radius: 100px;
      padding: 6px 14px;
      font-size: 13px;
      font-weight: 600;
      color: var(--cyan);
      white-space: nowrap;
    }

    .live-dot {
      width: 8px;
      height: 8px;
      background: #22C55E;
      border-radius: 50%;
      flex-shrink: 0;
      box-shadow: 0 0 6px #22C55E;
      animation: pulse-dot 2s ease-in-out infinite;
    }

    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.6; transform: scale(0.85); }
    }

    .rev-track { will-change: transform; }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: var(--cyan);
      color: #0B0E14;
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      font-weight: 800;
      padding: 10px 24px;
      border-radius: 10px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
      box-shadow: 0 0 20px rgba(0,209,255,0.25);
      white-space: nowrap;
    }

    .btn-primary:hover {
      background: #1ADAFF;
      transform: translateY(-1px);
      box-shadow: 0 0 32px rgba(0,209,255,0.45);
    }

    .btn-primary:active {
      transform: translateY(0);
    }

    /* ─── HERO ────────────────────────────────────── */
    #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 120px 80px 80px;
      position: relative;
    }

    /* background glow blobs */
    #hero::before {
      content: '';
      position: absolute;
      top: 10%;
      left: 30%;
      transform: translateX(-50%);
      width: 700px;
      height: 700px;
      background: radial-gradient(ellipse at center, rgba(0,209,255,0.1) 0%, transparent 65%);
      pointer-events: none;
    }

    #hero::after {
      content: '';
      position: absolute;
      bottom: -100px;
      right: 10%;
      width: 500px;
      height: 400px;
      background: radial-gradient(ellipse at center, rgba(255,31,68,0.08) 0%, transparent 65%);
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 64px;
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
    }

    .hero-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
    }

    .hero-visual {
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }

    /* Desktop Try Now button inside hero-visual */
    .hero-visual-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: var(--cyan);
      color: #0B0E14;
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      font-weight: 900;
      padding: 16px 48px;
      border-radius: 14px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.15s, box-shadow 0.15s;
      box-shadow: 0 0 40px rgba(0,209,255,0.35), 0 8px 32px rgba(0,0,0,0.4);
      letter-spacing: -0.3px;
    }
    .hero-visual-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 60px rgba(0,209,255,0.5), 0 12px 40px rgba(0,0,0,0.5);
    }

    /* Mobile QR hidden on desktop */
    .hero-qr-mobile { display: none !important; }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0,209,255,0.08);
      border: 1px solid rgba(0,209,255,0.2);
      border-radius: 100px;
      padding: 6px 16px;
      font-size: 12.5px;
      font-weight: 700;
      color: var(--cyan);
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 28px;
    }

    .hero-title {
      font-size: clamp(36px, 4vw, 64px);
      font-weight: 900;
      line-height: 1.08;
      letter-spacing: -2px;
      color: var(--white);
      max-width: 620px;
      margin: 0 0 24px;
    }

    .hero-title .accent-cyan {
      color: var(--cyan);
    }

    .hero-title .accent-red {
      color: var(--red);
    }

    .accuracy-pill {
      display: inline-block;
      background: linear-gradient(135deg, rgba(0,209,255,0.15), rgba(0,209,255,0.05));
      border: 1px solid rgba(0,209,255,0.3);
      border-radius: 8px;
      padding: 2px 10px;
      color: var(--cyan);
      font-size: 0.9em;
    }

    .hero-desc {
      font-size: 17px;
      font-weight: 500;
      color: var(--muted);
      max-width: 480px;
      margin: 0 0 40px;
      line-height: 1.6;
    }

    .hero-cta {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 32px;
    }

    .btn-hero {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--cyan);
      color: #0B0E14;
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      font-weight: 900;
      padding: 16px 40px;
      border-radius: 14px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.15s, box-shadow 0.15s;
      box-shadow: 0 0 40px rgba(0,209,255,0.35), 0 8px 32px rgba(0,0,0,0.4);
      letter-spacing: -0.3px;
    }

    .btn-hero:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 60px rgba(0,209,255,0.5), 0 12px 40px rgba(0,0,0,0.5);
    }

    /* ─── HERO QR CARD ────────────────────────────── */
    .hero-qr-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      background: rgba(21, 26, 36, 0.45);
      border: 1.5px solid var(--border);
      border-radius: 20px;
      padding: 20px 24px;
      backdrop-filter: blur(16px);
      text-decoration: none;
      transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    }
    .hero-qr-card:hover {
      border-color: rgba(0, 209, 255, 0.35);
      box-shadow: 0 0 24px rgba(0, 209, 255, 0.12);
      transform: translateY(-2px);
    }
    .qr-img-wrapper {
      width: 240px;
      height: 240px;
      background: #FFFFFF;
      border-radius: 12px;
      padding: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1.5px solid rgba(0, 209, 255, 0.25);
      flex-shrink: 0;
    }
    .qr-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    .qr-text {
      text-align: center;
    }
    .qr-text h4 {
      font-size: 20px;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 0;
    }

    /* stats bar */
    .hero-stats {
      display: flex;
      align-items: center;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
    }

    .stat-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 18px 40px;
      position: relative;
    }

    .stat-item + .stat-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 20%;
      height: 60%;
      width: 1px;
      background: var(--border);
    }

    .stat-value {
      font-size: 24px;
      font-weight: 900;
      color: var(--white);
      letter-spacing: -0.5px;
    }

    .stat-value .s-cyan { color: var(--cyan); }

    .stat-label {
      font-size: 12px;
      font-weight: 600;
      color: var(--muted);
      margin-top: 3px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* mines grid visual */
    .mines-preview {
      position: relative;
      z-index: 1;
      display: inline-block;
    }

    .mines-grid {
      display: grid;
      grid-template-columns: repeat(5, 72px);
      grid-template-rows: repeat(5, 72px);
      gap: 8px;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 16px;
      box-shadow: 0 0 60px rgba(0,0,0,0.5), 0 0 120px rgba(0,209,255,0.08);
    }

    .mine-cell {
      width: 72px;
      height: 72px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      font-weight: 700;
      transition: transform 0.2s;
    }

    .mine-cell.safe {
      background: linear-gradient(135deg, rgba(0,209,255,0.15), rgba(0,209,255,0.05));
      border: 1px solid rgba(0,209,255,0.25);
      color: var(--cyan);
    }

    .mine-cell.bomb {
      background: linear-gradient(135deg, rgba(255,31,68,0.18), rgba(255,31,68,0.06));
      border: 1px solid rgba(255,31,68,0.3);
      color: var(--red);
    }

    .mine-cell.hidden {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
    }

    .mine-cell.predicted {
      background: linear-gradient(135deg, rgba(0,209,255,0.25), rgba(0,209,255,0.1));
      border: 1px solid rgba(0,209,255,0.5);
      color: var(--cyan);
      box-shadow: 0 0 16px rgba(0,209,255,0.2);
      animation: predicted-pulse 2.5s ease-in-out infinite;
    }

    @keyframes predicted-pulse {
      0%, 100% { box-shadow: 0 0 16px rgba(0,209,255,0.2); }
      50% { box-shadow: 0 0 28px rgba(0,209,255,0.4); }
    }

    /* AI label */
    .ai-label {
      position: absolute;
      top: -12px;
      right: 12px;
      background: var(--cyan);
      color: #0B0E14;
      font-size: 10px;
      font-weight: 900;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 100px;
    }

    /* ─── SECTION BADGE ──────────────────────────── */
    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0,209,255,0.08);
      border: 1px solid rgba(0,209,255,0.2);
      border-radius: 100px;
      padding: 5px 16px;
      font-size: 11px;
      font-weight: 700;
      color: var(--cyan);
      letter-spacing: 0.6px;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    /* ─── PREDICTOR STEPS ────────────────────────── */
    @keyframes pred-pulse-chain {
      0%        { box-shadow: 0 0 12px rgba(0,209,255,0.2); background: rgba(0,209,255,0.14); }
      10%       { box-shadow: 0 0 30px rgba(0,209,255,0.6), 0 0 0 4px rgba(0,209,255,0.14); background: rgba(0,209,255,0.28); }
      20%, 100% { box-shadow: 0 0 12px rgba(0,209,255,0.2); background: rgba(0,209,255,0.14); }
    }

    .pstep {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 18px 20px;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,0.07);
      cursor: pointer;
      transition: all 0.25s;
      background: rgba(255,255,255,0.02);
    }
    .pstep:hover {
      background: rgba(0,209,255,0.04);
      border-color: rgba(0,209,255,0.2);
    }
    .pstep.active {
      background: rgba(0,209,255,0.06);
      border-color: rgba(0,209,255,0.35);
      box-shadow: 0 0 28px rgba(0,209,255,0.09);
    }
    .pstep-num {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      font-weight: 900;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.09);
      color: var(--muted);
      flex-shrink: 0;
      transition: all 0.25s;
    }
    .pstep.active .pstep-num {
      background: linear-gradient(135deg, var(--cyan), #0099CC);
      border-color: transparent;
      color: #0B0E14;
      box-shadow: 0 0 20px rgba(0,209,255,0.4);
    }

    /* ─── PREDICTION GRID CELLS ──────────────────── */
    .pgrid-cell {
      aspect-ratio: 1;
      border-radius: 7px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
    }
    .pgrid-cell.highlighted {
      background: rgba(0,209,255,0.14);
      border-color: rgba(0,209,255,0.45);
      box-shadow: 0 0 12px rgba(0,209,255,0.2);
      animation: pred-pulse-chain 2.5s ease-in-out infinite;
      font-weight: 900;
      color: var(--cyan);
    }

    /* ─── ADVANTAGES CARDS ───────────────────────── */
    .adv-card {
      transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    }
    .adv-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 40px rgba(0,209,255,0.07);
      border-color: rgba(0,209,255,0.25) !important;
    }

    /* ─── REVIEW CARD AVATAR ─────────────────────── */
    .rev-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: 900;
      flex-shrink: 0;
    }

    /* ─── TIER CARDS ─────────────────────────────── */
    .tier-card {
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
      cursor: default;
    }
    .tier-card-green:hover {
      transform: translateY(-6px) scale(1.02);
      border-color: rgba(0,255,136,0.85) !important;
      box-shadow: 0 0 32px rgba(0,255,136,0.35), 0 0 64px rgba(0,255,136,0.15) !important;
    }
    .tier-card-blue:hover {
      transform: translateY(-6px) scale(1.02);
      border-color: rgba(0,209,255,0.95) !important;
      box-shadow: 0 0 32px rgba(0,209,255,0.45), 0 0 72px rgba(0,209,255,0.2) !important;
    }
    .tier-card-red:hover {
      transform: translateY(-6px) scale(1.02);
      border-color: rgba(255,31,68,0.9) !important;
      box-shadow: 0 0 32px rgba(255,31,68,0.4), 0 0 64px rgba(255,31,68,0.18) !important;
    }

    /* ─── PLAN GRID ──────────────────────────────── */
    .plan-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 3px;
      background: rgba(0,0,0,0.18);
      border-radius: 10px;
      padding: 6px;
      margin-bottom: 0;
    }
    .plan-cell {
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 5px;
      aspect-ratio: 1;
      font-size: 13px;
    }
    .plan-cell-d {
      background: linear-gradient(135deg, rgba(0,209,255,0.16), rgba(0,209,255,0.05));
      border: 1px solid rgba(0,209,255,0.3);
    }
    .plan-cell-b {
      background: linear-gradient(135deg, rgba(255,31,68,0.18), rgba(255,31,68,0.06));
      border: 1px solid rgba(255,31,68,0.28);
    }

    /* ─── CALCULATOR BUTTONS ─────────────────────── */
    .calc-btn {
      font-family: 'Inter', sans-serif;
      font-weight: 800;
      font-size: 14px;
      padding: 10px 20px;
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,0.1);
      background: rgba(255,255,255,0.04);
      color: var(--muted);
      cursor: pointer;
      transition: all 0.18s;
    }
    .calc-btn:hover {
      border-color: rgba(0,209,255,0.35);
      color: var(--white);
    }
    .calc-btn.active {
      background: rgba(0,209,255,0.12);
      border-color: rgba(0,209,255,0.5);
      color: var(--cyan);
      box-shadow: 0 0 16px rgba(0,209,255,0.15);
    }

    .mines-card {
      font-family: 'Inter', sans-serif;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 14px;
      padding: 18px 12px;
      text-align: center;
      cursor: pointer;
      transition: all 0.2s;
      color: var(--white);
    }
    .mines-card:hover {
      border-color: rgba(0,209,255,0.3);
      background: rgba(0,209,255,0.05);
      transform: translateY(-2px);
    }
    .mines-card.active {
      background: rgba(0,209,255,0.08);
      border-color: rgba(0,209,255,0.5);
      box-shadow: 0 0 24px rgba(0,209,255,0.14);
    }
    .mines-card-danger:hover {
      border-color: rgba(255,31,68,0.3);
      background: rgba(255,31,68,0.05);
    }
    .mines-card-danger.active {
      background: rgba(255,31,68,0.08);
      border-color: rgba(255,31,68,0.5);
      box-shadow: 0 0 24px rgba(255,31,68,0.14);
    }

    #bet-input::-webkit-outer-spin-button,
    #bet-input::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(8px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ─── FAQ ────────────────────────────────────── */
    .faq-item {
      background: var(--card);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 16px;
      overflow: hidden;
      transition: border-color 0.2s;
    }
    .faq-item:has(.faq-q.open) {
      border-color: rgba(0,209,255,0.3);
    }
    .faq-q {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 22px 28px;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--white);
      transition: color 0.2s;
    }
    .faq-q:hover { color: var(--cyan); }
    .faq-icon {
      font-size: 22px;
      font-weight: 300;
      color: var(--cyan);
      flex-shrink: 0;
      transition: transform 0.3s;
      line-height: 1;
    }
    .faq-q.open .faq-icon { transform: rotate(45deg); }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.35s ease;
      padding: 0 28px;
    }
    .faq-a.open {
      max-height: 300px;
      padding: 0 28px 22px;
    }
    .faq-a p {
      font-size: 15px;
      font-weight: 500;
      color: var(--muted);
      line-height: 1.7;
      margin: 0;
      border-top: 1px solid rgba(255,255,255,0.06);
      padding-top: 16px;
    }

/* ═══════════════════════════════════════════════════
   MOBILE RESPONSIVE  (≤ 768px)
═══════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════
   MOBILE RESPONSIVE  (≤ 768px)
═══════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ─── GLOBAL SECTION PADDING ─── */
  section {
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  footer {
    padding: 48px 20px 32px !important;
  }

  /* ─── HEADER ─── */
  header { padding: 0 20px; }
  nav { display: none !important; }
  .live-badge { display: none !important; }

  /* ─── HERO ─── */
  #hero {
    padding-top: 96px !important;
    padding-bottom: 56px !important;
    align-items: flex-start;
  }
  .hero-inner {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
  }
  .hero-content { align-items: center !important; text-align: center; }
  .hero-badge { align-self: center; }
  .hero-cta { align-items: center !important; }

  /* Desktop QR hidden on mobile; mobile QR shown */
  .hero-qr-desktop { display: none !important; }
  .hero-qr-mobile {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
    width: 70vw !important;
    max-width: 320px !important;
    min-width: 240px !important;
    padding: 16px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }
  .hero-qr-mobile .qr-img-wrapper {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 !important;
    border-radius: 12px !important;
    padding: 8px !important;
  }
  .hero-qr-mobile .qr-text h4 {
    font-size: 15px !important;
    margin-bottom: 0 !important;
    text-align: center !important;
  }

  /* Try Now button inside hero-visual on mobile */
  .hero-visual-btn {
    width: 70vw !important;
    max-width: 320px !important;
    min-width: 240px !important;
    padding: 14px 0 !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    box-sizing: border-box !important;
    margin: 0 auto !important;
  }

  .hero-title { letter-spacing: -1px; text-align: center; }
  .hero-desc { text-align: center; }
  .hero-visual {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .mines-grid {
    grid-template-columns: repeat(5, 52px) !important;
    grid-template-rows: repeat(5, 52px) !important;
    gap: 5px !important;
    padding: 10px !important;
  }
  .mine-cell { width: 52px !important; height: 52px !important; font-size: 20px !important; }
  .hero-stats { width: 100%; }
  .stat-item { padding: 14px 16px; }
  .stat-value { font-size: 20px; }
  .stat-label { font-size: 11px; letter-spacing: 0; }

  /* ─── WHAT IS MINES TON ─── */
  /* two-column grid → single column */
  #how-it-works > div > div:last-child {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  /* terminal: full width on mobile */
  #how-it-works .reveal-left { width: 100% !important; }
  /* reduce multiplier font on mobile */
  #what-mult { font-size: 34px !important; letter-spacing: -1px !important; }
  /* bottom bar: allow wrapping on very small screens */
  #how-it-works .reveal-left > div:last-child {
    flex-wrap: wrap !important;
    gap: 10px !important;
  }

  /* ─── HOW PREDICTOR WORKS ─── */
  /* steps + terminal: single column on mobile */
  #predictor-main { grid-template-columns: 1fr !important; }
  /* Feature pills (Instant signal, accuracy, seed): stack centered, no stretching */
  #how-predictor-works .reveal:first-child > div:last-child {
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
  }
  /* CTA banner: stack vertically */
  #how-predictor-works .reveal:last-child > div:last-child {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 36px 28px !important;
    gap: 24px !important;
  }
  /* Checkmarks list: left-aligned on mobile */
  #how-predictor-works .reveal:last-child > div:last-child > div:first-child {
    text-align: left !important;
    align-self: stretch !important;
  }
  #how-predictor-works .reveal:last-child > div:last-child a { width: 100% !important; justify-content: center !important; }

  /* ─── CALCULATOR ─── */
  #calculator > div:last-child > div:last-child { grid-template-columns: 1fr !important; }
  #calculator > div:last-child > div:last-child > div:first-child { border-right: none !important; border-bottom: 1px solid rgba(0,209,255,0.1); padding: 28px 24px !important; }
  #calculator > div:last-child > div:last-child > div:last-child { padding: 28px 24px !important; }

  /* ─── ADVANTAGES ─── */
  #adv-grid { grid-template-columns: 1fr !important; }
  #adv-grid > * { grid-column: auto !important; }
  /* hero card: stack text + ring vertically */
  #adv-grid > div:first-child { flex-direction: column !important; align-items: center !important; text-align: center !important; gap: 28px !important; padding: 36px 28px !important; }
  #adv-grid > div:first-child svg { width: 140px !important; height: 140px !important; }

  /* ─── PRODUCTS ─── */
  #products > div:nth-child(2) > div:last-child {
    grid-template-columns: 1fr !important;
  }
  #products .reveal-left, #products .reveal-scale, #products .reveal-right {
    padding: 20px 18px !important;
    gap: 12px !important;
    border-radius: 16px !important;
  }

  /* ─── REVIEWS ─── */
  #reviews > div:nth-child(2) > div:last-child {
    grid-template-columns: 1fr !important;
    height: 480px !important;
  }

  /* ─── CTA BANNER ─── */
  #cta-banner > div > div {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 40px 28px !important;
    gap: 28px !important;
  }
  #cta-banner a {
    width: 100% !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }

  /* ─── FAQ ─── */
  .faq-q { padding: 18px 20px !important; font-size: 15px !important; }
  .faq-a { padding: 0 20px !important; }
  .faq-a.open { padding: 0 20px 18px !important; }

  /* ─── FOOTER ─── */
  footer > div > div:first-child {
    flex-direction: column !important;
    gap: 32px !important;
    align-items: center !important;
    text-align: center !important;
  }
  footer > div > div:first-child > div { max-width: 100% !important; width: 100% !important; }
  footer > div > div:first-child > div:nth-child(2) { gap: 32px !important; justify-content: center !important; }
  footer > div > div:first-child > div:nth-child(2) > div > div { align-items: center !important; }
  footer > div > div:last-child { flex-direction: column !important; gap: 12px !important; align-items: center !important; text-align: center !important; }
}
