    :root {
      --primary: #ffb800;
      --primary-dark: #f0aa00;
      --bg-dark: #070b15;
      --bg-card: #0f1524;
      --bg-soft: #141b2f;
      --text-main: #ffffff;
      --text-muted: #9aa3c4;
      --accent: #45e0b5;
      --danger: #ff4d6a;
      --border-soft: #242b42;
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #171f3b, #050712 55%);
      color: var(--text-main);
      -webkit-font-smoothing: antialiased;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* NAV */

    header {
      position: sticky;
      top: 0;
      z-index: 30;
      backdrop-filter: blur(16px);
      background: rgba(5, 7, 18, 0.9);
      border-bottom: 1px solid rgba(255,255,255,0.02);
    }

    .nav-container {
      max-width: 1080px;
      margin: 0 auto;
      padding: 0.7rem 1.25rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      font-weight: 700;
      font-size: 1.02rem;
      letter-spacing: 0.02em;
    }

    .logo-pill {
      width: 28px;
      height: 28px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 20%, #ffffff, #ffb800 55%, #f06500);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      color: #111;
      font-weight: 900;
      box-shadow: 0 0 20px rgba(255, 184, 0, 0.6);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.86rem;
    }

    .nav-meta {
      color: var(--text-muted);
      display: none;
    }

    @media (min-width: 720px) {
      .nav-meta { display: block; }
    }

    .btn-nav {
      border-radius: 999px;
      border: none;
      padding: 0.55rem 1.35rem;
      font-size: 0.86rem;
      font-weight: 600;
      background: linear-gradient(135deg, var(--primary), #ffe28a);
      color: #111;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      box-shadow: 0 8px 24px rgba(0,0,0,0.45);
    }

    .btn-nav span {
      font-size: 0.75rem;
      font-weight: 500;
      opacity: 0.9;
    }

    /* POPUP MODAL */

    .modal {
      display: none;
      position: fixed;
      z-index: 9999;
      inset: 0;
      background: rgba(0,0,0,0.55);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      max-width: 520px;
      width: 90%;
      background: #ffffff;
      border-radius: 12px;
      padding: 20px 22px;
      box-shadow: 0 18px 45px rgba(0,0,0,0.25);
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: #111;
    }

    .modal-content h2 {
      margin-top: 0;
      margin-bottom: 10px;
      font-size: 20px;
    }

    .modal-content p {
      font-size: 14px;
      margin-bottom: 14px;
    }

    .checkbox-row {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 13px;
      margin-bottom: 10px;
      cursor: pointer;
    }

    .checkbox-row input {
      margin-top: 3px;
    }

    .checkbox-row a {
      color: #0066cc;
      text-decoration: underline;
    }

    .modal-actions {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
      margin-top: 16px;
    }

    .modal-actions button {
      border-radius: 999px;
      border: none;
      padding: 8px 16px;
      font-size: 14px;
      cursor: pointer;
    }

    #cancelModal {
      background: #f2f2f2;
    }

    #confirmBuy {
      background: #111;
      color: #fff;
      opacity: 0.4;
    }

    #confirmBuy.enabled {
      opacity: 1;
    }

    /* LAYOUT */

    main {
      max-width: 1080px;
      margin: 0 auto;
      padding: 1.6rem 1.25rem 3rem;
    }

    /* HERO – AKUSOLI STYLE */

    .hero-shell {
      margin-top: 1rem;
      border-radius: 24px;
      background:
        radial-gradient(circle at -10% 0%, rgba(69,224,181,0.18), transparent 55%),
        radial-gradient(circle at 110% 0%, rgba(255,184,0,0.2), transparent 55%),
        linear-gradient(135deg, #0b1020, #131b32 60%, #0b1020);
      border: 1px solid rgba(255,255,255,0.05);
      box-shadow: 0 32px 80px rgba(0,0,0,0.7);
      padding: 1.7rem 1.4rem 1.8rem;
      position: relative;
      overflow: hidden;
    }

    @media (min-width: 880px) {
      .hero-shell {
        padding: 2.2rem 2.3rem 2.3rem;
        display: grid;
        grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
        gap: 2.1rem;
        align-items: center;
      }
    }

    .hero-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      border-radius: 999px;
      padding: 0.2rem 0.7rem;
      font-size: 0.75rem;
      background: rgba(12, 225, 162, 0.12);
      color: var(--accent);
      border: 1px solid rgba(69,224,181,0.45);
      margin-bottom: 0.6rem;
    }

    .hero-chip span {
      font-size: 0.7rem;
      color: var(--text-muted);
    }

    .hero-title {
      font-size: clamp(1.9rem, 3.2vw, 2.35rem);
      font-weight: 800;
      line-height: 1.1;
      margin: 0 0 0.75rem;
    }

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

    .hero-subtitle {
      font-size: 0.95rem;
      color: var(--text-muted);
      max-width: 32rem;
      line-height: 1.6;
      margin: 0 0 0.9rem;
    }

    .hero-highlight {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      font-size: 0.78rem;
      color: var(--text-muted);
      margin-bottom: 1.1rem;
    }

    .hero-highlight span {
      padding: 0.25rem 0.6rem;
      border-radius: 999px;
      background: rgba(0,0,0,0.35);
      border: 1px solid rgba(255,255,255,0.06);
    }

    .hero-cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
      align-items: center;
      margin-bottom: 0.8rem;
    }

    .btn-hero-primary {
      border-radius: 999px;
      border: none;
      padding: 0.8rem 1.7rem;
      font-size: 0.96rem;
      font-weight: 700;
      background: linear-gradient(135deg, var(--primary), #ffe28a);
      color: #111;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      box-shadow: 0 14px 40px rgba(0,0,0,0.65);
    }

    .btn-hero-primary small {
      font-size: 0.75rem;
      font-weight: 500;
      opacity: 0.85;
    }

    .btn-hero-secondary {
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.18);
      padding: 0.7rem 1.3rem;
      font-size: 0.87rem;
      font-weight: 500;
      background: rgba(0,0,0,0.24);
      color: var(--text-muted);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
    }

    .hero-note {
      font-size: 0.8rem;
      color: var(--text-muted);
      max-width: 25rem;
    }

    .hero-social-proof {
      margin-top: 1rem;
      padding-top: 0.6rem;
      border-top: 1px solid rgba(255,255,255,0.08);
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
      align-items: center;
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    .hero-stars {
      color: #ffd66b;
      font-size: 0.85rem;
      font-weight: 600;
    }

    .hero-social-proof span.badge-soft {
      padding: 0.2rem 0.55rem;
      border-radius: 999px;
      background: rgba(0,0,0,0.4);
      border: 1px solid rgba(255,255,255,0.04);
    }

    /* HERO RIGHT: VISUAL + PRICE CARD */

    .hero-visual-wrap {
      margin-top: 1.6rem;
    }

    @media (min-width: 880px) {
      .hero-visual-wrap { margin-top: 0; }
    }

    .hero-product-visual {
      position: relative;
      border-radius: 22px;
      background: radial-gradient(circle at 0 0, rgba(69,224,181,0.14), transparent 55%),
                  radial-gradient(circle at 100% 0, rgba(255,184,0,0.2), transparent 55%),
                  #060914;
      border: 1px solid rgba(255,255,255,0.08);
      padding: 1.1rem 1.1rem 1.3rem;
      overflow: hidden;
      box-shadow: 0 24px 60px rgba(0,0,0,0.85);
    }

    .hero-product-image {
      width: 100%;
      border-radius: 16px;
      object-fit: cover;
      max-height: 220px;
      display: block;
      margin-bottom: 0.9rem;
    }

    .hero-product-label {
      font-size: 0.78rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 0.25rem;
    }

    .hero-product-title {
      font-size: 0.98rem;
      font-weight: 700;
      margin-bottom: 0.2rem;
    }

    .hero-product-price {
      display: flex;
      align-items: baseline;
      gap: 0.35rem;
      margin-bottom: 0.5rem;
    }

    .hero-product-price-amount {
      font-size: 1.55rem;
      font-weight: 800;
      color: var(--primary);
    }

    .hero-product-price-note {
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    .hero-product-list {
      list-style: none;
      padding: 0;
      margin: 0 0 0.8rem;
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    .hero-product-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.35rem;
      margin-bottom: 0.28rem;
    }

    .hero-product-list li::before {
      content: "✓";
      font-size: 0.8rem;
      color: var(--accent);
      margin-top: 0.1rem;
    }

    .hero-product-small {
      font-size: 0.7rem;
      color: var(--text-muted);
    }

    /* SECTION TITLES */

    .section-heading {
      margin-top: 2.4rem;
      margin-bottom: 0.7rem;
    }

    .section-heading h2 {
      font-size: 1.25rem;
      margin: 0 0 0.3rem;
    }

    .section-heading p {
      margin: 0;
      font-size: 0.86rem;
      color: var(--text-muted);
    }

    /* TOP 5 LIST */

    .top5-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 0.9rem;
    }

    .card-soft {
      background: var(--bg-soft);
      border-radius: 16px;
      border: 1px solid var(--border-soft);
      padding: 0.95rem;
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
    }

    .card-soft:nth-child(odd) {
      background: #151c33;
    }

    .rank-tag {
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-muted);
    }

    .card-title {
      font-size: 0.96rem;
      font-weight: 600;
    }

    .card-body {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    .card-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem;
      margin-top: 0.25rem;
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    .card-meta span {
      padding: 0.2rem 0.55rem;
      border-radius: 999px;
      background: rgba(0,0,0,0.35);
      border: 1px solid rgba(255,255,255,0.04);
    }

    .card-link {
      margin-top: auto;
      font-size: 0.8rem;
      color: var(--accent);
      font-weight: 500;
    }

    /* #1 LOCKED CARD */

    .card-locked {
      border-style: dashed;
      border-color: rgba(255,184,0,0.75);
      background: radial-gradient(circle at 0 0, rgba(255,184,0,0.12), transparent 55%),
                  radial-gradient(circle at 100% 0, rgba(69,224,181,0.14), transparent 55%),
                  #181027;
      position: relative;
      overflow: hidden;
    }

    .locked-content {
      filter: blur(4px);
      pointer-events: none;
      user-select: none;
    }

    .card-locked.unlocked .locked-content {
      filter: none;
      pointer-events: auto;
      user-select: text;
    }

    .locked-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 1.2rem;
      background: linear-gradient(to bottom, rgba(10,12,25,0.35), rgba(10,12,25,0.96));
      backdrop-filter: blur(12px);
      gap: 0.55rem;
    }

    .locked-overlay-cta {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      align-items: center;
      font-size: 0.82rem;
      color: var(--text-muted);
    }

    .locked-overlay-cta strong {
      font-size: 0.96rem;
      color: #fff;
    }

    .btn-locked-primary {
      border-radius: 999px;
      border: none;
      padding: 0.7rem 1.4rem;
      font-size: 0.9rem;
      font-weight: 700;
      background: linear-gradient(135deg, var(--primary), #ffe28a);
      color: #111;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      box-shadow: 0 12px 32px rgba(0,0,0,0.7);
      margin-top: 0.15rem;
    }

    .btn-locked-secondary {
      border-radius: 999px;
      border: 1px dashed rgba(255,255,255,0.24);
      padding: 0.55rem 1.2rem;
      font-size: 0.78rem;
      background: transparent;
      color: var(--text-muted);
      cursor: pointer;
    }

    .locked-note {
      font-size: 0.72rem;
      color: var(--text-muted);
      margin-top: 0.4rem;
    }

    .hidden { display: none !important; }

    /* FAQ / DISCLAIMER */

    .two-col {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      gap: 1rem;
      margin-top: 2rem;
    }

    @media (max-width: 820px) {
      .two-col { grid-template-columns: 1fr; }
    }

    .box {
      background: var(--bg-soft);
      border-radius: 16px;
      border: 1px solid var(--border-soft);
      padding: 1rem;
      font-size: 0.84rem;
      color: var(--text-muted);
    }

    .box h3 {
      margin: 0 0 0.4rem;
      font-size: 0.98rem;
      color: #fff;
    }

    .box ul {
      margin: 0.4rem 0 0;
      padding-left: 1.1rem;
    }

    .box li {
      margin-bottom: 0.3rem;
      line-height: 1.4;
    }

    .disclaimer {
      margin-top: 0.6rem;
      font-size: 0.78rem;
      color: var(--danger);
    }

    footer {
      margin-top: 2.6rem;
      padding: 1.2rem 0 0.4rem;
      font-size: 0.75rem;
      color: var(--text-muted);
      text-align: center;
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    .nav-links {
      margin-top: 0.5rem;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.8rem;
    }

    .nav-links a {
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    /* MINIMAL COOKIES BANNER */

    .cookie-banner {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 9998;
      background: rgba(5, 7, 18, 0.96);
      color: #fff;
      padding: 10px 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      font-size: 12px;
      flex-wrap: wrap;
      border-top: 1px solid rgba(255,255,255,0.08);
    }

    .cookie-banner p {
      margin: 0;
      max-width: 520px;
      text-align: center;
      line-height: 1.4;
    }

    .cookie-banner a {
      color: var(--accent);
      text-decoration: underline;
    }

    .cookie-banner button {
      border-radius: 999px;
      border: none;
      padding: 6px 14px;
      font-size: 12px;
      cursor: pointer;
      background: linear-gradient(135deg, var(--primary), #ffe28a);
      color: #111;
      font-weight: 600;
      white-space: nowrap;
    }