  :root{
    --bg:#0b0f17;
    --card:rgba(255,255,255,.06);

    --text:rgba(255,255,255,.92);
    --muted:rgba(255,255,255,.72);
    --muted2:rgba(255,255,255,.56);

    --tg:#2AABEE;
    --tg2:#8EE3FF;
    --ok:#21C07A;

    --r:22px;
    --r2:16px;
    --max:1120px;

    --shadow:0 22px 70px rgba(0,0,0,.58);
    --shadow2:0 14px 40px rgba(0,0,0,.45);

    --space-xs:8px;
    --space-sm:12px;
    --space-md:16px;
    --space-lg:22px;
  }

  *{box-sizing:border-box}
  html{height:100%}
  body{
    min-height:100%;
    margin:0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
    color:var(--text);
    line-height:1.5;
    letter-spacing:-0.01em;
    background: var(--bg);
  }

  a{color:inherit;text-decoration:none}
  a:focus,.btn:focus,button:focus,summary:focus{
    outline:none;
  }
  .wrap{width:min(var(--max), calc(100% - 40px)); margin:0 auto;}
  section{padding:74px 0}

  /* Section backgrounds */
  #top{
    background:
      radial-gradient(900px 600px at 15% 20%, rgba(42,171,238,.18), transparent 55%),
      radial-gradient(700px 500px at 85% 10%, rgba(142,227,255,.10), transparent 55%),
      linear-gradient(180deg, rgba(255,255,255,.03), transparent 40%);
  }
  #what{
    background:
      radial-gradient(800px 500px at 80% 30%, rgba(142,227,255,.08), transparent 55%);
  }
  #how{
    background:
      radial-gradient(700px 500px at 20% 50%, rgba(42,171,238,.10), transparent 55%);
  }
  #tracking{
    background:
      radial-gradient(800px 600px at 70% 40%, rgba(33,192,122,.08), transparent 55%);
  }
  #faq{
    background:
      radial-gradient(900px 600px at 40% 80%, rgba(33,192,122,.12), transparent 55%),
      radial-gradient(600px 400px at 90% 20%, rgba(42,171,238,.08), transparent 55%);
  }
  .grid{display:grid; grid-template-columns:repeat(12, 1fr); gap:18px; align-items:start}
  .actions{display:flex; gap:12px; flex-wrap:wrap}
  .actions--tight{gap:10px}
  .grid__end{display:flex; justify-content:flex-end; align-items:flex-end}
  .grid__end--wrap{gap:10px; flex-wrap:wrap}
  .spacer{display:block}
  .spacer--sm{height:12px}

  /* Sticky header */
  .topbar{
    position:sticky; top:0; z-index:50;
    backdrop-filter: blur(16px);
    background: rgba(11,15,23,.68);
    border-bottom:1px solid rgba(255,255,255,.08);
  }
  .topbar-inner{
    display:flex; align-items:center; justify-content:space-between;
    gap:16px;
    padding:14px 0;
    flex-wrap:nowrap;
  }
  .topbar__actions{display:flex; gap:10px; align-items:center; flex-wrap:nowrap; white-space:nowrap}

  /* Mobile menu toggle */
  .menu-toggle{
    display:none;
    width:44px;
    height:44px;
    padding:0;
    border:none;
    background:transparent;
    cursor:pointer;
    position:relative;
    z-index:60;
  }
  .menu-icon,
  .menu-icon::before,
  .menu-icon::after{
    display:block;
    width:22px;
    height:2px;
    background:var(--text);
    border-radius:2px;
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    transition:all .2s ease;
  }
  .menu-icon{top:50%; margin-top:-1px}
  .menu-icon::before{content:''; top:-7px; left:0; transform:none}
  .menu-icon::after{content:''; top:7px; left:0; transform:none}
  .menu-toggle.is-open .menu-icon{background:transparent}
  .menu-toggle.is-open .menu-icon::before{top:0; transform:rotate(45deg)}
  .menu-toggle.is-open .menu-icon::after{top:0; transform:rotate(-45deg)}

  .brand{
    display:flex; align-items:center; gap:12px;
    min-width: 0;
    flex:0 0 auto;
  }
  .brand-logo{
    height:30px;
    width:auto;
    display:block;
    filter: drop-shadow(0 10px 28px rgba(0,0,0,.32));
  }
  .brand-sub{
    font-size:12px;
    color:var(--muted2);
    margin-top:2px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    max-width: 300px;
  }

  .nav{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:nowrap;
    justify-content:center;
    white-space:nowrap;
    flex:1 1 auto;
    min-width:0;
  }
  .nav a{
    font-size:13px;
    color:var(--muted);
    padding:8px 10px;
    border-radius:12px;
    border:1px solid transparent;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
  }
  .nav a:hover{
    color:var(--text);
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.16);
  }

  /* Mobile nav dropdown */
  .mobile-nav{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:rgba(11,15,23,.95);
    backdrop-filter:blur(16px);
    border-bottom:1px solid rgba(255,255,255,.08);
    padding:0;
    max-height:0;
    overflow:hidden;
    transition:max-height .3s ease, padding .3s ease;
  }
  .mobile-nav.is-open{
    max-height:400px;
    padding:16px 0;
  }
  .mobile-nav a{
    display:block;
    padding:14px 20px;
    font-size:15px;
    color:var(--muted);
    border-bottom:1px solid rgba(255,255,255,.06);
    transition:background .12s ease, color .12s ease;
  }
  .mobile-nav a:last-child{border-bottom:none}
  .mobile-nav a:hover,
  .mobile-nav a:active{
    color:var(--text);
    background:rgba(255,255,255,.04);
  }

  .btn{
    display:inline-flex; align-items:center; justify-content:center;
    gap:10px;
    padding:12px 14px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    font-weight:800;
    font-size:14px;
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
    white-space:nowrap;
  }
  .btn:hover{
    background: rgba(255,255,255,.11);
    border-color: rgba(255,255,255,.24);
    box-shadow: 0 0 0 1px rgba(255,255,255,.08);
  }
  .btn.primary{
    background: linear-gradient(135deg, rgba(42,171,238,1), rgba(142,227,255,.62));
    border-color: rgba(255,255,255,.22);
    color: rgba(11,15,23,.92);
    box-shadow: 0 18px 55px rgba(42,171,238,.22);
  }
  .btn.primary:hover{
    border-color: rgba(255,255,255,.35);
    box-shadow: 0 18px 55px rgba(42,171,238,.32), 0 0 0 1px rgba(42,171,238,.4);
  }
  .btn.small{padding:10px 12px; font-size:13px; border-radius:12px}

  .pill{
    display:inline-flex; align-items:center; gap:8px;
    font-size:12px; color:var(--muted);
    padding:7px 10px; border-radius:999px;
    border:1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.04);
  }
  .pill--full{width:100%; justify-content:space-between}
  .pill__link{font-weight:900; color:rgba(255,255,255,.86)}
  .dot{width:8px;height:8px;border-radius:99px;background:var(--ok); box-shadow:0 0 0 4px rgba(33,192,122,.14)}

  /* Type */
  .kicker{
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:.12em;
    color:var(--muted2);
    margin-bottom:10px;
  }
  .kicker--spaced{margin-bottom:12px}
  h1{
    margin:0 0 14px 0;
    font-size: clamp(30px, 4.2vw, 56px);
    line-height:1.02;
    letter-spacing:-0.055em;
  }
  h2{
    margin:0 0 14px 0;
    font-size: clamp(22px, 2.4vw, 34px);
    line-height:1.12;
    letter-spacing:-0.03em;
  }
  h3{margin:0 0 8px 0; font-size:16px; letter-spacing:-0.02em;}
  p{margin:0 0 14px 0; color:var(--muted)}
  .lead{font-size:16px; color:rgba(255,255,255,.74); max-width:62ch}
  .lead--wide{max-width:80ch; margin-bottom:0}
  .micro{font-size:12px; color:var(--muted2); margin-top:10px}
  .micro--center{text-align:center; margin-top:10px}

  /* Cards */
  .card{
    background: var(--card);
    border:1px solid rgba(255,255,255,.11);
    border-radius: var(--r);
    box-shadow: var(--shadow);
    overflow:hidden;
  }
  .inner{padding:22px}
  .inner--pad-top{padding-top:18px}

  /* Hero */
  .hero{padding:56px 0 44px}
  .hero .hero-card{
    grid-column:1 / -1;
    background:
      radial-gradient(850px 550px at 25% 0%, rgba(42,171,238,.20), transparent 60%),
      radial-gradient(700px 450px at 85% 10%, rgba(142,227,255,.12), transparent 65%),
      radial-gradient(700px 450px at 40% 120%, rgba(33,192,122,.10), transparent 65%),
      rgba(255,255,255,.05);
    border-color: rgba(255,255,255,.14);
  }
  .hero-cols{display:grid; grid-template-columns: 1.25fr .75fr; gap:18px}
  .hero-wordmark{
    height:40px;
    width:auto;
    display:block;
    margin-bottom:12px;
    filter: drop-shadow(0 14px 38px rgba(0,0,0,.40));
    opacity: .98;
  }
  .cta-row{display:flex; flex-wrap:wrap; gap:12px; align-items:center; margin-top:10px}
  .cta-row--spaced{margin-top:28px}

  /* Snapshot */
  .snap{
    background: rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.11);
    border-radius: var(--r);
    box-shadow: var(--shadow2);
  }

  /* Columns */
  .c12{grid-column:span 12}
  .c7{grid-column:span 7}
  .c5{grid-column:span 5}
  .c6{grid-column:span 6}
  .c3{grid-column:span 3; display:flex; flex-direction:column}
  .c3 > .feature,
  .c3 > .mock{flex:1}

  /* Feature cards */
  .feature{
    background: rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.10);
    border-radius: var(--r2);
    padding:16px;
    min-height: 150px;
    display:flex;
    flex-direction:column;
  }
  .feature p{margin:0; color:rgba(255,255,255,.60)}
  .ex{
    margin-top:auto;
    padding-top:10px;
    border-top:1px solid rgba(255,255,255,.10);
    font-size:12px;
    color: rgba(255,255,255,.62);
  }

  /* Tracking */
  .track{
    background: rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.12);
    border-radius: var(--r);
    overflow:hidden;
  }
  .track-head{
    display:flex; align-items:flex-end; justify-content:space-between;
    gap:14px;
    padding:18px 18px 12px;
    border-bottom:1px solid rgba(255,255,255,.10);
  }
  .hint{font-size:12px; color:var(--muted2)}
  .table-wrap{overflow:auto}
  table{width:100%; border-collapse:collapse; font-size:13px}
  th,td{padding:12px 14px; border-bottom:1px solid rgba(255,255,255,.08); vertical-align:top; text-align: center;}
  th{
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:.08em;
    color: rgba(255,255,255,.70);
    font-weight:900;
  }
  .track th:nth-child(1){min-width:110px}
  .track th:nth-child(2){min-width:260px}
  .track th:nth-child(3){min-width:170px}
  .track th:nth-child(4){min-width:140px}
  .track th:nth-child(5){min-width:130px}
  .track th:nth-child(6){min-width:130px}
  .muted{color:var(--muted2); font-size:12px}
  .strong{font-weight:900; color:rgba(255,255,255,.86)}
  .strong--sm{
    font-size:14px;
    text-align: center;
}
  .strong--md{font-size:20px}
  .strong--lg{font-size:20px}
  .strong--xl{font-size:22px}
  .pill-b{
    display:inline-flex; align-items:center;
    padding:7px 10px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.05);
    color: rgba(255,255,255,.76);
    font-size:12px;
    white-space:nowrap;
  }
  .badge{
    display:inline-flex; align-items:center;
    padding:7px 10px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.05);
    color: rgba(255,255,255,.76);
    font-size:12px;
    white-space:nowrap;
  }

  /* Post mocks */
  .mock{
    background: rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.11);
    border-radius: var(--r2);
    padding:20px;
  }
  .mock:first-of-type{
    margin-top: 24px;
  }
  .mock:not(:first-of-type){
    margin-top: 18px;
  }
  .m-title{font-weight:900; letter-spacing:-0.02em}
  .m-title--spaced{margin-bottom:8px}

  /* FAQ */
  details{
    background: rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.11);
    border-radius: var(--r2);
    padding:14px 16px;
    transition: all 0.2s ease;
  }
  summary{
    cursor:pointer;
    font-weight:900;
    letter-spacing:-0.02em;
    color: rgba(255,255,255,.86);
    list-style:none;
    display:flex; align-items:center; justify-content:space-between;
    gap:12px;
  }
  summary::-webkit-details-marker{display:none}
  summary:after{
    content:"+";
    width:28px;height:28px;border-radius:10px;
    display:grid; place-items:center;
    border:1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.78);
    flex:0 0 auto;
  }
  details[open] summary:after{content:"–"}
  .ans{margin-top:10px; color:var(--muted); font-size:13.5px; max-width:78ch; line-height:1.8; animation: fadeIn 0.2s ease}
  .ans--flush{margin-top:0}
  @keyframes fadeIn{
    from{opacity:0; transform:translateY(-4px)}
    to{opacity:1; transform:translateY(0)}
  }
  .ans ul{margin:0; padding:0 0 0 20px; list-style:disc}
  .ans li{margin-bottom:10px; padding-left:4px}
  .ans li:last-child{margin-bottom:0}
  .faq__list{display:grid; gap:12px}

  /* CTA band */
  .cta-band{
    background:
      radial-gradient(700px 300px at 30% 0%, rgba(42,171,238,.24), transparent 65%),
      radial-gradient(700px 300px at 85% 40%, rgba(33,192,122,.14), transparent 65%),
      rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.14);
    border-radius: var(--r);
    padding:22px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    flex-wrap:wrap;
    box-shadow: var(--shadow2);
  }
  .cta-band p{margin:6px 0 0; color: rgba(255,255,255,.72)}

  /* Modals */
  .modal{
    position: fixed;
    inset: 0;
    display: none;
    place-items: center;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(8px);
    z-index: 100;
    padding: 22px;
  }
  .modal:target{display:grid;}
  .modal-card{
    width: min(860px, 100%);
    max-height: min(82vh, 820px);
    overflow:auto;
    background: rgba(15, 23, 42, .92);
    border:1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .modal-head{
    display:flex; justify-content:space-between; align-items:center; gap:12px;
    padding: 18px 18px 10px;
    border-bottom:1px solid rgba(255,255,255,.10);
  }
  .x{
    width: 34px; height: 34px; border-radius: 12px;
    display:grid; place-items:center;
    border:1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.82);
    font-weight: 900;
  }
  .modal-body{padding: 16px 18px 20px}
  .modal-body p{color: rgba(255,255,255,.72)}
  .modal-body ul{margin:10px 0 14px 18px; color: rgba(255,255,255,.72)}
  .modal-body li{margin:6px 0}

  /* Footer */
  footer{
    padding:34px 0 52px;
    border-top:1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.12);
  }
  .foot{
    display:flex; justify-content:space-between; align-items:flex-start;
    gap:18px; flex-wrap:wrap;
    color: var(--muted2);
    font-size:13px;
  }
  .foot__intro{max-width:56ch}
  .foot__desc{margin-top:6px}
  .links{display:flex; gap:14px; flex-wrap:wrap}
  .links a{color: rgba(255,255,255,.76)}
  .links a:hover{color: rgba(255,255,255,.92)}
  .tiny{font-size:12px; color: rgba(255,255,255,.54)}
  .tiny--spaced{
    margin-top:10px;
    text-align: center;
}
  .tiny--compact{margin-top:8px}

  [id]{scroll-margin-top: 86px;}

  @media (max-width:980px){
    .topbar{position:relative}
    .nav{display:none}
    .mobile-nav{display:block}
    .menu-toggle{display:block}
    .topbar__actions .pill{display:none}
    .brand-sub{display:none}
    .hero-cols{grid-template-columns:1fr}
    .c7,.c5,.c6,.c4,.c3{grid-column:span 12}
    section{padding:62px 0}
    .brand{min-width:auto}
    .hero-wordmark{height:36px}
    .hero-cols > div:first-child { padding-right: 0; }
    .grid__end{justify-content:flex-start}
    .topbar-inner{padding:12px 0}
    .track-head{flex-direction:column; align-items:flex-start; gap:12px}
    .track-head .actions{width:100%}
  }
  @media (max-width:560px){
    .wrap{width:min(var(--max), calc(100% - 28px))}
    .inner{padding:18px}
    th:nth-child(3), td:nth-child(3){display:none}
    .foot{flex-direction:column; gap:28px}
    .foot__intro, .foot__notes{max-width:100%}
    .links{gap:10px}
    .links a{padding:8px 0}
    .cta-band{flex-direction:column; text-align:center; gap:16px}
    .cta-band .actions{justify-content:center; width:100%}
    .btn{width:100%; justify-content:center}
    .btn.small{width:auto}
    h1{font-size:clamp(26px, 7vw, 40px)}
    h2{font-size:clamp(20px, 5vw, 28px)}
    .feature{min-height:auto}
    .faq__list{gap:10px}
    details{padding:12px 14px}
    summary{font-size:14px}
  }

  /* Snapshot — stats inside */
  .stats-mini{
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.10);
  }
  .stats-title{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    margin-bottom: 10px;
  }
  .stats-title .label{
    font-weight: 900;
    color: rgba(255,255,255,.86);
    letter-spacing: -0.02em;
  }
  .stats-title .chip{
    font-size: 11px;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: rgba(255,255,255,.58);
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.05);
  }
  .stats-list{display:grid; gap:14px}
  .stat-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(0,0,0,.12);
  }
  .stat-k{color: rgba(255,255,255,.66); font-size: 13px;}
  .stat-v{font-weight: 900; color: rgba(255,255,255,.88); letter-spacing: -0.01em; font-size:16px;}
  .stats__note{margin-top:12px; color:rgba(255,255,255,.66); font-size:13px}
  .stats__actions{margin-top:12px}

  /* ===== HERO LEFT AIR (keep your screen 1 look) ===== */
  @media (min-width:981px){
    .hero-cols > div:first-child { padding-right: 24px; }
    .hero h1 { margin-bottom: 26px; }
    .hero .lead { margin-top: 0; margin-bottom: 38px; max-width: 58ch; }
    .hero .cta-row { margin-top: 34px; }
    .hero .micro { margin-top: 18px; }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }

  /* ===== BOOKIE FINDER ===== */
  .bookie-finder{
    padding: 56px 0 74px;
  }
  .bookie-finder__header{
    text-align: center;
    margin-bottom: 32px;
  }
  .bookie-finder__header h1{
    margin-bottom: 12px;
  }
  .bookie-finder__header .lead{
    max-width: 50ch;
    margin: 0 auto;
  }

  .bookie-finder__selector{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
  }
  .bookie-select__label{
    font-size: 14px;
    color: var(--muted);
  }
  .bookie-select__wrapper{
    position: relative;
    width: 100%;
    max-width: 320px;
  }
  .bookie-select{
    width: 100%;
    padding: 14px 44px 14px 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;
    cursor: pointer;
    appearance: none;
    transition: border-color .2s ease, background .2s ease;
  }
  .bookie-select:hover{
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.22);
  }
  .bookie-select:focus{
    outline: none;
    border-color: var(--tg);
  }
  .bookie-select option{
    background: var(--bg);
    color: var(--text);
  }
  .bookie-select__wrapper::after{
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--muted);
    pointer-events: none;
  }

  .bookie-detected{
    display: none;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
    background: rgba(42,171,238,.08);
    border: 1px solid rgba(42,171,238,.2);
    border-radius: 12px;
    font-size: 14px;
    color: var(--muted);
    max-width: 420px;
  }
  .bookie-detected__icon{
    font-size: 16px;
    flex-shrink: 0;
  }
  .bookie-detected__text{
    line-height: 1.5;
  }
  .bookie-detected__text strong{
    color: var(--text);
    font-weight: 600;
  }
  #detected-country-flag img{
    display: inline-block;
    vertical-align: middle;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  }

  .bookie-search__wrapper{
    position: relative;
    width: 100%;
    max-width: 420px;
  }
  .bookie-search{
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;
    transition: border-color .2s ease, background .2s ease;
  }
  .bookie-search::placeholder{
    color: var(--muted2);
  }
  .bookie-search:hover{
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.22);
  }
  .bookie-search:focus{
    outline: none;
    border-color: var(--tg);
    background: rgba(255,255,255,.08);
  }

  .bookie-suggestions{
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: rgba(15,23,42,.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;
    box-shadow: 0 14px 40px rgba(0,0,0,.45);
    max-height: 360px;
    overflow-y: auto;
    z-index: 100;
  }
  .bookie-suggestions::-webkit-scrollbar{
    width: 8px;
  }
  .bookie-suggestions::-webkit-scrollbar-track{
    background: rgba(255,255,255,.03);
    border-radius: 14px;
  }
  .bookie-suggestions::-webkit-scrollbar-thumb{
    background: rgba(255,255,255,.15);
    border-radius: 14px;
  }
  .bookie-suggestions::-webkit-scrollbar-thumb:hover{
    background: rgba(255,255,255,.25);
  }
  .bookie-suggestion{
    padding: 12px 16px;
    color: var(--muted);
    cursor: pointer;
    transition: background .12s ease, color .12s ease;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .bookie-suggestion:last-child{
    border-bottom: none;
  }
  .bookie-suggestion:hover{
    background: rgba(255,255,255,.08);
    color: var(--text);
  }
  .bookie-suggestion--active{
    background: rgba(42,171,238,.12);
    color: var(--tg2);
  }

  .bookie-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .bookie-card{
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.11);
    border-radius: var(--r);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    max-width: 360px;
    transition: box-shadow .2s ease, border-color .2s ease;
  }
  .bookie-card:hover{
    box-shadow: 0 18px 50px rgba(0,0,0,.35);
    border-color: rgba(255,255,255,.18);
  }

  .bookie-card__logo{
    width: 160px;
    height: 160px;
    object-fit: contain;
    border-radius: 12px;
    padding: 12px;
  }
  .bookie-card__name{
    font-size: 18px;
    font-weight: 900;
    color: var(--text);
    letter-spacing: -0.02em;
    margin: 0;
  }
  .bookie-card__bonus{
    font-size: 14px;
    font-weight: 700;
    color: var(--ok);
    background: rgba(33,192,122,.12);
    padding: 6px 12px;
    border-radius: 999px;
    margin: 4px 0;
  }
  .bookie-card__cta{
    margin-top: auto;
    padding-top: 8px;
    width: 100%;
  }
  .bookie-card__cta .btn{
    width: 100%;
  }

  .bookie-loading{
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 48px 20px;
    color: var(--muted);
  }
  .bookie-loading__spinner{
    width: 32px;
    height: 32px;
    border: 3px solid rgba(255,255,255,.12);
    border-top-color: var(--tg);
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  @keyframes spin{
    to{ transform: rotate(360deg); }
  }

  .bookie-empty{
    display: none;
    text-align: center;
    padding: 48px 20px;
    color: var(--muted);
  }
  .bookie-empty p{
    margin: 0 0 8px;
  }

  .bookie-finder__disclaimer{
    margin-top: 40px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .bookie-finder__disclaimer .tiny{
    line-height: 1.6;
  }

  @media (max-width: 768px){
    .bookie-grid{
      grid-template-columns: 1fr;
      max-width: 400px;
    }
  }
  @media (min-width: 769px) and (max-width: 1024px){
    .bookie-grid{
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
  }
  @media (min-width: 1025px){
    .bookie-grid{
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
  }
