:root {
      --bg: #050706;
      --bg-soft: #08110d;
      --card: rgba(9, 14, 13, 0.82);
      --card-2: rgba(16, 24, 20, 0.88);
      --text: #f6f2e7;
      --muted: rgba(246, 242, 231, 0.72);
      --line: rgba(138, 255, 188, 0.12);
      --green: #39e58d;
      --green-2: #1cc870;
      --gold: #f0ca63;
      --gold-2: #ffd977;
      --shadow: 0 18px 55px rgba(0, 0, 0, 0.42);
      --radius-xl: 30px;
      --radius-lg: 22px;
      --radius-md: 18px;
      --max: 1240px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    #home,
    #top-picks,
    #casinos,
    #watch,
    #telegram,
    #discord,
    #bonuses,
    #guides,
    #about {
      scroll-margin-top: 120px;
    }

    body {
      margin: 0;
      font-family: Inter, Arial, Helvetica, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 82% 8%, rgba(72, 255, 152, 0.14), transparent 18%),
        radial-gradient(circle at 12% 24%, rgba(62, 198, 123, 0.09), transparent 20%),
        radial-gradient(circle at 90% 72%, rgba(255, 210, 95, 0.06), transparent 20%),
        linear-gradient(180deg, #050706 0%, #040605 100%);
      overflow-x: hidden;
    }

    body::before,
    body::after {
      content: "";
      position: fixed;
      inset: auto;
      border-radius: 999px;
      pointer-events: none;
      z-index: -1;
      filter: blur(60px);
      opacity: 0.9;
    }

    body::before {
      width: 420px;
      height: 420px;
      top: -110px;
      right: -80px;
      background: rgba(53, 228, 132, 0.15);
      animation: drift 11s ease-in-out infinite alternate;
    }

    body::after {
      width: 360px;
      height: 360px;
      bottom: 8%;
      left: -100px;
      background: rgba(239, 202, 99, 0.08);
      animation: drift 14s ease-in-out infinite alternate-reverse;
    }

    @keyframes drift {
      from { transform: translate3d(0, 0, 0) scale(1); }
      to { transform: translate3d(30px, 25px, 0) scale(1.12); }
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .wrap {
      width: min(var(--max), calc(100% - 32px));
      margin: 0 auto;
    }

    .topbar {
      position: sticky;
      top: 14px;
      z-index: 40;
      padding-top: 14px;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 16px 22px;
      border: 1px solid rgba(73, 227, 137, 0.16);
      border-radius: 26px;
      background: linear-gradient(90deg, rgba(5, 8, 7, 0.92), rgba(9, 22, 15, 0.82), rgba(5, 8, 7, 0.92));
      backdrop-filter: blur(16px);
      box-shadow: var(--shadow);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }

    .brand-mark {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
}

@media (max-width: 680px) {
  .brand-mark {
    width: 54px;
    height: 54px;
  }
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

    .brand-copy strong {
      display: block;
      font-size: 1.02rem;
      letter-spacing: 0.08em;
    }

    .brand-copy img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 760px) {
  .brand-copy img {
    height: 32px;
  }
}

    .nav-links {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: flex-end;
      gap: 24px;
      font-weight: 700;
      color: rgba(255,255,255,0.88);
    }

    .nav-links a {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 24px;
      padding-bottom: 0;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 2px;
      transform: scaleX(0);
      transform-origin: left;
      background: linear-gradient(90deg, var(--gold), var(--green));
      transition: transform .28s ease;
      border-radius: 99px;
    }

    .nav-links a:hover::after { transform: scaleX(1); }

    .nav-item {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 24px;
      padding-bottom: 14px;
      margin-bottom: -14px;
    }

    .nav-trigger {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      min-height: 24px;
    }

    .nav-trigger::after {
      content: "▾";
      font-size: 0.75rem;
      opacity: 0.8;
      transform: translateY(-1px);
    }

    .dropdown {
      position: absolute;
      top: calc(100% - 2px);
      right: 0;
      min-width: 190px;
      padding: 10px;
      border-radius: 16px;
      border: 1px solid rgba(73, 227, 137, 0.16);
      background: linear-gradient(180deg, rgba(8, 12, 11, 0.98), rgba(10, 22, 16, 0.96));
      box-shadow: var(--shadow);
      opacity: 0;
      pointer-events: none;
      transform: translateY(8px);
      transition: opacity .22s ease, transform .22s ease;
      z-index: 60;
    }

    .dropdown a {
      display: block;
      padding: 12px 14px;
      border-radius: 12px;
      color: rgba(255,255,255,0.9);
      white-space: nowrap;
    }

    .dropdown a::after { display: none; }

    .dropdown a:hover {
      background: rgba(255,255,255,0.05);
      color: #fff;
    }

    .nav-item:hover .dropdown,
    .nav-item:focus-within .dropdown,
    .dropdown:hover {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .hero {
      position: relative;
      padding: 58px 0 28px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.08fr 0.92fr;
      gap: 28px;
      align-items: center;
    }

    .hero-copy,
    .hero-card,
    .table-card,
    .banner,
    .content-card,
    .faq-item,
    .category,
    .mini-card,
    .about-panel {
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .legal-mini {
      margin-top: 18px;
      padding-top: 18px;
      border-top: 1px solid rgba(255,255,255,0.08);
      color: rgba(255,255,255,0.54);
      font-size: 0.9rem;
      line-height: 1.7;
    }

    .legal-mini a,
    .text-link {
      color: rgba(255,255,255,0.66);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .legal-mini details {
      margin-top: 10px;
      border-radius: 14px;
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.06);
      padding: 12px 14px;
    }

    .legal-mini summary {
      cursor: pointer;
      font-weight: 700;
      color: rgba(255,255,255,0.78);
    }

    .legal-mini p {
      margin: 10px 0 0;
      color: rgba(255,255,255,0.56);
      font-size: 0.88rem;
      line-height: 1.75;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      border-radius: 999px;
      background: rgba(57, 229, 141, 0.08);
      border: 1px solid rgba(57, 229, 141, 0.18);
      color: #c5ffd9;
      font-size: 0.82rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      font-weight: 800;
    }

    .hero-copy {
      padding: 38px;
      border-radius: var(--radius-xl);
      background: linear-gradient(125deg, rgba(8, 12, 11, 0.9), rgba(10, 25, 17, 0.72) 45%, rgba(8, 12, 11, 0.92));
      position: relative;
      overflow: hidden;
    }

    .hero-copy::before {
      content: "";
      position: absolute;
      width: 220px;
      height: 220px;
      right: -40px;
      top: -30px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(240, 202, 99, 0.14), transparent 64%);
      pointer-events: none;
    }

    .hero h1 {
      font-family: Georgia, 'Times New Roman', serif;
      font-size: clamp(2.6rem, 5vw, 5rem);
      line-height: 0.98;
      letter-spacing: -0.03em;
      margin: 18px 0 18px;
    }

    .hero h1 .accent {
      color: var(--gold-2);
      text-shadow: 0 0 26px rgba(240, 202, 99, 0.16);
    }

    .hero p {
      margin: 0;
      max-width: 660px;
      color: var(--muted);
      font-size: 1.08rem;
      line-height: 1.8;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 28px;
    }

    .btn,
    .btn-alt {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 14px 24px;
      border-radius: 18px;
      font-weight: 900;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }

    .btn {
      color: #10140f;
      background: linear-gradient(90deg, var(--gold), var(--green));
      box-shadow: 0 14px 28px rgba(57, 229, 141, 0.16);
    }

    .btn-alt {
      border: 1px solid rgba(255,255,255,0.1);
      background: rgba(255,255,255,0.03);
      color: var(--text);
    }

    .btn:hover,
    .btn-alt:hover { transform: translateY(-2px); }

    .hero-card {
      position: relative;
      min-height: 100%;
      border-radius: var(--radius-xl);
      background: radial-gradient(circle at 60% 15%, rgba(57, 229, 141, 0.12), transparent 22%), linear-gradient(135deg, rgba(14, 17, 15, 0.96), rgba(10, 32, 20, 0.76));
      padding: 24px;
      overflow: hidden;
    }

    .hero-card::after {
      content: "";
      position: absolute;
      inset: auto -50px -50px auto;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(240, 202, 99, 0.16), transparent 60%);
      filter: blur(10px);
    }

    .logo-shell {
      position: relative;
      border-radius: 28px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.08);
      background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    }

    .logo-shell img {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
    }

    .logo-caption {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 16px;
    }

    .mini-card {
      border-radius: 18px;
      padding: 16px;
      background: rgba(255,255,255,0.03);
      text-align: center;
    }

    .mini-card strong {
      display: block;
      color: var(--gold-2);
      font-size: 1.35rem;
      margin-bottom: 4px;
    }

    .mini-card span {
      color: var(--muted);
      font-size: 0.9rem;
    }

    section { padding: 22px 0; }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 18px;
    }

    .section-head h2,
    .editorial h2,
    .bonus-block h2,
    .about h2 {
      margin: 0;
      font-family: Georgia, 'Times New Roman', serif;
      font-size: clamp(2rem, 3vw, 3.3rem);
      line-height: 1.02;
    }

    .section-head p,
    .editorial p.lead,
    .bonus-block p.lead,
    .about p.lead {
      margin: 10px 0 0;
      color: var(--muted);
      line-height: 1.8;
      max-width: 780px;
    }

    .table-card {
      border-radius: var(--radius-xl);
      background: linear-gradient(180deg, rgba(7, 10, 9, 0.98), rgba(8, 12, 11, 0.96));
      padding: 18px;
      overflow: hidden;
    }

    .table-head {
      display: grid;
      grid-template-columns: 88px 1.35fr 1.7fr 1fr 1fr 165px;
      gap: 18px;
      padding: 8px 12px 16px;
      color: rgba(255,255,255,0.45);
      text-transform: uppercase;
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      font-weight: 800;
    }

    .casino-row {
      position: relative;
      display: grid;
      grid-template-columns: 88px 1.35fr 1.7fr 1fr 1fr 165px;
      gap: 18px;
      align-items: center;
      padding: 24px 18px;
      margin: 0 0 16px;
      border-radius: 24px;
      border: 1px solid rgba(95, 244, 153, 0.11);
      background: linear-gradient(90deg, rgba(8, 12, 11, 0.95), rgba(10, 24, 18, 0.84), rgba(8, 12, 11, 0.95));
      overflow: hidden;
      transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
    }

    .casino-row::before {
      content: "";
      position: absolute;
      right: 28px;
      top: 50%;
      width: 160px;
      height: 70%;
      transform: translateY(-50%);
      border-radius: 999px;
      background: radial-gradient(circle, rgba(57, 229, 141, 0.12), transparent 68%);
      filter: blur(8px);
      pointer-events: none;
    }

    .casino-row:hover {
      transform: translateY(-3px);
      border-color: rgba(240, 202, 99, 0.2);
      box-shadow: 0 22px 42px rgba(0, 0, 0, 0.34);
    }

    .row-badge {
      position: absolute;
      left: 18px;
      top: 10px;
      padding: 6px 10px;
      border-radius: 999px;
      font-size: 0.65rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #fff8eb;
      background: linear-gradient(90deg, #cf2935, #f4535f);
      box-shadow: 0 10px 18px rgba(244, 83, 95, 0.2);
    }

    .rank {
      font-family: Georgia, 'Times New Roman', serif;
      font-size: 3rem;
      font-weight: 900;
      line-height: 1;
      padding-top: 6px;
    }

    .casino-name {
      font-size: 1.55rem;
      font-weight: 900;
      letter-spacing: 0.02em;
    }

    .casino-sub,
    .bonus-copy,
    .payout,
    .review-link,
    .row-note { color: var(--muted); }

    .casino-sub,
    .row-note { font-size: 0.92rem; margin-top: 4px; }
    .bonus-copy { line-height: 1.65; font-weight: 700; }
    .payout { font-weight: 800; }

    .stars {
      font-size: 1.2rem;
      letter-spacing: 0.12em;
      color: var(--gold);
      text-shadow: 0 0 12px rgba(240, 202, 99, 0.12);
      white-space: nowrap;
    }

    .actions {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 10px;
    }

    .review-link {
      text-decoration: underline;
      text-underline-offset: 3px;
      font-weight: 800;
    }

    .go-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      min-width: 138px;
      padding: 12px 20px;
      border-radius: 18px;
      color: #0f160f;
      font-weight: 900;
      background: linear-gradient(90deg, var(--green), #87ffb8);
      box-shadow: 0 14px 25px rgba(57, 229, 141, 0.18);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .banner {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 24px;
      align-items: center;
      margin-top: 18px;
      padding: 34px;
      border-radius: 34px;
      background: radial-gradient(circle at 24% 50%, rgba(255, 218, 125, 0.22), transparent 22%), linear-gradient(90deg, #152d63 0%, rgba(88, 54, 17, 0.7) 48%, rgba(10, 12, 11, 0.95) 100%);
      overflow: hidden;
      position: relative;
    }

    .banner::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
      transform: translateX(-100%);
      animation: shine 8s linear infinite;
    }

    @keyframes shine { to { transform: translateX(100%); } }

    .banner h3 {
      margin: 0;
      font-family: Georgia, 'Times New Roman', serif;
      font-size: clamp(2rem, 4vw, 4rem);
      color: #fff3c4;
      line-height: 1;
    }

    .banner p {
      margin: 14px 0 0;
      color: rgba(255, 245, 214, 0.82);
      line-height: 1.8;
      max-width: 560px;
    }

    .banner-cta {
      justify-self: end;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 22px 36px;
      border-radius: 999px;
      font-size: 1.2rem;
      font-weight: 900;
      color: #fff2ba;
      background: #122860;
      border: 4px solid var(--gold);
      box-shadow: 0 14px 35px rgba(0,0,0,0.26);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }



    .top-picks-section {
      margin-top: 18px;
    }

    .top-picks-head {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 22px;
      align-items: end;
      margin-bottom: 22px;
    }

    .top-picks-trust {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 10px;
    }

    .top-picks-trust span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      border-radius: 999px;
      border: 1px solid rgba(73, 227, 137, 0.16);
      background: rgba(255,255,255,0.03);
      color: rgba(246, 242, 231, 0.88);
      font-size: 0.86rem;
      font-weight: 700;
      letter-spacing: 0.03em;
    }

    .top-picks-grid {
      display: grid;
      grid-template-columns: 1.22fr 1fr 1fr;
      gap: 18px;
      align-items: stretch;
    }

    .top-pick-card {
      --pick-accent: rgba(73, 227, 137, 0.9);
      --pick-soft: rgba(73, 227, 137, 0.16);
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 16px;
      min-height: 100%;
      padding: 26px;
      border-radius: 30px;
      border: 1px solid rgba(255,255,255,0.08);
      background:
        radial-gradient(circle at top left, rgba(255,255,255,0.06), transparent 28%),
        linear-gradient(165deg, rgba(12, 18, 16, 0.98), rgba(7, 11, 10, 0.96));
      box-shadow: 0 22px 52px rgba(0, 0, 0, 0.34);
      overflow: hidden;
      isolation: isolate;
    }

    .top-pick-card::before {
      content: "";
      position: absolute;
      inset: 1px;
      border-radius: 29px;
      background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent 26%, rgba(255,255,255,0.02));
      opacity: 0.9;
      pointer-events: none;
      z-index: 0;
    }

    .top-pick-card::after {
      content: "";
      position: absolute;
      inset: auto 18px 0;
      height: 4px;
      border-radius: 999px;
      background: linear-gradient(90deg, transparent, var(--pick-accent), transparent);
      opacity: 0.9;
      z-index: 1;
    }

    .top-pick-card.rank-1 {
      --pick-accent: #f3c661;
      --pick-soft: rgba(243, 198, 97, 0.2);
      transform: translateY(-2px) scale(1.01);
      box-shadow: 0 30px 72px rgba(0, 0, 0, 0.42);
      border-color: rgba(243, 198, 97, 0.22);
    }

    .top-pick-card.rank-2 {
      --pick-accent: #45e38a;
      --pick-soft: rgba(69, 227, 138, 0.18);
      border-color: rgba(69, 227, 138, 0.18);
    }

    .top-pick-card.rank-3 {
      --pick-accent: #62cfff;
      --pick-soft: rgba(98, 207, 255, 0.18);
      border-color: rgba(98, 207, 255, 0.18);
    }

    .top-pick-card.is-featured {
      box-shadow: 0 28px 68px rgba(0, 0, 0, 0.44);
    }

    .pick-orb {
      position: absolute;
      width: 220px;
      height: 220px;
      top: -86px;
      right: -74px;
      border-radius: 50%;
      background: radial-gradient(circle, var(--pick-soft), transparent 68%);
      filter: blur(2px);
      z-index: 0;
      pointer-events: none;
    }

    .pick-noise {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(255,255,255,0.04), transparent 20%),
        linear-gradient(0deg, rgba(255,255,255,0.02), transparent 26%);
      mix-blend-mode: screen;
      opacity: 0.55;
      pointer-events: none;
      z-index: 0;
    }

    .pick-badges {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }

    .pick-rank,
    .pick-tag {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 34px;
      padding: 8px 12px;
      border-radius: 999px;
      font-weight: 900;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      font-size: 0.76rem;
      backdrop-filter: blur(12px);
    }

    .pick-rank {
      background: linear-gradient(90deg, var(--gold), var(--gold-2));
      color: #12110c;
      box-shadow: 0 12px 24px rgba(240, 202, 99, 0.18);
    }

    .pick-tag {
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.04);
      color: rgba(246, 242, 231, 0.9);
    }

    .pick-header {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: start;
      gap: 18px;
    }

    .pick-heading-stack {
      display: grid;
      grid-template-rows: auto auto minmax(48px, auto);
      align-content: start;
      min-width: 0;
      min-height: 142px;
    }

    .pick-label {
      margin: 0 0 8px;
      color: var(--pick-accent);
      font-size: 0.8rem;
      font-weight: 900;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      line-height: 1.25;
      min-height: 1.25rem;
    }

    .pick-header h3 {
      margin: 0;
      font-family: Georgia, 'Times New Roman', serif;
      font-size: 2rem;
      line-height: 1.02;
      min-height: 2.1rem;
      color: #fff3c4;
      text-shadow: 0 0 18px rgba(255, 243, 196, 0.06);
    }

    .pick-promo {
      display: inline-flex;
      align-items: center;
      align-self: start;
      gap: 6px;
      margin-top: 10px;
      padding: 10px 14px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.035);
      font-size: 0.88rem;
      color: var(--muted);
      font-weight: 800;
      width: fit-content;
      max-width: 100%;
      white-space: nowrap;
    }

    .pick-promo strong {
      color: var(--gold-2);
      letter-spacing: 0.03em;
      margin-left: 0;
    }

    .pick-promo-placeholder {
      visibility: hidden;
      pointer-events: none;
    }

    .pick-score {
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: flex-end;
      gap: 2px;
      padding: 12px 16px;
      border-radius: 20px;
      background: rgba(255,255,255,0.045);
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
      white-space: nowrap;
    }

    .pick-score strong {
      font-size: 1.85rem;
      line-height: 1;
      color: var(--gold-2);
    }

    .pick-score span {
      font-size: 0.95rem;
      color: rgba(246, 242, 231, 0.66);
      line-height: 1.2;
    }

    .pick-bonus {
      position: relative;
      z-index: 1;
      margin: 0;
      font-size: 1.08rem;
      font-weight: 800;
      color: #fff;
      line-height: 1.5;
      max-width: 38ch;
      min-height: 5rem;
    }

    .pick-meta {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .pick-meta-chip {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,0.07);
      background: rgba(255,255,255,0.035);
      color: rgba(246, 242, 231, 0.88);
      font-size: 0.84rem;
      font-weight: 700;
    }

    .pick-meta-chip em {
      font-style: normal;
      color: rgba(246, 242, 231, 0.56);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-size: 0.7rem;
    }

    .pick-meta-chip strong {
      color: #fff;
      font-size: 0.88rem;
      letter-spacing: 0.02em;
    }

    .pick-points {
      position: relative;
      z-index: 1;
      list-style: none;
      display: grid;
      gap: 10px;
      padding: 0;
      margin: 0;
    }

    .pick-points li {
      display: grid;
      grid-template-columns: 18px 1fr;
      gap: 10px;
      align-items: start;
      padding: 14px 16px;
      border-radius: 18px;
      background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.025));
      border: 1px solid rgba(255,255,255,0.07);
      color: var(--muted);
      line-height: 1.55;
      font-weight: 700;
    }

    .pick-point-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 18px;
      height: 18px;
      border-radius: 999px;
      color: var(--pick-accent);
      font-size: 0.78rem;
      line-height: 1;
      transform: translateY(2px);
      text-shadow: 0 0 10px var(--pick-soft);
    }

    .pick-actions {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: auto;
      padding-top: 6px;
    }

    .pick-actions .btn {
      width: 100%;
      justify-content: center;
      box-shadow: 0 14px 28px rgba(57, 229, 141, 0.18);
    }

    .pick-review-link {
      text-align: center;
      font-weight: 800;
      color: rgba(255, 245, 214, 0.84);
      text-decoration: underline;
      text-decoration-color: rgba(240, 202, 99, 0.45);
      text-underline-offset: 4px;
    }
    .categories-grid, .content-grid { display: grid; gap: 18px; }
    .categories-grid { grid-template-columns: repeat(5, 1fr); margin-top: 24px; }

    .category {
      min-height: 170px;
      display: flex;
      align-items: end;
      padding: 24px;
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.03));
      position: relative;
      overflow: hidden;
    }

    .category::before {
      content: "";
      position: absolute;
      inset: -20% auto auto -15%;
      width: 140px;
      height: 140px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(57,229,141,0.12), transparent 64%);
    }

    .category strong {
      position: relative;
      z-index: 1;
      font-family: Georgia, 'Times New Roman', serif;
      font-size: 1.5rem;
      line-height: 1.1;
      text-transform: uppercase;
    }

    .editorial, .about, .bonus-block { margin-top: 34px; }
    .content-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; margin-top: 18px; }
    .content-stack { display: grid; gap: 16px; }

    .content-card {
      border-radius: 26px;
      padding: 28px;
      background: linear-gradient(180deg, rgba(7, 9, 8, 0.95), rgba(8, 13, 11, 0.94));
    }

    .content-card h3 {
      margin: 0 0 14px;
      font-family: Georgia, 'Times New Roman', serif;
      font-size: 2rem;
      line-height: 1.08;
    }

    .content-card p, .faq-body, .about-copy, .list-pills li {
      color: var(--muted);
      line-height: 1.85;
      margin: 0;
    }

    .list-pills {
      list-style: none;
      padding: 0;
      margin: 18px 0 0;
      display: grid;
      gap: 12px;
    }

    .list-pills li {
      padding: 16px 18px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.07);
      background: rgba(255,255,255,0.02);
      font-weight: 700;
    }

    .about-layout {
      display: grid;
      grid-template-columns: 0.8fr 1.2fr;
      gap: 24px;
      align-items: start;
      margin-top: 18px;
    }

    .about-panel {
      border-radius: 30px;
      padding: 34px;
      background: radial-gradient(circle at 70% 50%, rgba(57, 229, 141, 0.12), transparent 22%), linear-gradient(90deg, rgba(5, 8, 7, 0.96), rgba(10, 22, 16, 0.82), rgba(5, 8, 7, 0.96));
    }

    .faq-list { display: grid; gap: 14px; margin-top: 24px; }

    .faq-item {
      border-radius: 24px;
      background: linear-gradient(90deg, rgba(8, 11, 10, 0.96), rgba(10, 24, 18, 0.86), rgba(8, 11, 10, 0.96));
      overflow: hidden;
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 24px 26px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      font-family: Georgia, 'Times New Roman', serif;
      font-size: 1.6rem;
      font-weight: 900;
    }

    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item span.icon { flex: 0 0 auto; font-size: 2rem; color: var(--gold-2); transition: transform .22s ease; }
    .faq-item[open] span.icon { transform: rotate(90deg); }
    .faq-body { padding: 0 26px 24px; max-width: 900px; }

    footer {
      margin-top: 42px;
      padding: 34px 0 60px;
      color: rgba(255,255,255,0.52);
      text-align: center;
      font-size: 0.95rem;
    }



    @media (max-width: 1080px) {
      .top-picks-grid {
        grid-template-columns: 1fr 1fr;
      }

      .top-pick-card.is-featured {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 1180px) {
      .hero-grid,
      .top-picks-head,
      .top-picks-grid,
      .banner,
      .content-grid,
      .about-layout,
      footer .content-grid {
        grid-template-columns: 1fr;
      }

      .hero-copy,
      .hero-card,
      .top-pick-card,
      .table-card,
      .banner,
      .content-card,
      .about-panel {
        padding: 24px;
      }

      .logo-caption {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .casino-row,
      .table-head {
        grid-template-columns: 74px 1.2fr 1.5fr 0.9fr 0.8fr 150px;
        gap: 14px;
      }

      .casino-name {
        font-size: 1.3rem;
      }
    }

    @media (max-width: 920px) {
      .wrap {
        width: min(var(--max), calc(100% - 24px));
      }

      .nav {
        padding: 14px 16px;
        gap: 14px;
      }

      .nav-links {
        gap: 14px;
        font-size: 0.92rem;
      }

      .top-picks-trust {
        justify-content: flex-start;
      }

      .hero {
        padding: 34px 0 18px;
      }

      .hero h1 {
        font-size: clamp(2.3rem, 6vw, 3.4rem);
      }

      .banner-cta {
        justify-self: start;
      }

      .table-head {
        display: none;
      }

      .casino-row {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        padding: 46px 18px 18px;
      }

      .casino-row::before {
        width: 120px;
      }

      .rank-box {
        grid-column: 1 / 2;
      }

      .casino-box,
      .bonus-box {
        grid-column: 1 / -1;
      }

      .payout-box,
      .rating-box {
        grid-column: span 1;
      }

      .action-box {
        grid-column: 1 / -1;
      }

      .actions {
        align-items: stretch;
      }

      .go-btn,
      .review-link {
        text-align: center;
      }
    }

    @media (max-width: 680px) {
      .topbar {
        top: 8px;
        padding-top: 8px;
      }

      .wrap {
        width: min(var(--max), calc(100% - 18px));
      }

      .nav {
        border-radius: 20px;
      }

      .brand-mark {
        width: 46px;
        height: 46px;
      }

      .brand-copy strong {
        font-size: 0.94rem;
      }

      .brand-copy span {
        font-size: 0.62rem;
        letter-spacing: 0.16em;
      }

      .nav-links {
        display: none;
      }

      .hero-copy,
      .hero-card,
      .top-pick-card,
      .table-card,
      .banner,
      .content-card,
      .about-panel,
      .faq-item {
        padding: 20px;
        border-radius: 22px;
      }

      .hero h1 {
        font-size: 2.1rem;
      }

      .hero p,
      .section-head p,
      .editorial p.lead,
      .bonus-block p.lead,
      .about p.lead {
        font-size: 0.98rem;
        line-height: 1.7;
      }

      .hero-actions {
        flex-direction: column;
      }

      .pick-header {
        flex-direction: column;
      }

      .pick-score {
        align-self: flex-start;
      }

      .hero-actions .btn,
      .hero-actions .btn-alt,
      .banner-cta,
      .go-btn {
        width: 100%;
      }

      .pick-actions .btn,
      .pick-review-link {
        width: 100%;
      }


      .logo-caption {
        grid-template-columns: 1fr;
      }

      .casino-row {
        grid-template-columns: 1fr;
        padding-top: 42px;
      }

      .rank-box,
      .casino-box,
      .bonus-box,
      .payout-box,
      .rating-box,
      .action-box {
        grid-column: auto;
      }

      .rank {
        font-size: 2.4rem;
      }

      .casino-name {
        font-size: 1.2rem;
      }

      .banner h3,
      .section-head h2,
      .editorial h2,
      .bonus-block h2,
      .about h2,
      .content-card h3,
      .pick-header h3,
      .faq-item summary {
        font-size: 1.6rem;
      }

      .faq-item summary {
        padding: 18px 20px;
      }

      .faq-body {
        padding: 0 20px 20px;
      }

      footer .content-grid {
        grid-template-columns: 1fr !important;
      }
    }

    @media (max-width: 420px) {
      .eyebrow {
        width: 100%;
        justify-content: center;
        text-align: center;
        font-size: 0.72rem;
        letter-spacing: 0.1em;
      }

      .hero h1 {
        font-size: 1.85rem;
      }

      .banner h3,
      .section-head h2,
      .editorial h2,
      .bonus-block h2,
      .about h2,
      .pick-header h3 {
        font-size: 1.45rem;
      }

      .btn,
      .btn-alt,
      .go-btn,
      .banner-cta {
        min-height: 48px;
        padding: 12px 16px;
        font-size: 0.86rem;
      }
    }

    body::after {
      content:"";
      position:fixed;
      inset:0;
      background:url('https://images.unsplash.com/photo-1605810230434-7631ac76ec81?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
      opacity:0.06;
      z-index:-2;
    }

    .hero-card::before {
      content:"";
      position:absolute;
      inset:0;
      background:url('https://images.unsplash.com/photo-1511512578047-dfb367046420?q=80&w=1200&auto=format&fit=crop') center/cover no-repeat;
      opacity:0.08;
    }

    .banner {
      background: linear-gradient(90deg, rgba(18,45,99,0.9), rgba(0,0,0,0.85)), url('https://images.unsplash.com/photo-1596838132731-3301c3fd4317?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
    }

    .cookie-banner-soft{
      position:fixed;
      left:18px;
      right:18px;
      bottom:18px;
      z-index:120;
      display:none;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      padding:16px 18px;
      border-radius:20px;
      background:linear-gradient(135deg, rgba(7, 11, 9, 0.96), rgba(9, 17, 13, 0.94));
      border:1px solid rgba(255,255,255,0.08);
      box-shadow:0 20px 50px rgba(0,0,0,0.38);
      backdrop-filter:blur(14px);
    }

    .cookie-banner-soft.is-visible{
      display:flex;
    }

    .cookie-banner-copy{
      display:grid;
      gap:4px;
    }

    .cookie-banner-copy strong{
      font-family: Arial, Helvetica, sans-serif;
      font-size:0.95rem;
      letter-spacing:0.03em;
      color:rgba(255,255,255,0.9);
    }

    .cookie-banner-copy span{
      color:rgba(255,255,255,0.66);
      font-size:0.88rem;
      line-height:1.6;
    }

    .cookie-banner-actions{
      display:flex;
      gap:10px;
      flex:0 0 auto;
      align-items:center;
    }

    @media (max-width: 760px){
      .cookie-banner-soft{
        left:10px;
        right:10px;
        bottom:10px;
        flex-direction:column;
        align-items:stretch;
      }

      .cookie-banner-actions{
        width:100%;
      }

      .cookie-banner-actions .btn,
      .cookie-banner-actions .btn-alt{
        width:100%;
      }
    }

.cookie-banner-soft{
  position:fixed;
  left:18px;
  right:18px;
  bottom:18px;
  z-index:120;
  display:none;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:16px 18px;
  border-radius:20px;
  background:linear-gradient(135deg, rgba(7, 11, 9, 0.96), rgba(9, 17, 13, 0.94));
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 20px 50px rgba(0,0,0,0.38);
  backdrop-filter:blur(14px);
}
.cookie-banner-soft.is-visible{
  display:flex;
}
.cookie-banner-copy{
  display:grid;
  gap:4px;
}
.cookie-banner-copy strong{
  font-family: Arial, Helvetica, sans-serif;
  font-size:0.95rem;
  letter-spacing:0.03em;
  color:rgba(255,255,255,0.9);
}
.cookie-banner-copy span{
  color:rgba(255,255,255,0.66);
  font-size:0.88rem;
  line-height:1.6;
}
.cookie-banner-actions{
  display:flex;
  gap:10px;
  flex:0 0 auto;
  align-items:center;
}
@media (max-width: 760px){
  .cookie-banner-soft{
    left:10px;
    right:10px;
    bottom:10px;
    flex-direction:column;
    align-items:stretch;
  }
  .cookie-banner-actions{
    width:100%;
  }
  .cookie-banner-actions .btn,
  .cookie-banner-actions .btn-alt{
    width:100%;
  }
}


.casino-promo {
  margin-top: 6px;
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 700;
}

.casino-promo strong {
  color: var(--gold-2);
  letter-spacing: 0.03em;
}

.go-btn.is-disabled,
.review-link.is-disabled {
  opacity: 0.55;
  pointer-events: none;
}

.table-render-slot {
  margin-top: 18px;
}

    @media (max-width: 900px) {
      .pick-heading-stack {
        min-height: 0;
      }

      .pick-promo {
        white-space: normal;
      }

      .pick-bonus {
        min-height: 0;
      }
    }


/* pros cons */
.pros {color:#00ff99;}
.cons {color:#ff6b6b;}


/* Sticky CTA: mobile and tablet only */
.sticky-cta {
  display: none;
}

@media (max-width: 1024px) {
  .sticky-cta {
    display: block;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 9999;
    pointer-events: none;
  }

  .sticky-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px 18px;
    border-radius: 16px;
    background: linear-gradient(90deg, #f3cf69 0%, #4bf59d 100%);
    color: #07110b;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: 0.01em;
    box-shadow: 0 18px 36px rgba(22, 235, 141, 0.24);
    animation: stickyPulse 1.9s infinite;
    pointer-events: auto;
  }
}

@keyframes stickyPulse {
  0% { box-shadow: 0 0 0 0 rgba(75, 245, 157, 0.34), 0 18px 36px rgba(22, 235, 141, 0.24); }
  70% { box-shadow: 0 0 0 14px rgba(75, 245, 157, 0), 0 18px 36px rgba(22, 235, 141, 0.24); }
  100% { box-shadow: 0 0 0 0 rgba(75, 245, 157, 0), 0 18px 36px rgba(22, 235, 141, 0.24); }
}

/* FAQ */
.faq-section {
  margin-top: 42px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 24px 28px;
  border-radius: 24px;
  border: 1px solid rgba(73, 227, 137, 0.14);
  background:
    radial-gradient(circle at right top, rgba(73, 227, 137, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(9, 15, 13, 0.96), rgba(5, 10, 9, 0.96));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  overflow: hidden;
}

.faq-item h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.3;
  color: #f6f2e7;
}

.faq-item p {
  margin: 0;
  color: rgba(246, 242, 231, 0.82);
  line-height: 1.65;
  font-size: 1rem;
}

@media (max-width: 640px) {
  .faq-item {
    padding: 18px 18px;
    border-radius: 18px;
  }

  .faq-item h3 {
    font-size: 1.02rem;
  }

  .faq-item p {
    font-size: 0.95rem;
    line-height: 1.55;
  }
}
