    /* ── TOKENS ── */
    :root {
        --bg: #0b1220;
        --surface: #0f1a2e;
        --card: #0c1930;
        --ink: #e2e8f0;
        --muted: #94a3b8;
        --brand: #22d3a5;
        /* teal yeşil */
        --accent: #f59e0b;
        /* altın sarı */
        --danger: #f87171;
        --rule: rgba(148, 163, 184, .2);
        --shadow: 0 16px 40px rgba(0, 0, 0, .45);
        --radius: 20px;
        --rsm: 12px;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        background:
            radial-gradient(900px 500px at 0% 0%, rgba(34, 211, 165, .12), transparent 55%),
            radial-gradient(700px 400px at 100% 0%, rgba(245, 158, 11, .10), transparent 50%),
            linear-gradient(180deg, #0b1220 0%, #080e1a 100%);
        color: var(--ink);
        font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
        line-height: 1.7;
    }

    /* ── LAYOUT ── */
    .wrap {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 18px;
    }

    /* ── HEADER ── */
    header.top {
        position: sticky;
        top: 0;
        z-index: 50;
        background: linear-gradient(180deg, rgba(11, 18, 32, .92), rgba(11, 18, 32, .65));
        border-bottom: 1px solid var(--rule);
        backdrop-filter: saturate(180%) blur(10px);
    }

    .hdr-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 14px 18px;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Brand & ribbon */
    .brand {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 900;
        font-size: 1.05rem;
    }

    .dot {
        width: 11px;
        height: 11px;
        border-radius: 50%;
        background: conic-gradient(from 180deg, var(--brand), var(--accent));
        box-shadow: 0 0 0 5px rgba(34, 211, 165, .2);
    }

    .ribbon {
        display: inline-flex;
        align-items: center;
        padding: 8px 16px;
        border-radius: 999px;
        background: linear-gradient(135deg, #20e3ae, #12b886);
        color: #050e18;
        font-weight: 900;
        font-size: .92rem;
        box-shadow: 0 4px 14px rgba(34, 211, 165, .3);
    }

    .ribbon-gold {
        background: linear-gradient(135deg, #fde68a, #f59e0b);
        box-shadow: 0 4px 14px rgba(245, 158, 11, .3);
    }

    /* Nav links */
    .nav-links {
        display: flex;
        gap: 6px;
        flex-wrap: wrap;
    }

    .nav-links a {
        text-decoration: none;
        padding: 8px 13px;
        border-radius: 999px;
        font-weight: 700;
        font-size: .82rem;
        background: rgba(34, 211, 165, .12);
        color: var(--brand);
        border: 1px solid rgba(34, 211, 165, .25);
        transition: background .2s;
    }

    .nav-links a:hover {
        background: rgba(34, 211, 165, .22);
    }

    .nav-links a.go {
        background: linear-gradient(135deg, #20e3ae, #12b886);
        color: #050e18;
        border: none;
    }

    /* ── HERO ── */
    .hero {
        margin: 20px 0;
        background: linear-gradient(135deg, #0d1f38, #091526);
        border: 1px solid rgba(34, 211, 165, .2);
        border-radius: var(--radius);
        padding: 36px 28px;
        box-shadow: var(--shadow);
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(600px 300px at 80% 50%, rgba(34, 211, 165, .08), transparent 60%);
        pointer-events: none;
    }

    .hero h1 {
        font-size: clamp(1.6rem, 4vw, 2.4rem);
        line-height: 1.25;
        margin-bottom: 14px;
    }

    .hero h1 .hl {
        color: var(--brand);
    }

    .hero p {
        color: #cbd5e1;
        max-width: 620px;
        font-size: .97rem;
    }

    .chips {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 16px;
    }

    .chip {
        border: 1px solid var(--rule);
        background: rgba(255, 255, 255, .05);
        padding: 5px 12px;
        border-radius: 999px;
        font-size: .8rem;
        font-weight: 700;
        color: #bae6fd;
    }

    .chip.green {
        border-color: rgba(34, 211, 165, .35);
        color: var(--brand);
        background: rgba(34, 211, 165, .08);
    }

    .chip.gold {
        border-color: rgba(245, 158, 11, .35);
        color: var(--accent);
        background: rgba(245, 158, 11, .08);
    }

    .hero-cta {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 12px 22px;
        border-radius: 10px;
        background: linear-gradient(135deg, #20e3ae, #12b886);
        color: #050e18;
        font-weight: 900;
        font-size: .9rem;
        text-decoration: none;
        box-shadow: 0 6px 20px rgba(34, 211, 165, .3);
        transition: transform .15s, box-shadow .15s;
    }

    .btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 28px rgba(34, 211, 165, .4);
    }

    .btn-ghost {
        display: inline-flex;
        align-items: center;
        padding: 12px 20px;
        border-radius: 10px;
        border: 1px solid var(--rule);
        color: var(--ink);
        font-weight: 700;
        font-size: .9rem;
        text-decoration: none;
        transition: border-color .2s;
    }

    .btn-ghost:hover {
        border-color: var(--brand);
        color: var(--brand);
    }

    /* ── MAIN GRID (sol içerik + sağ sticky panel) ── */
    .page-grid {
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: 18px;
        margin-top: 18px;
    }

    @media (max-width: 1050px) {
        .page-grid {
            grid-template-columns: 1fr;
        }

        .side {
            position: relative !important;
            top: auto !important;
        }
    }

    /* ── PANELS (sol) ── */
    .panel {
        background: linear-gradient(180deg, #0d1f38, #091526);
        border: 1px solid var(--rule);
        border-radius: var(--radius);
        padding: 22px 20px;
        box-shadow: var(--shadow);
    }

    .panel+.panel {
        margin-top: 16px;
    }

    .sec-label {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 4px 12px;
        border-radius: 999px;
        font-size: .72rem;
        font-weight: 900;
        letter-spacing: .04em;
        text-transform: uppercase;
        background: rgba(34, 211, 165, .12);
        color: var(--brand);
        border: 1px solid rgba(34, 211, 165, .25);
        margin-bottom: 10px;
    }

    .sec-label.gold {
        background: rgba(245, 158, 11, .12);
        color: var(--accent);
        border-color: rgba(245, 158, 11, .25);
    }

    .sec-label.red {
        background: rgba(248, 113, 113, .12);
        color: var(--danger);
        border-color: rgba(248, 113, 113, .25);
    }

    .panel h2 {
        font-size: 1.3rem;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .panel h2 .hl {
        color: var(--brand);
    }

    .panel p {
        color: #cbd5e1;
        font-size: .93rem;
        margin-bottom: 10px;
    }

    .panel p:last-child {
        margin-bottom: 0;
    }

    /* list */
    .flist {
        list-style: none;
        display: grid;
        gap: 8px;
        margin-top: 12px;
    }

    .flist li {
        padding: 10px 14px;
        border-radius: var(--rsm);
        background: rgba(255, 255, 255, .04);
        border: 1px dashed var(--rule);
        color: #e2e8f0;
        font-size: .88rem;
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    .flist li .ic {
        color: var(--brand);
        flex-shrink: 0;
        font-style: normal;
    }

    .flist li .ic.warn {
        color: var(--accent);
    }

    .flist li .ic.bad {
        color: var(--danger);
    }

    /* bonus site cards */
    .site-grid {
        display: grid;
        gap: 10px;
        margin-top: 14px;
    }

    .site-row {
        display: grid;
        grid-template-columns: auto 1fr auto auto;
        align-items: center;
        gap: 12px;
        padding: 12px 14px;
        border-radius: var(--rsm);
        background: rgba(255, 255, 255, .04);
        border: 1px solid var(--rule);
        transition: border-color .2s, background .2s;
    }

    .site-row:hover {
        border-color: rgba(34, 211, 165, .3);
        background: rgba(34, 211, 165, .04);
    }

    .site-row.top1 {
        border-color: rgba(34, 211, 165, .4);
        background: rgba(34, 211, 165, .06);
    }

    .site-rank {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        font-size: .85rem;
        background: var(--card);
        color: var(--muted);
    }

    .site-rank.gold-rank {
        background: rgba(245, 158, 11, .15);
        color: var(--accent);
    }

    .site-name {
        font-weight: 700;
        font-size: .92rem;
    }

    .site-meta {
        font-size: .75rem;
        color: var(--muted);
        margin-top: 2px;
    }

    .bonus-tag {
        padding: 4px 10px;
        border-radius: 999px;
        background: rgba(34, 211, 165, .12);
        color: var(--brand);
        font-weight: 800;
        font-size: .8rem;
        white-space: nowrap;
        border: 1px solid rgba(34, 211, 165, .25);
    }

    .wager-tag {
        padding: 3px 8px;
        border-radius: 6px;
        font-size: .75rem;
        font-weight: 700;
        white-space: nowrap;
    }

    .wager-low {
        background: rgba(34, 211, 165, .1);
        color: var(--brand);
    }

    .wager-mid {
        background: rgba(245, 158, 11, .1);
        color: var(--accent);
    }

    .wager-high {
        background: rgba(248, 113, 113, .1);
        color: var(--danger);
    }

    /* wager table */
    .wager-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 12px;
        font-size: .86rem;
    }

    .wager-table th {
        text-align: left;
        color: var(--muted);
        font-size: .75rem;
        padding: 6px 10px;
        border-bottom: 1px solid var(--rule);
    }

    .wager-table td {
        padding: 9px 10px;
        border-bottom: 1px solid rgba(148, 163, 184, .08);
    }

    .wager-table tr:last-child td {
        border-bottom: none;
    }

    .wager-table tr:hover td {
        background: rgba(255, 255, 255, .03);
    }

    /* reviews */
    .reviews-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 12px;
        margin-top: 14px;
    }

    .review-card {
        background: var(--card);
        border: 1px solid var(--rule);
        border-radius: 16px;
        padding: 16px;
        box-shadow: var(--shadow);
        position: relative;
    }

    .review-card::before {
        content: '"';
        position: absolute;
        left: 12px;
        top: -8px;
        font-size: 2.8rem;
        color: var(--accent);
        line-height: 1;
    }

    .review-who {
        font-weight: 900;
        font-size: .88rem;
        margin-bottom: 4px;
    }

    .review-stars {
        color: #fbbf24;
        font-size: .9rem;
        margin-bottom: 8px;
    }

    .review-text {
        color: #cbd5e1;
        font-size: .85rem;
        line-height: 1.75;
    }

    .review-site {
        display: inline-block;
        margin-top: 8px;
        font-size: .75rem;
        font-weight: 700;
        color: var(--brand);
    }

    /* info box */
    .info-box {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        padding: 14px 16px;
        border-radius: var(--rsm);
        margin-top: 14px;
    }

    .info-box.teal {
        background: rgba(34, 211, 165, .08);
        border: 1px solid rgba(34, 211, 165, .25);
    }

    .info-box.gold {
        background: rgba(245, 158, 11, .08);
        border: 1px solid rgba(245, 158, 11, .25);
    }

    .info-box.red {
        background: rgba(248, 113, 113, .08);
        border: 1px solid rgba(248, 113, 113, .25);
    }

    .info-box .ico {
        font-size: 1.2rem;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .info-box strong {
        display: block;
        margin-bottom: 4px;
        font-size: .88rem;
    }

    .info-box p {
        font-size: .85rem;
        color: #cbd5e1;
        margin: 0;
    }

    /* ── FAQ / details ── */
    .faq-wrap {
        display: grid;
        gap: 8px;
        margin-top: 14px;
    }

    details {
        background: rgba(255, 255, 255, .04);
        border: 1px solid var(--rule);
        border-radius: 14px;
        padding: 12px 16px;
        transition: border-color .2s;
    }

    details[open] {
        border-color: rgba(34, 211, 165, .4);
    }

    summary {
        cursor: pointer;
        font-weight: 700;
        font-size: .92rem;
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    summary::-webkit-details-marker {
        display: none;
    }

    summary::after {
        content: '+';
        color: var(--brand);
        font-size: 1.1rem;
        transition: transform .2s;
    }

    details[open] summary::after {
        content: '−';
    }

    details>div {
        margin-top: 10px;
        color: #cbd5e1;
        font-size: .88rem;
        line-height: 1.8;
    }

    /* ── SIDE PANEL (sağ sticky) ── */
    .side {
        position: sticky;
        top: 80px;
        align-self: start;
        display: grid;
        gap: 14px;
    }

    .side-card {
        background: linear-gradient(180deg, #0d1f38, #091526);
        border: 1px solid var(--rule);
        border-radius: var(--radius);
        padding: 18px;
        box-shadow: var(--shadow);
    }

    .side-card h3 {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }

    .side-card p {
        color: #94a3b8;
        font-size: .85rem;
        margin-bottom: 12px;
    }

    .side-card .btn-primary {
        width: 100%;
        justify-content: center;
        margin-bottom: 8px;
    }

    .side-card .btn-ghost {
        width: 100%;
        justify-content: center;
    }

    /* stat grid inside side card */
    .stat-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-bottom: 14px;
    }

    .stat-item {
        background: var(--card);
        border-radius: var(--rsm);
        padding: 10px;
        text-align: center;
    }

    .stat-val {
        font-size: 1.3rem;
        font-weight: 900;
        color: var(--brand);
        display: block;
    }

    .stat-lbl {
        font-size: .7rem;
        color: var(--muted);
        margin-top: 2px;
    }

    /* checklist */
    .check-list {
        list-style: none;
        display: grid;
        gap: 7px;
    }

    .check-list li {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: .83rem;
        color: #e2e8f0;
        padding: 7px 10px;
        border-radius: 8px;
        background: rgba(255, 255, 255, .04);
        border: 1px solid rgba(148, 163, 184, .1);
    }

    .check-list li .ck {
        color: var(--brand);
        font-weight: 900;
    }

    /* licence badges */
    .licence-badges {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .lic-badge {
        padding: 10px 8px;
        border-radius: 10px;
        text-align: center;
        background: var(--card);
        border: 1px solid var(--rule);
        font-size: .8rem;
        font-weight: 700;
    }

    .lic-badge .flag {
        font-size: 1.4rem;
        display: block;
        margin-bottom: 4px;
    }

    /* ── FOOTER ── */
    footer.site {
        margin: 30px 0 24px;
        border-top: 1px dashed var(--rule);
        padding-top: 16px;
        text-align: center;
        color: var(--muted);
        font-size: .83rem;
    }

    footer.site strong {
        color: #e2e8f0;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 640px) {
        .hdr-inner .nav-links {
            display: none;
        }

        .hero {
            padding: 24px 18px;
        }

        .site-row {
            grid-template-columns: auto 1fr;
        }

        .site-row .bonus-tag,
        .site-row .wager-tag {
            display: none;
        }
    }