
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    :root {
      --bg:          #06101f;
      --bg-card:     #0d1e35;
      --bg-card2:    #0f2240;
      --border:      #1b3056;
      --border-glow: #1e4080;
      --orange:      #f97316;
      --yellow:      #fbbf24;
      --cyan:        #38bdf8;
      --cyan2:       #0ea5e9;
      --pink:        #f43f5e;
      --green:       #22c55e;
      --purple:      #a78bfa;
      --text:        #dce8f8;
      --muted:       #6b8ab0;
      --dim:         #3a5270;
      --fd: 'Barlow Condensed', sans-serif;
      --fb: 'Barlow', sans-serif;
      --r:  12px;
      --r2: 18px;
    }

    body { background: var(--bg); color: var(--text); font-family: var(--fb); font-size: 16px; line-height: 1.65; overflow-x: hidden; }

    

    /* ═══ HEADER ═══════════════════════════════════════════════ */
    .site-header {
      position: sticky; top: 0; z-index: 200;
      background: linear-gradient(180deg,#030c1a 0%,rgba(3,12,26,.97) 100%);
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(12px);
    }
    .header-inner {
      max-width: 1260px; margin: 0 auto; padding: 0 20px;
      height: 64px;
      display: flex; align-items: center; gap: 16px;
    }
    .logo-link { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
    .logo-link img { display: block; max-height: 60px; width: auto; }
    /* REPLACED BY IMG     .logo-ball {
      width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
      background: radial-gradient(circle at 38% 35%,#fb923c 0%,#c2410c 60%,#7c2d12 100%);
      box-shadow: 0 0 18px rgba(249,115,22,.55);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--fd); font-weight: 900; font-size: 16px; color: #fff;
    } */
    /* REPLACED BY IMG     .logo-text { font-family: var(--fd); font-weight: 900; font-size: 22px; line-height: 1; } */
    /* REPLACED BY IMG     .logo-text b { color: var(--orange); } */
    /* REPLACED BY IMG     .logo-sub { font-size: 10px; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 1px; } */

    .nav-cats { display: flex; gap: 2px; align-items: center; flex: 1; }
    .nav-cat {
      font-family: var(--fd); font-size: 13px; font-weight: 700; letter-spacing: .5px;
      text-transform: uppercase; color: var(--muted);
      padding: 6px 11px; border-radius: 7px; text-decoration: none;
      transition: color .15s, background .15s; white-space: nowrap;
    }
    .nav-cat:hover { color: var(--text); background: rgba(255,255,255,.06); }

    /* Header buttons group — right side */
    .header-btns { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
    .btn-login {
      display: inline-flex; align-items: center; justify-content: center;
      text-decoration: none; white-space: nowrap;
      font-family: var(--fd); font-weight: 700; font-size: 14px;
      letter-spacing: .5px; text-transform: uppercase;
      padding: 9px 20px; border-radius: 8px;
      border: 1px solid var(--border-glow); color: var(--cyan);
      transition: background .15s, border-color .15s;
    }
    .btn-login:hover { background: rgba(56,189,248,.08); border-color: var(--cyan); }
    .btn-register {
      display: inline-flex; align-items: center; justify-content: center;
      text-decoration: none; white-space: nowrap;
      font-family: var(--fd); font-weight: 700; font-size: 14px;
      letter-spacing: .5px; text-transform: uppercase;
      padding: 9px 22px; border-radius: 8px;
      background: linear-gradient(135deg,#f97316,#ea580c);
      color: #fff; box-shadow: 0 0 16px rgba(249,115,22,.35);
      transition: box-shadow .18s, filter .18s, transform .15s;
    }
    .btn-register:hover { box-shadow: 0 0 28px rgba(249,115,22,.6); filter: brightness(1.1); transform: translateY(-1px); }

    /* ═══ UNIVERSAL BUTTONS ═══════════════════════════════════ */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 6px;
      text-decoration: none;
      font-family: var(--fd); font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
      border-radius: 10px; transition: filter .18s, transform .15s, box-shadow .18s;
      white-space: nowrap;
    }
    .btn:hover { filter: brightness(1.12); transform: translateY(-1px); }
    .btn-primary {
      background: linear-gradient(135deg,#f97316 0%,#dc2626 100%);
      color: #fff; font-size: 17px; padding: 13px 32px;
      box-shadow: 0 0 26px rgba(249,115,22,.4);
    }
    .btn-primary:hover { box-shadow: 0 0 44px rgba(249,115,22,.65); }
    .btn-optin {
      background: linear-gradient(90deg,#f97316 0%,#fbbf24 100%);
      color: #fff; font-size: 14px; padding: 10px 0;
      width: 100%; border-radius: 8px; letter-spacing: 1px;
      box-shadow: 0 2px 16px rgba(249,115,22,.3);
    }
    .btn-optin:hover { box-shadow: 0 4px 28px rgba(249,115,22,.6); transform: translateY(-1px); }
    .arr-btn {
      display: inline-flex; align-items: center; justify-content: center;
      width: 28px; height: 28px; border-radius: 6px;
      border: 1px solid var(--border); color: var(--muted);
      text-decoration: none; font-size: 14px;
      transition: border-color .15s, color .15s;
    }
    .arr-btn:hover { border-color: var(--cyan); color: var(--cyan); }

    /* ═══ HERO ════════════════════════════════════════════════ */
    .hero {
      position: relative; overflow: hidden;
      min-height: 480px; display: flex; align-items: center;
    }
    /* IMAGE PLACEHOLDER — replace src in .hero-bg background when you have the image */
    .hero-bg {
      position: absolute; inset: 0;
      background: url('/img/banner.png') no-repeat center center;
      background: image-set(
        url('/img/banner.avif') type('image/avif'),
        url('/img/banner.webp') type('image/webp'),
        url('/img/banner.png')  type('image/png')
      ) no-repeat center center;
      background-size: cover;
      filter: brightness(.80) saturate(1.0);
    }
    /* Fallback if no image yet — dark gradient */
    .hero-bg-fallback {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, #060f20 0%, #0d1f3c 50%, #081528 100%);
      z-index: 0;
    }
    .hero-grad {
      position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(100deg, rgba(6,16,31,.97) 40%, rgba(6,16,31,.45) 100%);
    }
    /* Right-side image zone — where the mascot/promo image goes */
    .hero-img-zone {
      position: absolute; right: 0; top: 0; bottom: 0;
      width: 55%; z-index: 1;
      /* This is where your banner image should appear.
         When you add the real image, set it here as background or use an <img> tag.
         The zone is darkened on left via hero-grad overlay. */
      display: flex; align-items: flex-end; justify-content: flex-end;
    }
    .hero-img-placeholder {
      width: 100%; height: 100%;
      background: linear-gradient(135deg, transparent 0%, rgba(249,115,22,.03) 50%, rgba(56,189,248,.05) 100%);
      /* Replace this with your actual image:
         background: url('dudespin-banner.png') no-repeat right bottom / contain; */
    }
    .hero-content {
      position: relative; z-index: 2;
      max-width: 1260px; margin: 0 auto; padding: 72px 20px;
      width: 100%;
    }
    .hero-eyebrow {
      font-family: var(--fd); font-size: 11px; font-weight: 700;
      letter-spacing: 3px; text-transform: uppercase; color: var(--cyan); margin-bottom: 14px;
    }
    h1.hero-title {
      font-family: var(--fd); font-weight: 900;
      font-size: clamp(36px, 5.5vw, 66px);
      line-height: 1.02; margin-bottom: 24px;
    }
    h1.hero-title em { color: var(--orange); font-style: normal; }
    .hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
    .badge {
      background: rgba(255,255,255,.05); border: 1px solid var(--border);
      border-radius: 20px; padding: 5px 14px;
      font-size: 12px; font-weight: 600; color: var(--text);
    }
    .badge.hot  { border-color: rgba(249,115,22,.45); color: var(--orange); }
    .badge.blue { border-color: rgba(56,189,248,.35); color: var(--cyan); }
    .badge.grn  { border-color: rgba(34,197,94,.35);  color: var(--green); }

    /* ═══ LAYOUT ══════════════════════════════════════════════ */
    .wrap { max-width: 1260px; margin: 0 auto; padding: 0 20px; }

    /* ═══ SECTION TITLES ══════════════════════════════════════ */
    .sec { margin: 52px 0; }
    .sec-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
    h2.sec-title {
      font-family: var(--fd); font-weight: 900;
      font-size: clamp(20px, 2.8vw, 30px);
      position: relative; padding-left: 16px;
    }
    h2.sec-title::before {
      content: ''; position: absolute; left: 0; top: .1em;
      width: 4px; height: .9em;
      background: linear-gradient(180deg,var(--orange),var(--pink)); border-radius: 2px;
    }
    .sec-title-inline {
      font-family: var(--fd); font-weight: 900; font-size: 20px;
      color: var(--text); display: inline-flex; align-items: center; gap: 8px;
    }
    .badge-cnt {
      background: rgba(249,115,22,.18); color: var(--orange);
      font-size: 11px; font-weight: 700; letter-spacing: .5px;
      padding: 2px 8px; border-radius: 4px;
    }
    h3 { font-family: var(--fd); font-weight: 700; font-size: 18px; color: var(--cyan); margin: 28px 0 10px; }
    h4 { font-family: var(--fd); font-weight: 600; font-size: 15px; color: var(--text); margin: 16px 0 7px; }
    p  { color: var(--text); margin-bottom: 14px; font-size: 15.5px; }
    p:last-child { margin-bottom: 0; }

    /* ═══ GAME SECTIONS ═══════════════════════════════════════ */
    .game-section {
      background: rgba(13,30,53,.5);
      border: 1px solid var(--border); border-radius: var(--r2);
      padding: 20px; margin-bottom: 16px;
    }
    .game-section-head {
      display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px;
    }
    .see-all-link {
      font-family: var(--fd); font-size: 13px; font-weight: 600;
      color: var(--cyan); text-decoration: none;
      display: flex; align-items: center; gap: 6px; transition: color .15s;
    }
    .see-all-link:hover { color: #fff; }
    .see-all-cnt { color: var(--muted); }

    /* Game grid */
    .games-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 10px;
    }
    @media (max-width: 1100px) { .games-grid { grid-template-columns: repeat(5,1fr); } }
    @media (max-width: 760px)  { .games-grid { grid-template-columns: repeat(3,1fr); } }
    @media (max-width: 480px)  { .games-grid { grid-template-columns: repeat(2,1fr); } }

    .game-card img, .game-item img, .slot-card img {
      width: 100%; height: 100%; border-radius: 8px; display: block;
      object-fit: cover; object-position: center top;
    }
    .game-card {
      position: relative; border-radius: var(--r);
      overflow: hidden; text-decoration: none;
      background: var(--bg-card2); border: 1px solid var(--border);
      aspect-ratio: 3/4;
      transition: transform .18s, box-shadow .18s, border-color .18s;
      display: block;
    }
    .game-card:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 28px rgba(56,189,248,.2); border-color: var(--border-glow); }
    .game-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; width: 100%; height: 100%; object-fit: cover; }
    .game-card-ov { position: absolute; inset: 0; background: linear-gradient(180deg,transparent 40%,rgba(0,0,0,.88) 100%); }
    .game-card-new {
      position: absolute; top: 7px; left: 7px;
      background: var(--cyan); color: #fff;
      font-family: var(--fd); font-size: 9px; font-weight: 700; letter-spacing: 1px;
      padding: 2px 6px; border-radius: 3px; text-transform: uppercase;
    }
    .game-card-name {
      position: absolute; bottom: 7px; left: 8px; right: 8px;
      font-family: var(--fd); font-weight: 700; font-size: 12px;
      line-height: 1.2; color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,.9);
    }
    .game-card-jp {
      position: absolute; bottom: 7px; right: 7px;
      background: rgba(0,0,0,.65); border-radius: 4px;
      font-family: var(--fd); font-size: 10px; font-weight: 700;
      color: var(--yellow); padding: 2px 5px;
    }
    /* Game gradient palettes */
    .gc-a { background: linear-gradient(145deg,#1a0533,#3b0764,#7e22ce); }
    .gc-b { background: linear-gradient(145deg,#1c0a00,#7c2d12,#dc2626); }
    .gc-c { background: linear-gradient(145deg,#1a1500,#713f12,#ca8a04); }
    .gc-d { background: linear-gradient(145deg,#001a0f,#064e3b,#059669); }
    .gc-e { background: linear-gradient(145deg,#001a10,#14532d,#16a34a); }
    .gc-f { background: linear-gradient(145deg,#1a0000,#7f1d1d,#dc2626); }
    .gc-g { background: linear-gradient(145deg,#1a0800,#9a3412,#ea580c); }
    .gc-h { background: linear-gradient(145deg,#001a05,#15803d,#16a34a); }
    .gc-i { background: linear-gradient(145deg,#001030,#1e3a8a,#2563eb); }
    .gc-j { background: linear-gradient(145deg,#200000,#991b1b,#f97316); }
    .gc-k { background: linear-gradient(145deg,#001a10,#064e3b,#d97706); }
    .gc-l { background: linear-gradient(145deg,#001020,#0c4a6e,#0ea5e9); }
    .gc-m { background: linear-gradient(145deg,#1a0010,#86198f,#a21caf); }
    .gc-n { background: linear-gradient(145deg,#050a1a,#1e3a8a,#4338ca); }
    .gc-o { background: linear-gradient(145deg,#100020,#6d28d9,#8b5cf6); }
    .gc-p { background: linear-gradient(145deg,#001508,#14532d,#f59e0b); }
    .gc-q { background: linear-gradient(145deg,#0a1200,#365314,#ca8a04); }
    .gc-r { background: linear-gradient(145deg,#1a1000,#78350f,#d97706); }
    .gc-s { background: linear-gradient(145deg,#0a1020,#1e3a8a,#eab308); }
    .gc-t { background: linear-gradient(145deg,#160800,#78350f,#f59e0b); }

    /* ═══ SPIN RALLY ══════════════════════════════════════════ */
    .spin-rally-wrap {
      background: var(--bg-card); border: 1px solid var(--border);
      border-radius: var(--r2); padding: 20px; margin-bottom: 16px;
    }
    .rally-sub { font-size: 13px; color: var(--muted); margin: 6px 0 18px; }
    .rally-sub b { color: var(--orange); }
    .rally-grid {
      display: grid; grid-template-columns: repeat(6,1fr); gap: 10px;
    }
    @media (max-width: 1000px) { .rally-grid { grid-template-columns: repeat(3,1fr); } }
    @media (max-width: 560px)  { .rally-grid { grid-template-columns: repeat(2,1fr); } }
    .rally-card {
      background: var(--bg-card2); border: 1px solid var(--border);
      border-radius: var(--r); padding: 12px;
      display: flex; flex-direction: column; gap: 10px;
      transition: border-color .18s;
    }
    .rally-card:hover  { border-color: var(--border-glow); }
    .rally-card.active { border-color: var(--orange); }
    .rally-top { display: flex; align-items: flex-start; gap: 10px; }
    .rally-thumb {
      width: 52px; height: 52px; border-radius: 8px; flex-shrink: 0;
      position: relative; overflow: hidden;
    }
    /* .rally-thumb-bg { position: absolute; inset: 0; background-size: cover; } */
    /* .rc-wiz   { background: linear-gradient(145deg,#1a0030,#4c1d95,#7c3aed); } */
    /* .rc-sug   { background: linear-gradient(145deg,#1a0020,#be185d,#ec4899); } */
    /* .rc-inf   { background: linear-gradient(145deg,#1a0500,#9a3412,#ea580c); } */
    /* .rc-hog   { background: linear-gradient(145deg,#1a0800,#92400e,#b45309); } */
    /* .rc-zeu   { background: linear-gradient(145deg,#0a1020,#1e40af,#eab308); } */
    /* .rc-cro   { background: linear-gradient(145deg,#100020,#1e1b4b,#6d28d9); } */
    .rally-thumb { overflow: hidden; border-radius: 8px; }
    .rally-thumb picture, .rally-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .rally-info { flex: 1; }
    .rally-badge-a { font-size: 9px; font-weight: 700; letter-spacing: 1px; background: var(--green); color: #fff; padding: 2px 6px; border-radius: 3px; text-transform: uppercase; display: inline-block; margin-bottom: 4px; }
    .rally-badge-n { font-size: 9px; font-weight: 700; letter-spacing: 1px; background: var(--cyan2); color: #fff; padding: 2px 6px; border-radius: 3px; text-transform: uppercase; display: inline-block; margin-bottom: 4px; }
    .rally-name { font-family: var(--fd); font-weight: 700; font-size: 13px; color: var(--text); line-height: 1.2; }
    .rally-meta { font-size: 12px; color: var(--muted); display: flex; flex-direction: column; gap: 2px; }
    .rally-meta b { color: var(--text); }
    .rally-timer { font-family: var(--fd); font-weight: 700; font-size: 12px; background: var(--bg); border-radius: 4px; padding: 1px 6px; color: var(--orange); display: inline-block; }

    /* ═══ QUICK FACTS ═════════════════════════════════════════ */
    .qf-wrap { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden; margin: 40px 0; }
    .qf-head { background: linear-gradient(90deg,#0f2140,#0b1729); padding: 12px 20px; font-family: var(--fd); font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--cyan); border-bottom: 1px solid var(--border); }
    .qf-table { width: 100%; border-collapse: collapse; }
    .qf-table tr:nth-child(even) td { background: rgba(255,255,255,.025); }
    .qf-table td { padding: 10px 20px; border-bottom: 1px solid rgba(255,255,255,.04); font-size: 14px; }
    .qf-table td:first-child { color: var(--muted); width: 40%; font-weight: 500; }
    .qf-table td:last-child { color: var(--text); font-weight: 600; }
    .qf-table tr:last-child td { border-bottom: none; }
    .to { color: var(--orange); }
    .tg { color: var(--green); }
    .tc { color: var(--cyan); }

    /* ═══ BONUS CARDS ═════════════════════════════════════════ */
    .bonus-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 14px; margin: 20px 0; }
    .bonus-card { background: var(--bg-card2); border: 1px solid var(--border); border-radius: var(--r2); padding: 20px; position: relative; overflow: hidden; }
    .bonus-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,var(--orange),var(--yellow)); }
    .bonus-card.cryp::before { background: linear-gradient(90deg,var(--purple),var(--cyan)); }
    .bonus-card.sprt::before { background: linear-gradient(90deg,var(--green),#86efac); }
    .bonus-amt { font-family: var(--fd); font-weight: 900; font-size: 38px; color: var(--orange); line-height: 1; }
    .bonus-card.cryp .bonus-amt { color: var(--purple); }
    .bonus-card.sprt .bonus-amt { color: var(--green); }
    .bonus-lbl { font-size: 12px; color: var(--muted); margin: 4px 0 14px; }
    .bonus-det { font-size: 13px; color: var(--text); border-top: 1px solid var(--border); padding-top: 12px; }
    .bonus-det span { display: block; margin-bottom: 4px; padding-left: 14px; position: relative; }
    .bonus-det span::before { content: '✓'; position: absolute; left: 0; color: var(--yellow); }

    /* ═══ INFO TABLE ══════════════════════════════════════════ */
    .info-table { width: 100%; border-collapse: collapse; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; margin: 16px 0; font-size: 14px; }
    .info-table th { background: linear-gradient(90deg,#0f2140,#0b1729); padding: 9px 16px; text-align: left; font-family: var(--fd); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--border); }
    .info-table td { padding: 9px 16px; border-bottom: 1px solid rgba(255,255,255,.04); color: var(--text); }
    .info-table tr:last-child td { border-bottom: none; }
    .info-table tr:nth-child(even) td { background: rgba(255,255,255,.025); }
    .info-table td:first-child { color: var(--muted); font-weight: 500; }

    /* ═══ PROVIDER GRID ═══════════════════════════════════════ */
    .prov-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(130px,1fr)); gap: 8px; margin: 14px 0; }
    .prov-item { background: var(--bg-card2); border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; text-align: center; font-size: 12px; font-weight: 600; color: var(--muted); transition: border-color .18s,color .18s; }
    .prov-item:hover { border-color: var(--cyan); color: var(--cyan); }
    .prov-cnt { display: block; font-size: 10px; font-weight: 400; color: var(--dim); margin-top: 2px; }

    /* ═══ CASHBACK ════════════════════════════════════════════ */
    .cb-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: 14px; margin: 20px 0; }
    .cb-card { background: var(--bg-card2); border: 1px solid var(--border); border-radius: var(--r2); padding: 20px; border-top: 3px solid var(--orange); }
    .cb-card.live  { border-color: var(--cyan); }
    .cb-card.daily { border-color: var(--yellow); }
    .cb-pct { font-family: var(--fd); font-size: 40px; font-weight: 900; color: var(--orange); line-height: 1; }
    .cb-card.live  .cb-pct { color: var(--cyan); }
    .cb-card.daily .cb-pct { color: var(--yellow); }
    .cb-name { font-size: 14px; font-weight: 600; margin: 4px 0 14px; }
    .cb-row  { font-size: 13px; color: var(--muted); margin-bottom: 3px; }
    .cb-row strong { color: var(--text); }

    /* ═══ VIP ═════════════════════════════════════════════════ */
    .vip-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; margin: 18px 0; }
    .vip-card { background: var(--bg-card2); border: 1px solid var(--border); border-radius: var(--r); padding: 16px 10px; text-align: center; }
    .vip-level { font-family: var(--fd); font-size: 22px; font-weight: 900; color: var(--orange); }
    .vip-stat  { font-size: 11px; color: var(--muted); margin-top: 6px; }
    .vip-val   { font-size: 12px; font-weight: 700; color: var(--text); }

    /* ═══ PAYMENTS GRID ═══════════════════════════════════════ */
    .pay-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(115px,1fr)); gap: 8px; margin: 12px 0; }
    .pay-item { background: var(--bg-card2); border: 1px solid var(--border); border-radius: 8px; padding: 8px 10px; font-size: 11px; font-weight: 600; color: var(--muted); text-align: center; }
    .pay-item small { display: block; color: var(--dim); margin-top: 2px; font-size: 10px; }

    /* ═══ LANG TAGS GRID ══════════════════════════════════════ */
    .lang-flags-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(140px,1fr)); gap: 8px; margin: 14px 0; }
    .lang-flag-item { background: var(--bg-card2); border: 1px solid var(--border); border-radius: 8px; padding: 8px 12px; font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
    .lang-flag-item span { font-size: 18px; }
    .lang-flag-item b { color: var(--text); }

    /* ═══ SHOP ════════════════════════════════════════════════ */
    .shop-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(140px,1fr)); gap: 10px; margin: 14px 0; }
    .shop-item { background: var(--bg-card2); border: 1px solid var(--border); border-radius: 8px; padding: 14px; }
    .shop-nm  { font-size: 12px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
    .shop-c   { font-family: var(--fd); font-size: 22px; font-weight: 900; color: var(--orange); }
    .shop-u   { font-size: 10px; color: var(--dim); }

    /* ═══ HIGHLIGHT BOX ═══════════════════════════════════════ */
    .hl { background: linear-gradient(135deg,rgba(249,115,22,.08),rgba(251,191,36,.05)); border: 1px solid rgba(249,115,22,.2); border-radius: var(--r); padding: 15px 18px; margin: 16px 0; }
    .hl p { margin: 0; font-size: 14.5px; }
    .hl-blue { background: rgba(56,189,248,.06); border-color: rgba(56,189,248,.2); }
    .hl-blue p { color: var(--cyan); }

    /* ═══ INFO CARD ═══════════════════════════════════════════ */
    .info-card { background: var(--bg-card2); border: 1px solid var(--border); border-radius: var(--r2); padding: 20px; margin: 16px 0; }
    .info-card-title { font-family: var(--fd); font-weight: 700; font-size: 16px; color: var(--cyan); margin-bottom: 12px; }

    /* ═══ KYC DOC LIST ════════════════════════════════════════ */
    .doc-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 10px; margin: 14px 0; }
    .doc-item { background: var(--bg-card2); border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px; }
    .doc-icon { font-size: 20px; margin-bottom: 6px; }
    .doc-title { font-family: var(--fd); font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
    .doc-desc  { font-size: 12px; color: var(--muted); }

    /* ═══ CTA ═════════════════════════════════════════════════ */
    .cta-sec { background: linear-gradient(135deg,#0d1f3c,#060f1e); border: 1px solid rgba(249,115,22,.22); border-radius: var(--r2); padding: 48px 28px; text-align: center; margin: 52px 0; }
    .cta-title { font-family: var(--fd); font-size: clamp(28px,4vw,44px); font-weight: 900; margin-bottom: 10px; }
    .cta-title em { color: var(--orange); font-style: normal; }
    .cta-sub { color: var(--muted); margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }
    .btn-cta { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg,#f97316,#dc2626); color: #fff; font-family: var(--fd); font-weight: 900; font-size: 20px; letter-spacing: .5px; text-transform: uppercase; padding: 15px 44px; border-radius: 12px; text-decoration: none; box-shadow: 0 0 32px rgba(249,115,22,.5); transition: box-shadow .2s,transform .15s; }
    .btn-cta:hover { box-shadow: 0 0 56px rgba(249,115,22,.75); transform: translateY(-2px); }
    .cta-note { font-size: 11.5px; color: var(--dim); margin-top: 14px; }

    /* ═══ FOOTER ══════════════════════════════════════════════ */
    .site-footer { background: #020810; border-top: 1px solid var(--border); padding: 40px 20px 20px; }
    .footer-inner { max-width: 1260px; margin: 0 auto; }
    .footer-top { display: flex; flex-wrap: wrap; gap: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--border); margin-bottom: 24px; }
    .footer-brand { flex: 1; min-width: 200px; }
    .footer-tagline { font-size: 13px; color: var(--muted); max-width: 280px; margin-top: 10px; }
    .footer-col { flex: 1; min-width: 150px; }
    .footer-col-title { font-family: var(--fd); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--dim); margin-bottom: 12px; }
    .footer-col a { display: block; font-size: 13px; color: var(--muted); text-decoration: none; margin-bottom: 8px; transition: color .15s; }
    .footer-col a:hover { color: var(--cyan); }
    .footer-bottom { text-align: center; }
    .disclaimer { font-size: 12px; color: var(--dim); line-height: 1.7; max-width: 800px; margin: 0 auto 16px; }
    .lang-bar { display: flex; justify-content: center; align-items: center; gap: 8px; padding: 18px 0 0; }
    .lang-lbl { font-size: 11px; color: var(--dim); text-transform: uppercase; letter-spacing: 1px; }
    .lang-btn { background: var(--bg-card2); border: 1px solid var(--border); border-radius: 6px; padding: 6px 16px; font-family: var(--fd); font-size: 13px; font-weight: 700; color: var(--muted); text-decoration: none; transition: border-color .15s,color .15s; }
    .lang-btn:hover,.lang-btn.active { border-color: var(--cyan); color: var(--cyan); }

    /* ═══ RESPONSIVE ══════════════════════════════════════════ */
    @media (max-width: 900px) { .nav-cats { display: none; } .vip-grid { grid-template-columns: repeat(3,1fr); } }
    @media (max-width: 680px) { .hero-content { padding: 44px 16px; } .wrap { padding: 0 14px; } .cta-sec { padding: 28px 16px; } .btn-cta { font-size: 16px; padding: 13px 24px; } .footer-top { flex-direction: column; gap: 20px; } .vip-grid { grid-template-columns: repeat(2,1fr); } }
    @media (max-width: 480px) { .header-btns .btn-login { display: none; } }
  


/* ── Reviews page (/bewertungen/) ────────────────────────────────── */
.rv-hero {
  background: None;
  color: #ffffff;
  padding: 3rem 1.5rem 2.5rem;
  text-align: center;
}
.rv-hero h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin: 0 0 .6rem; font-weight: 700; }
.rv-hero p  { opacity: .82; max-width: 620px; margin: 0 auto; font-size: 1.05rem; line-height: 1.6; }

.rv-breadcrumb {
  font-size: .85rem;
  padding: .7rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 1.5rem;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.rv-breadcrumb a { color: #ffffff; opacity: .75; text-decoration: none; }
.rv-breadcrumb a:hover { opacity: 1; text-decoration: underline; }
.rv-bc-sep { margin: 0 .4rem; opacity: .5; }

.rv-wrap { padding: 0 1.5rem 4rem; max-width: 860px; margin: 0 auto; }
.rv-h2 {
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  margin: 2.5rem 0 1rem;
  padding-bottom: .4rem;
  border-bottom: 2px solid #e4a800;
  font-weight: 700;
}
.rv-p { line-height: 1.82; margin: 0 0 1rem; opacity: .92; }

.rv-screenshot-wrap {
  margin: .75rem 0 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,.18);
  line-height: 0;
}
.rv-screenshot-wrap.rv-banner { margin-top: .25rem; box-shadow: 0 2px 14px rgba(0,0,0,.13); }
.rv-screenshot, .rv-screenshot-wrap img { width: 100%; height: auto; display: block; }

.rv-mentions {
  margin: 1.5rem 0 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
}
.rv-mentions-title { font-size: clamp(1rem,2vw,1.2rem); font-weight: 600; margin: 0 0 .75rem; border: none; padding: 0; }
.rv-mentions-rating { display: flex; align-items: baseline; gap: .5rem; margin-bottom: 1rem; }
.rv-rating-score { font-size: 1.6rem; font-weight: 700; color: #e4a800; }
.rv-rating-label { font-size: .85rem; opacity: .65; }
.rv-mentions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.rv-mentions-col-label {
  font-size: .75rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  margin-bottom: .5rem; padding: .2rem .6rem; border-radius: 4px; display: inline-block;
}
.rv-mentions-col-pos { background: rgba(30,180,100,.15); color: #1eb464; }
.rv-mentions-col-neg { background: rgba(220,60,60,.15);  color: #e05555; }
.rv-mentions-list    { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .45rem; }
.rv-mention-pos, .rv-mention-neg { display: flex; align-items: center; gap: .5rem; font-size: .9rem; }
.rv-mention-icon  { font-size: .8rem; width: 1.1rem; text-align: center; flex-shrink: 0; }
.rv-mention-pos .rv-mention-icon { color: #1eb464; }
.rv-mention-neg .rv-mention-icon { color: #e05555; }

/* Review cards */
.rv-card {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
  background: var(--bg-card);
  transition: border-color .2s, box-shadow .2s;
}
.rv-card:hover { border-color: rgba(255,255,255,.18); }
.rv-card.rv-card-positive { border-left: 3px solid #1eb464; }
.rv-card.rv-card-negative { border-left: 3px solid #e05555; }
.rv-card.rv-card-mixed    { border-left: 3px solid #e4a800; }
.rv-card.rv-card-neutral  { border-left: 3px solid rgba(255,255,255,.2); }

.rv-card-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: .85rem; }
.rv-card-author-row { display: flex; align-items: center; gap: .75rem; }
.rv-card-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; flex-shrink: 0; }
.av-green { background: rgba(30,180,100,.2);  color: #1eb464; }
.av-red   { background: rgba(220,60,60,.2);   color: #e05555; }
.av-amber { background: rgba(228,168,0,.2);   color: #e4a800; }
.av-blue  { background: rgba(60,130,220,.2);  color: #5b9cf6; }
.rv-card-author-name { font-size: .95rem; font-weight: 600; margin-bottom: .25rem; }
.rv-card-meta { display: flex; flex-wrap: wrap; gap: .4rem .75rem; font-size: .78rem; opacity: .7; }
.rv-card-platform { display: inline-flex; align-items: center; gap: .25rem; padding: .15rem .5rem; border-radius: 3px; font-size: .72rem; font-weight: 600; }
.platform-tp    { background: rgba(0,182,122,.15); color: #00b67a; }
.platform-ag    { background: rgba(255,165,0,.15);  color: #ffa500; }
.platform-cg    { background: rgba(91,156,246,.15); color: #5b9cf6; }
.platform-other { background: rgba(255,255,255,.08); color: inherit; opacity: .8; }
.rv-card-stars { display: flex; gap: 2px; flex-shrink: 0; margin-top: 2px; }
.rv-card-stars .fa-star { font-size: .85rem; }
.rv-card-stars .s-full  { color: #ffc107; }
.rv-card-stars .s-empty { color: rgba(255,255,255,.2); }
.rv-card-body { font-size: .92rem; line-height: 1.75; margin: 0 0 .85rem; opacity: .9; }
.rv-card-quote {
  border-left: 3px solid #e4a800;
  margin: .75rem 0;
  padding: .6rem .75rem .6rem 1rem;
  font-style: italic;
  font-size: .9rem;
  opacity: .85;
  line-height: 1.65;
  background: rgba(255,255,255,.03);
  border-radius: 0 12px 12px 0;
}
.rv-card-lang-note { font-size: .75rem; opacity: .6; font-style: normal; }
.rv-card-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin: .75rem 0; }
.rtag { display: inline-flex; align-items: center; gap: .3rem; font-size: .75rem; font-weight: 600; padding: .2rem .6rem; border-radius: 4px; }
.rtag i { font-size: .65rem; }
.rtag-pos { background: rgba(30,180,100,.15);  color: #1eb464; }
.rtag-neg { background: rgba(220,60,60,.15);   color: #e05555; }
.rtag-neu { background: rgba(255,255,255,.08); opacity: .75; }
.rv-card-screenshot { margin-top: 1rem; border-radius: calc(12px - 4px); overflow: hidden; line-height: 0; box-shadow: 0 2px 12px rgba(0,0,0,.15); }
.rv-card-screenshot img { width: 100%; height: auto; display: block; }

.rv-plat-nav { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem auto 1.5rem; max-width: 860px; padding: 0 1.5rem; }
.rv-plat-nav-item {
  font-size: .82rem; font-weight: 600; padding: .3rem .85rem;
  border-radius: 20px; border: 1px solid rgba(255,255,255,.15);
  color: #ffffff; text-decoration: none; opacity: .75;
  transition: opacity .15s, border-color .15s;
}
.rv-plat-nav-item:hover { opacity: 1; border-color: #e4a800; color: #e4a800; }

.rv-platform-rating { display: flex; align-items: center; gap: .6rem; margin: .5rem 0 1.25rem; font-size: .88rem; }
.rv-platform-stars { display: flex; gap: 2px; }
.rv-platform-stars .fa-star { font-size: .85rem; }
.rv-platform-stars .s-full  { color: #ffc107; }
.rv-platform-stars .s-empty { color: rgba(255,255,255,.2); }
.rv-platform-score { opacity: .7; font-size: .82rem; }
.rv-platform-divider { border: none; border-top: 1px solid rgba(255,255,255,.08); margin: 2.5rem 0 2rem; }

.rv-faq { margin: 2.5rem 0 1rem; }
.faq-item {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  margin-bottom: .75rem;
  background: var(--bg-card);
  overflow: hidden;
}
.faq-item[open] { border-color: #e4a800; }
.faq-question {
  font-size: 1rem; font-weight: 600; line-height: 1.45;
  padding: 1rem 1.25rem; cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  color: #e4a800; user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: "+"; font-size: 1.2rem; font-weight: 400; opacity: .7; flex-shrink: 0; transition: transform .2s; }
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer { font-size: .9rem; line-height: 1.75; margin: 0; padding: .75rem 1.25rem 1rem; opacity: .85; border-top: 1px solid rgba(255,255,255,.06); }

@media (max-width: 640px) {
  .rv-hero  { padding: 2rem 1rem 1.75rem; }
  .rv-h2    { font-size: 1.2rem; }
  .rv-screenshot-wrap { border-radius: 7px; }
  .rv-mentions-grid { grid-template-columns: 1fr; }
  .rv-card { padding: .9rem 1rem; }
  .rv-card-header { flex-direction: column; gap: .5rem; }
}
