  :root {
    --green-dark: #2E4C00;
    --green-mid: #4A7A10;
    --green-accent: #8EB246;
    --green-light: #A8C964;
    --sage-wash: #F4F9EC;
    --sage-deeper: #E8F0D8;
    --body-text: #212529;
    --gray-600: #6c757d;
    --gray-400: #ced4da;
    --gray-200: #e9ecef;
    --gray-100: #f8f9fa;
    --white: #FFFFFF;
    --gold: #D4A017;
    --gold-light: #FFF8E7;
    --gold-border: #E8C84A;
    --silver: #8A92A0;
    --silver-light: #F4F5F7;
    --silver-border: #C8CCD4;
    --bronze: #B87333;
    --bronze-light: #FDF5ED;
    --bronze-border: #D4A06A;
    --amber: #D97706;
    --amber-light: #FFF7ED;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow-sm: 0 1px 3px rgba(46,76,0,0.08);
    --shadow-md: 0 4px 16px rgba(46,76,0,0.10);
    --shadow-lg: 0 8px 32px rgba(46,76,0,0.12);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

  body {
    font-family: 'Jost', sans-serif;
    color: var(--body-text);
    background: var(--white);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }

  .page-wrap {
    min-height: 100vh;
    background: var(--white);
  }

  /* ── HEADER ── */
  .header {
    padding: 14px 20px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100;
  }

  .logo {
    display: block;
    line-height: 0;
    text-decoration: none;
  }

  .logo img {
    display: block;
    height: 36px;
    width: auto;
  }

  /* ── ARTICLE ── */
  .article { padding: 24px 20px 0; }

  .category-tag {
    display: inline-block;
    background: var(--sage-wash);
    color: var(--green-mid);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid var(--sage-deeper);
    margin-bottom: 16px;
  }

  .headline {
    font-size: 25px;
    font-weight: 800;
    color: var(--green-dark);
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
  }

  .byline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
  }

  .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-accent), var(--green-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
  }

  .byline-text { font-size: 13px; color: var(--gray-600); line-height: 1.4; }
  .byline-name { color: var(--body-text); font-weight: 600; }

  .read-time {
    display: inline-block;
    background: var(--sage-wash);
    color: var(--green-mid);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 10px;
    margin-left: auto;
    flex-shrink: 0;
  }

  .body-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--body-text);
    margin-bottom: 24px;
  }

  .body-text strong { color: var(--green-dark); font-weight: 600; }

  h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 14px;
    line-height: 1.3;
  }

  .section { margin-bottom: 32px; }

  /* ── HERO PHONE MOCKUP ── */
  .hero-card {
    background: linear-gradient(145deg, var(--sage-wash) 0%, var(--sage-deeper) 100%);
    border-radius: var(--radius);
    padding: 32px 20px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--sage-deeper);
  }

  .hero-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(142,178,70,0.2) 0%, transparent 70%);
    border-radius: 50%;
  }

  .hero-card::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(142,178,70,0.15) 0%, transparent 70%);
    border-radius: 50%;
  }

  .phone-scene {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
  }

  .phone {
    width: 140px;
    height: 260px;
    background: #1a1a2e;
    border-radius: 24px;
    border: 3px solid #2d2d44;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.1);
    flex-shrink: 0;
  }

  .phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 14px;
    background: #1a1a2e;
    border-radius: 0 0 12px 12px;
    z-index: 5;
  }

  .phone-screen {
    position: absolute;
    inset: 8px 6px;
    border-radius: 18px;
    background: linear-gradient(180deg, #0a2a1a 0%, #0d3320 40%, #124a2e 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 8px 12px;
    gap: 6px;
    overflow: hidden;
  }

  .phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: radial-gradient(ellipse at 50% 0%, rgba(142,178,70,0.15) 0%, transparent 70%);
  }

  .phone-app-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(255,107,53,0.3);
  }

  .phone-app-name {
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
  }

  .phone-coins {
    display: flex;
    gap: 3px;
    margin-top: 4px;
    position: relative;
    z-index: 1;
  }

  .phone-coin {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0c040, #d4a017);
    border: 1.5px solid #c4900a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 800;
    color: #8B6914;
  }

  .phone-earning {
    background: rgba(142,178,70,0.25);
    border: 1px solid rgba(142,178,70,0.4);
    border-radius: 8px;
    padding: 4px 10px;
    color: var(--green-light);
    font-size: 13px;
    font-weight: 700;
    margin-top: 4px;
    position: relative;
    z-index: 1;
  }

  .phone-stars {
    font-size: 8px;
    color: #f0c040;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
  }

  /* Floating badges */
  .float-badge {
    position: absolute;
    z-index: 2;
    border-radius: 10px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
  }

  .badge-bonus {
    top: 16px;
    right: 12px;
    background: var(--white);
    color: var(--green-dark);
    border: 1.5px solid var(--green-accent);
    animation: float-up 3s ease-in-out infinite;
  }

  .badge-rating {
    bottom: 20px;
    left: 12px;
    background: var(--white);
    color: var(--gold);
    border: 1.5px solid var(--gold-light);
    animation: float-up 3s ease-in-out 1s infinite;
  }

  .badge-free {
    top: 50%;
    right: 8px;
    background: var(--green-accent);
    color: var(--white);
    font-size: 11px;
    border: none;
    animation: float-up 3s ease-in-out 0.5s infinite;
  }

  @keyframes float-up {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }

  /* ── FEATURE BULLETS ── */
  .features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 14px;
  }

  .features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.5;
  }

  .feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--sage-wash);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    border: 1px solid var(--sage-deeper);
  }

  .feature-text { padding-top: 2px; }

  .feature-text strong {
    display: block;
    font-weight: 600;
    color: var(--green-dark);
    font-size: 14px;
    margin-bottom: 1px;
  }

  .feature-text span {
    font-size: 14px;
    color: var(--gray-600);
  }

  /* ── JUMP NAV ── */
  .jump-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 0 16px;
    margin-bottom: 24px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .jump-nav::-webkit-scrollbar { display: none; }

  .jump-pill {
    flex-shrink: 0;
    padding: 8px 14px;
    border-radius: 20px;
    background: var(--sage-wash);
    border: 1px solid var(--sage-deeper);
    color: var(--green-mid);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
  }

  .jump-pill:active, .jump-pill:hover {
    background: var(--green-accent);
    color: var(--white);
    border-color: var(--green-accent);
  }

  /* ── QUICK SUMMARY ── */
  .summary-card {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-left: 4px solid var(--green-accent);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
  }

  .summary-title {
    padding: 14px 16px 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--green-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--gray-200);
  }

  .summary-row {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    gap: 12px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 14px;
  }

  .summary-row:last-child { border-bottom: none; }

  .summary-rank {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
  }

  .rank-1 { background: linear-gradient(135deg, #F0C040, #D4A017); color: #6B4F00; }
  .rank-2 { background: linear-gradient(135deg, #D0D4DA, #A8ADB6); color: #4A4E54; }
  .rank-3 { background: linear-gradient(135deg, #DCA06A, #B87333); color: #5C3A1A; }
  .rank-4 { background: linear-gradient(135deg, var(--green-light), var(--green-accent)); color: var(--green-dark); }

  .summary-info { flex: 1; min-width: 0; }
  .summary-name { font-weight: 700; color: var(--body-text); }

  .summary-tag {
    font-size: 12px;
    color: var(--gray-600);
    display: block;
    margin-top: 1px;
  }

  .summary-stars {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
    flex-shrink: 0;
  }

  /* ── APP CARDS ── */
  .app-card {
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
    background: var(--white);
  }

  .app-card--pick {
    border-color: var(--gold-border);
    box-shadow: 0 4px 24px rgba(212,160,23,0.15), var(--shadow-md);
  }

  .pick-banner {
    background: linear-gradient(135deg, #F5D060 0%, #D4A017 100%);
    color: #5C3A00;
    padding: 10px 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .pick-banner-icon { font-size: 16px; }

  .app-card-body { padding: 20px; }

  .app-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
  }

  .app-rank-badge {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
  }

  .app-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--green-dark);
    line-height: 1.2;
  }

  .app-card:not(.app-card--pick) .app-name { font-size: 20px; }

  .app-oneliner {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 16px;
    margin-top: 4px;
  }

  /* Stat strip */
  .stat-strip {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
    margin-bottom: 18px;
  }

  .stat-item {
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    padding: 10px 6px;
    text-align: center;
  }

  .stat-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.2;
  }

  .stat-label {
    font-size: 10px;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
    font-weight: 500;
  }

  /* Liked / Worth knowing */
  .app-section-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--green-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .app-section-title--amber { color: var(--amber); }

  .liked-list {
    list-style: none;
    margin-bottom: 16px;
  }

  .liked-list li {
    position: relative;
    padding: 6px 0 6px 26px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--body-text);
  }

  .liked-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--sage-wash);
    color: var(--green-mid);
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--sage-deeper);
  }

  .worth-box {
    background: var(--amber-light);
    border: 1px solid #FDE7C8;
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    margin-bottom: 18px;
    font-size: 14px;
    color: #92400E;
    line-height: 1.55;
    display: flex;
    gap: 10px;
  }

  .worth-icon {
    flex-shrink: 0;
    font-size: 16px;
    margin-top: 1px;
  }

  /* ── EARNINGS RECEIPT ── */
  .receipt {
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--gray-200);
    overflow: hidden;
    margin-bottom: 18px;
    box-shadow: var(--shadow-sm);
  }

  .receipt-header {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
    color: var(--white);
    padding: 10px 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .receipt-header-icon { font-size: 16px; }

  .receipt-body { padding: 4px 0; }

  .receipt-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 14px;
    font-size: 13px;
    border-bottom: 1px dashed var(--gray-200);
  }

  .receipt-row:last-child { border-bottom: none; }

  .receipt-game {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--body-text);
  }

  .receipt-game-icon { font-size: 14px; }

  .receipt-amount {
    font-weight: 600;
    color: var(--green-mid);
    font-size: 13px;
  }

  .receipt-days {
    font-size: 11px;
    color: var(--gray-600);
    margin-left: 4px;
    font-weight: 400;
  }

  .receipt-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: var(--sage-wash);
    border-top: 2px solid var(--green-accent);
  }

  .receipt-total-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--green-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .receipt-total-amount {
    font-size: 20px;
    font-weight: 800;
    color: var(--green-dark);
  }

  .receipt-total-sub {
    font-size: 10px;
    color: var(--gray-600);
    font-weight: 400;
    display: block;
    text-align: right;
    margin-top: 1px;
  }

  /* ── CTA BUTTONS ── */
  .cta-wrap { margin: 28px 0; text-align: center; }

  .cta-btn {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--green-accent) 0%, #7BA33D 100%);
    color: var(--white);
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(142,178,70,0.35), 0 1px 3px rgba(46,76,0,0.1);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
  }

  .cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    border-radius: var(--radius);
  }

  .cta-btn:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(142,178,70,0.3);
  }

  @media (hover: hover) {
    .cta-btn:hover {
      background: linear-gradient(135deg, #7BA33D 0%, #6B9030 100%);
      box-shadow: 0 6px 24px rgba(142,178,70,0.4);
      transform: translateY(-1px);
    }
  }

  .cta-btn.pulse {
    animation: cta-pulse 2.5s ease-in-out 1s 3;
  }

  @keyframes cta-pulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(142,178,70,0.35); }
    50% { box-shadow: 0 4px 16px rgba(142,178,70,0.35), 0 0 0 8px rgba(142,178,70,0.12); }
  }

  .cta-sub {
    font-size: 12px;
    color: var(--gray-600);
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .cta-sub svg {
    width: 14px;
    height: 14px;
    fill: var(--gray-600);
  }

  /* ── SOCIAL PROOF STRIP ── */
  .proof-strip {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin: 28px 0;
  }

  .proof-item {
    background: var(--sage-wash);
    border: 1px solid var(--sage-deeper);
    border-radius: 10px;
    padding: 14px 8px;
    text-align: center;
  }

  .proof-number {
    font-size: 22px;
    font-weight: 800;
    color: var(--green-dark);
    line-height: 1.1;
  }

  .proof-label {
    font-size: 11px;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    margin-top: 3px;
  }

  /* ── BENEFIT CARDS ── */
  .benefit-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 14px;
  }

  .benefit-card {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 18px;
    transition: border-color 0.2s;
  }

  .benefit-card:hover { border-color: var(--green-accent); }

  .benefit-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--sage-wash);
    color: var(--green-mid);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
    border: 1.5px solid var(--sage-deeper);
  }

  .benefit-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 4px;
  }

  .benefit-desc {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
  }

  /* ── LEGIT BADGE ── */
  .legit-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--sage-wash);
    border: 1.5px solid var(--green-accent);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green-dark);
    margin-top: 14px;
  }

  .legit-badge-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--green-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
  }

  /* ── STEPS ── */
  .steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 14px;
    position: relative;
  }

  .step {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    position: relative;
  }

  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 15px;
    top: 42px;
    bottom: 0;
    width: 2px;
    background: var(--sage-deeper);
  }

  .step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-accent), var(--green-mid));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  .step-text {
    font-size: 15px;
    color: var(--body-text);
    padding-top: 5px;
    line-height: 1.5;
  }

  /* ── TIPS ── */
  .tips {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 14px;
  }

  .tip {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    position: relative;
  }

  .tip:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 15px;
    top: 42px;
    bottom: 0;
    width: 2px;
    background: var(--sage-deeper);
  }

  .tip-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-accent), var(--green-mid));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  .tip-content { padding-top: 2px; }

  .tip-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 2px;
  }

  .tip-desc {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
  }

  /* ── COMPARISON TABLE ── */
  .table-wrap {
    overflow-x: auto;
    margin: 14px -20px 0;
    padding: 0 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .table-wrap::-webkit-scrollbar { display: none; }

  .table-scroll-hint {
    font-size: 11px;
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }

  .comp-table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    font-size: 13px;
  }

  .comp-table th {
    background: var(--green-dark);
    color: var(--white);
    padding: 10px 10px;
    text-align: center;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.3px;
    white-space: nowrap;
  }

  .comp-table th:first-child { text-align: left; border-radius: 8px 0 0 0; }
  .comp-table th:last-child { border-radius: 0 8px 0 0; }
  .comp-table th.highlight { background: linear-gradient(135deg, #3B6600, var(--green-mid)); }

  .comp-table td {
    padding: 10px 10px;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
    white-space: nowrap;
  }

  .comp-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--green-dark);
    font-size: 12px;
  }

  .comp-table td.highlight { background: var(--sage-wash); }
  .comp-table tr:nth-child(even) td:not(.highlight) { background: var(--gray-100); }
  .comp-table tr:nth-child(even) td.highlight { background: var(--sage-deeper); }
  .comp-table tr:last-child td { border-bottom: none; }
  .comp-table tr:last-child td:first-child { border-radius: 0 0 0 8px; }
  .comp-table tr:last-child td:last-child { border-radius: 0 0 8px 0; }

  /* ── BOTTOM LINE / VERDICT ── */
  .verdict {
    background: var(--sage-wash);
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid var(--sage-deeper);
    margin-top: 14px;
  }

  .verdict p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--body-text);
    margin-bottom: 14px;
  }

  .verdict-rating {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .verdict-stars {
    font-size: 20px;
    color: var(--gold);
    letter-spacing: 2px;
    line-height: 1;
  }

  .verdict-score {
    font-size: 14px;
    font-weight: 600;
    color: var(--green-dark);
  }

  /* ── #1 PICK SECTION ── */
  .pick-section {
    background: linear-gradient(145deg, var(--sage-wash), var(--sage-deeper));
    border-radius: var(--radius);
    padding: 24px 20px;
    border: 1.5px solid var(--sage-deeper);
    margin-top: 14px;
  }

  .pick-section h2 { margin-bottom: 12px; }

  .pick-section p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--body-text);
    margin-bottom: 18px;
  }

  /* ── DISCLAIMER ── */
  .disclaimer {
    padding: 20px;
    font-size: 11px;
    color: var(--gray-600);
    line-height: 1.6;
    border-top: 1px solid var(--gray-200);
    margin-top: 12px;
  }

  /* ── FOOTER ── */
  .footer {
    text-align: center;
    padding: 20px;
    border-top: 1px solid var(--gray-200);
    font-size: 12px;
    color: var(--gray-600);
  }

  .footer-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
  }

  .footer-links a {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s;
  }

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

  /* ── SCROLL ANIMATIONS ── */
  .fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .stagger > * {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .stagger.visible > *:nth-child(1) { transition-delay: 0s; }
  .stagger.visible > *:nth-child(2) { transition-delay: 0.06s; }
  .stagger.visible > *:nth-child(3) { transition-delay: 0.12s; }
  .stagger.visible > *:nth-child(4) { transition-delay: 0.18s; }
  .stagger.visible > *:nth-child(5) { transition-delay: 0.24s; }
  .stagger.visible > *:nth-child(6) { transition-delay: 0.30s; }

  .stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
  }

  /* Mobile: narrow card for small screens */
  @media (max-width: 640px) {
    body { background: var(--sage-wash); }
    .page-wrap {
      max-width: 480px;
      margin: 0 auto;
      box-shadow: 0 0 40px rgba(46,76,0,0.06);
      border-left: 1px solid var(--gray-200);
      border-right: 1px solid var(--gray-200);
    }
  }

  /* Desktop: full-width page, header/footer edge-to-edge, content in 640px column */
  @media (min-width: 641px) {
    .page-wrap { max-width: none; width: 100%; box-shadow: none; border: none; }
    .header { padding: 20px 40px; }
    .logo img { height: 42px; width: auto; }
    .article {
      max-width: 640px;
      margin: 0 auto;
      padding: 36px 48px 0;
    }
    .headline { font-size: 28px; }
    .disclaimer {
      max-width: 640px;
      margin: 0 auto;
      padding: 24px 48px;
    }
    .footer {
      padding: 28px 48px;
      padding-left: max(48px, calc((100vw - 640px) / 2 + 48px));
      padding-right: max(48px, calc((100vw - 640px) / 2 + 48px));
    }
  }

  /* ── EARNINGS CARD (absorbed shared component) ── */


  /* ── EARNINGS CARD (VYBS) ── */
  .earnings-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1.5px solid var(--gray-200);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: 14px;
  }

  .earnings-header {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
    color: var(--white);
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .earnings-body { padding: 4px 0; }

  .earnings-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    font-size: 14px;
    border-bottom: 1px dashed var(--gray-200);
  }

  .earnings-row:last-child { border-bottom: none; }

  .earnings-game { display: flex; align-items: center; gap: 7px; color: var(--body-text); }

  .earnings-game-icon { font-size: 15px; }

  .earnings-amount { font-weight: 600; color: var(--green-mid); }

  .earnings-days { font-size: 11px; color: var(--gray-600); margin-left: 4px; font-weight: 400; }

  .earnings-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: var(--sage-wash);
    border-top: 2px solid var(--green-accent);
  }

  .earnings-total-label { font-size: 14px; font-weight: 700; color: var(--green-dark); text-transform: uppercase; letter-spacing: 0.5px; }

  .earnings-total-amount { font-size: 22px; font-weight: 800; color: var(--green-dark); }

  .earnings-total-sub { font-size: 11px; color: var(--gray-600); font-weight: 400; display: block; text-align: right; margin-top: 1px; }


  /* ── APP CARD HEADLINE ── */
.app-card-headline {
    font-size: 20px;
    font-weight: 800;
    color: var(--green-dark);
    line-height: 1.3;
    margin-bottom: 16px;
    margin-top: 8px;
    letter-spacing: -0.2px;
  }

.app-card-headline { font-size: 22px; }
  /* ── LIVE COMMENTS WIDGET ── */



  /* ── TMM COMMENT STYLES ── */
  .tmm-comments-section {
    background: #fff; border-radius: 16px; padding: 20px 16px 14px;
    border: 1px solid #e4e6eb; margin-top: 32px;
  }

  .tmm-comments-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid #e4e6eb;
  }

  .tmm-comments-header h4 { font-size: 17px; font-weight: 800; color: #050505; }

  .tmm-comments-live { display: flex; align-items: center; gap: 5px; font-size: 11px; color: #16a34a; font-weight: 600; }

  .tmm-live-dot { width: 7px; height: 7px; background: #16a34a; border-radius: 50%; animation: tmm-blink 1.4s ease-in-out infinite; }

  .tmm-comment-list { display: flex; flex-direction: column; gap: 12px; max-height: 420px; overflow-y: auto; padding-right: 4px; scroll-behavior: smooth; }

  .tmm-comment-list::-webkit-scrollbar { width: 4px; }

  .tmm-comment-list::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 4px; }

  .tmm-comment-card { display: flex; align-items: flex-start; gap: 10px; animation: tmm-slide-in 0.35s ease forwards; opacity: 0; transform: translateY(8px); flex-shrink: 0; }

  .tmm-comment-ava { width: 36px; height: 36px; border-radius: 50%; background: #d1d5db; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: #fff; flex-shrink: 0; overflow: hidden; margin-top: 2px; }

  .tmm-comment-ava img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }

  .tmm-comment-right { flex: 1; min-width: 0; }

  .tmm-comment-bubble { background: #f0f2f5; border-radius: 12px; padding: 10px 14px; display: block; }

  .tmm-comment-name { font-size: 13px; font-weight: 700; color: #050505; display: block; margin-bottom: 3px; }

  .tmm-comment-text { font-size: 13px; color: #050505; line-height: 1.5; word-break: break-word; }

  .tmm-comment-footer { display: flex; align-items: center; gap: 12px; margin-top: 5px; padding-left: 4px; }

  .tmm-comment-time { font-size: 11px; color: #8a8a8a; }

  .tmm-comment-action { font-size: 12px; font-weight: 600; color: #4a4a4a; background: none; border: none; cursor: pointer; padding: 0; font-family: inherit; }

  .tmm-comment-action.liked { color: #8EB246; }

  .tmm-like-pill { display: flex; align-items: center; gap: 3px; font-size: 12px; color: #4a4a4a; margin-left: auto; }

  .tmm-comment-input-row { display: flex; align-items: center; gap: 10px; margin-top: 14px; padding-top: 14px; border-top: 1px solid #e4e6eb; }

  .tmm-input-ava { width: 34px; height: 34px; border-radius: 50%; background: #e0e0e0; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

  .tmm-input-ava svg { width: 18px; height: 18px; fill: #999; }

  .tmm-comment-field { flex: 1; display: flex; align-items: center; background: #f0f2f5; border-radius: 20px; padding: 0 8px 0 14px; }

  .tmm-comment-field input { flex: 1; border: none; background: transparent; font-size: 14px; font-family: inherit; padding: 10px 0; outline: none; color: #050505; }

  .tmm-comment-field input::placeholder { color: #aaa; }

  .tmm-comment-send { background: none; border: none; cursor: pointer; padding: 6px; display: flex; align-items: center; }

  .tmm-comment-send svg { width: 18px; height: 18px; fill: #8EB246; }

@keyframes tmm-blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
@keyframes tmm-slide-in { to { opacity:1; transform:translateY(0); } }

/* ── Formula listicle (New Listicles / Formula v3.0) ──
   Namespaced so existing app-card pages are untouched. */
.formula-listicle {
  --fl-ink: #12141a;
  --fl-mut: #5f6b57;
  --fl-sky: #15618f;
}
.formula-listicle .disc {
  font-size: 11px;
  color: var(--fl-mut);
  margin-bottom: 8px;
}
.formula-listicle .disc a { color: var(--green-dark); }
.formula-listicle > h1 {
  font-size: 29px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.4px;
  color: var(--green-dark);
  margin: 10px 0 12px;
}
.formula-listicle > .byline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 0 0 15px;
  font-size: 12px;
  color: var(--fl-mut);
  border-bottom: 1px solid #eceee8;
}
.formula-listicle .fact {
  background: var(--sage-deeper);
  color: var(--green-dark);
  font: 700 10px Jost, sans-serif;
  padding: 3px 7px;
  border-radius: 3px;
  letter-spacing: 0.03em;
}
.formula-listicle .fact.pending {
  background: #f6ece2;
  color: #8a5a38;
  border: 1px dashed #d8b79a;
}
.formula-listicle .dek {
  padding: 17px 0 2px;
  font-size: 16.5px;
  color: #333a30;
  line-height: 1.62;
}
.formula-listicle .formula-list {
  list-style: none;
  margin: 0;
  padding: 6px 0 0;
}
.formula-listicle .item {
  padding: 22px 0;
  border-bottom: 1px solid #f1f3ed;
}
.formula-listicle .item h3 {
  font-size: 18.5px;
  font-weight: 700;
  line-height: 1.33;
  margin: 0 0 10px;
  color: var(--fl-ink);
}
.formula-listicle .item h3 .n {
  color: var(--green-dark);
  font-weight: 800;
}
.formula-listicle .item.ed h3 .n { color: #4d5745; }
.formula-listicle .item p {
  margin: 0 0 10px;
  font-size: 15.5px;
}
.formula-listicle .item b { font-weight: 700; }
.formula-listicle .speed {
  display: inline-block;
  font: 700 11px Jost, sans-serif;
  letter-spacing: 0.03em;
  color: #1d4f6b;
  background: #e6f1f7;
  border: 1px solid #bcd9e8;
  padding: 3px 9px;
  border-radius: 4px;
  margin: 0 0 9px;
}
.formula-listicle .rating {
  font-size: 12.5px;
  color: #4d5745;
  margin: -4px 0 11px;
}
.formula-listicle .rating .stars,
.formula-listicle .stars {
  color: #8a5f04;
  letter-spacing: 0.5px;
}
.formula-listicle .rating b { color: var(--fl-ink); }
.formula-listicle .rating.low .stars { color: #a83700; }
.formula-listicle .rating.low b { color: #a83700; }
.formula-listicle a.ol {
  color: var(--fl-sky);
  font-weight: 700;
  text-decoration: underline;
}
.formula-listicle sup {
  font-size: 9.5px;
  color: var(--green-dark);
  font-weight: 700;
}
.formula-listicle .cta-btn {
  display: block;
  background: var(--green-dark);
  color: #fff;
  text-align: center;
  padding: 13px;
  border-radius: 7px;
  font: 700 15.5px Jost, sans-serif;
  text-decoration: none;
  margin-top: 13px;
  min-height: 44px;
  box-shadow: none;
}
.formula-listicle .cta-btn:hover { filter: none; transform: none; }
.formula-listicle .fn {
  margin-top: 12px;
  font-size: 10.5px;
  color: var(--fl-mut);
  line-height: 1.45;
}
.formula-listicle .fn div { margin-bottom: 2px; }
.formula-listicle .edtag {
  display: inline-block;
  font: 700 9.5px Jost, sans-serif;
  color: var(--fl-mut);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.formula-listicle .reason {
  font-size: 13.5px;
  color: #4d5745;
  font-style: italic;
  border-left: 3px solid var(--sage-deeper);
  padding-left: 11px;
  margin: 0 0 11px;
}
.formula-listicle .geoflag {
  display: inline-block;
  font: 700 9.5px Jost, sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #a83700;
  background: #fbe9e4;
  padding: 2px 7px;
  border-radius: 3px;
  margin-bottom: 9px;
}
.formula-listicle .divider {
  padding: 26px 0 14px;
  background: #fafcf6;
  border-top: 2px solid #dde5cf;
  border-bottom: 1px solid #f1f3ed;
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
}
.formula-listicle .divider h2 {
  margin: 0 0 6px;
  font-size: 17px;
  color: var(--green-dark);
}
.formula-listicle .divider p {
  margin: 0;
  font-size: 14px;
  color: #4d5745;
}
.formula-listicle .statbox {
  margin: 6px 0 20px;
  background: #f2f8e8;
  border-left: 4px solid var(--green-accent);
  padding: 14px 16px;
  border-radius: 0 6px 6px 0;
}
.formula-listicle .sbh {
  font: 700 11px Jost, sans-serif;
  letter-spacing: 0.12em;
  color: var(--green-dark);
  margin-bottom: 5px;
}
.formula-listicle .statbox p { margin: 0; font-size: 14px; }
.formula-listicle .ph { color: #a83700; font-size: 12.5px; font-style: italic; }

.formula-listicle .ocard {
  margin: 20px 0 22px;
  border-radius: 11px;
  overflow: hidden;
}
.formula-listicle .ocard.app {
  background: #f7faf1;
  border: 1px solid #d6e4bd;
}
.formula-listicle .ocard.lead {
  background: #f3f8fb;
  border: 1px solid #cadfeb;
}
.formula-listicle .ocb { padding: 16px 17px; }
.formula-listicle .ochd {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 11px;
}
.formula-listicle .oicon {
  flex: 0 0 46px;
  height: 46px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--green-accent), var(--green-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 700 19px Jost, sans-serif;
}
.formula-listicle .ocard.lead .oicon {
  background: linear-gradient(135deg, #85cbe5, var(--fl-sky));
}
.formula-listicle .oname { font: 700 16px Jost, sans-serif; line-height: 1.2; }
.formula-listicle .orate { font-size: 11.5px; color: #4d5745; margin-top: 3px; }
.formula-listicle .spon {
  font: 700 9px Jost, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fl-mut);
}
.formula-listicle .obonus {
  background: #fff;
  border: 1px dashed #b8cf94;
  border-radius: 7px;
  padding: 9px 12px;
  font-size: 14.5px;
  margin-bottom: 11px;
}
.formula-listicle .ocard.lead .obonus { border-color: #a9cde0; }
.formula-listicle .obonus b { color: var(--green-dark); }
.formula-listicle .ocard.lead .obonus b { color: var(--fl-sky); }
.formula-listicle .obul {
  margin: 0 0 13px;
  padding-left: 19px;
  font-size: 14.5px;
}
.formula-listicle .obul li { margin-bottom: 4px; }
.formula-listicle .ocard .cta-btn { margin-top: 0; }
.formula-listicle .ocard.lead .cta-btn { background: var(--fl-sky); }
.formula-listicle .ocomp {
  font-size: 10px;
  color: var(--fl-mut);
  padding: 9px 17px;
  background: rgba(255,255,255,0.7);
  border-top: 1px solid #e2ebd4;
  line-height: 1.45;
}
.formula-listicle .ocard.lead .ocomp { border-top-color: #d7e7f0; }

@media (min-width: 641px) {
  .formula-listicle > h1 { font-size: 32px; }
}