:root {
    --bg: #f6f8fc;
    --surface: #ffffff;
    --text: #0f172a;
    --muted: #475569;
    --line: rgba(15, 23, 42, 0.10);

    --brand: #0b5cff;
    --brand2: #14b8a6;
    --danger: #ef4444;
    --warning: #f59e0b;

    --shadow: 0 12px 30px rgba(2, 6, 23, .08);
    --shadow2: 0 8px 18px rgba(2, 6, 23, .07);

    --radius: 18px;
    --radius2: 14px;

    --max: 1120px;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background: #f6f6f6;
    line-height: 1.55;
}

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

img {
    max-width: 100%;
    display: block;
}

button {
    font: inherit;
}


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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .65);
    backdrop-filter: blur(8px);
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 600;
    color: var(--muted);
}

.pill i {
    color: var(--brand);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 12px;
    padding: 12px 16px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
    font-weight: 700;
    user-select: none;
    white-space: nowrap;
}

.btn:active {
    transform: translateY(1px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand), #2b7bff);
    color: #fff;
    box-shadow: 0 10px 20px rgba(11, 92, 255, .20);
}

.btn-primary:hover {
    box-shadow: 0 14px 28px rgba(11, 92, 255, .25);
    transform: translateY(-1px);
}

.btn-ghost {
    background: rgba(255, 255, 255, .65);
    border-color: var(--line);
    color: var(--text);
}

.btn-ghost:hover {
    border-color: rgba(11, 92, 255, .35);
    transform: translateY(-1px);
}

.tag18 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(239, 68, 68, .25);
    color: #991b1b;
    background: rgba(239, 68, 68, .08);
    font-weight: 800;
}


header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(246, 248, 252, .70);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 12px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: -.02em;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    box-shadow: var(--shadow2);
}

.brand small {
    display: block;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 0;
    margin-top: 2px;
    font-size: 12px;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-weight: 700;
    color: #0f172a;
    opacity: .85;
    padding: 10px 10px;
    border-radius: 12px;
    transition: background .15s ease, opacity .15s ease;
}

.nav-link:hover {
    background: rgba(11, 92, 255, .08);
    opacity: 1;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .75);
    cursor: pointer;
}

.hamburger i {
    color: var(--text);
}


.overlay {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
    background: rgba(2, 6, 23, .55);
    backdrop-filter: blur(6px);
}

.overlay[aria-hidden="false"] {
    display: block;
}

.drawer {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: min(420px, 92vw);
    background: var(--surface);
    border-left: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.drawer-close {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .85);
    cursor: pointer;
}

.drawer nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 6px;
}

.drawer .nav-link {
    padding: 12px 12px;
}

.drawer .btn {
    width: 100%;
}


main {
    padding: 26px 0 54px;
}


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

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 18px;
    align-items: start;
}

.hero-card {
    background: rgba(255, 255, 255, .75);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow2);
    padding: 22px;
    overflow: hidden;
    position: relative;
}

.hero-card:before {
    content: "";
    position: absolute;
    inset: -140px -120px auto auto;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle at 30% 30%, rgba(11, 92, 255, .22), transparent 55%),
        radial-gradient(circle at 60% 70%, rgba(20, 184, 166, .18), transparent 60%);
    filter: blur(2px);
    transform: rotate(10deg);
}

.hero h1 {
    margin: 0 0 10px;
    font-size: clamp(26px, 3.1vw, 42px);
    line-height: 1.15;
    letter-spacing: -.02em;
    position: relative;
}

.hero p {
    margin: 0 0 16px;
    color: var(--muted);
    font-weight: 500;
    position: relative;
}

.hero-ctas {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 12px 0 16px;
    position: relative;
}

.badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
    position: relative;
}

.note {
    margin-top: 14px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    position: relative;
}


.hero-side {
    display: grid;
    gap: 12px;
}

.mini-panel {
    background: rgba(255, 255, 255, .75);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow2);
    padding: 18px;
}

.mini-panel h2 {
    margin: 0 0 8px;
    font-size: 15px;
    letter-spacing: -.01em;
}

.mini-panel p {
    margin: 0;
    color: var(--muted);
    font-weight: 500;
    font-size: 14px;
}

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

.mini-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--muted);
    font-weight: 600;
    font-size: 14px;
}

.mini-list i {
    color: var(--brand2);
    margin-top: 3px;
}


section {
    padding: 26px 0;
}

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

.section-head h2 {
    margin: 0;
    font-size: 22px;
    letter-spacing: -.01em;
}

.section-head p {
    margin: 0;
    color: var(--muted);
    font-weight: 500;
}


.featured {
    background: rgba(255, 255, 255, .75);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 18px;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 16px;
    align-items: stretch;
}

.featured .logo {
    border-radius: var(--radius2);
    border: 1px solid var(--line);
    background: #fff;
    display: grid;
    place-items: center;
    padding: 14px;
    min-height: 140px;
    overflow: hidden;
}

.featured .logo img {
    width: 140px;
    height: auto;
    filter: saturate(1.05);
}

.featured h3 {
    margin: 0 0 8px;
    font-size: 18px;
    letter-spacing: -.01em;
}

.rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(245, 158, 11, .10);
    border: 1px solid rgba(245, 158, 11, .25);
    font-weight: 800;
    color: #92400e;
    margin: 0 0 12px;
}

.stars i {
    color: var(--warning);
}

.grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.list {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    font-weight: 600;
}

.bullets {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-weight: 700;
}

.bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.bullets i {
    color: var(--brand);
    margin-top: 2px;
}

.featured .cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.mini-disclaimer {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}


.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 6px 0 14px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .75);
    cursor: pointer;
    font-weight: 800;
    color: var(--muted);
    transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.chip:hover {
    transform: translateY(-1px);
    border-color: rgba(11, 92, 255, .30);
}

.chip[aria-pressed="true"] {
    color: #0b2a7a;
    border-color: rgba(11, 92, 255, .35);
    background: rgba(11, 92, 255, .10);
}

.chip i {
    color: var(--brand);
}

.table-wrap {
    background: rgba(255, 255, 255, .75);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow2);
    overflow: hidden;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead th {
    text-align: left;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #334155;
    background: rgba(15, 23, 42, .03);
    padding: 12px 12px;
    border-bottom: 1px solid var(--line);
}

tbody td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
    color: var(--muted);
    font-weight: 600;
}

tbody tr:last-child td {
    border-bottom: 0;
}

.casino-cell {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-weight: 900;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .75);
    color: var(--muted);
    font-weight: 800;
    font-size: 12px;
}

.badge.featured {
    border-color: rgba(20, 184, 166, .35);
    background: rgba(20, 184, 166, .12);
    color: #0f766e;
}

.cta-cell a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(11, 92, 255, .10);
    border: 1px solid rgba(11, 92, 255, .25);
    font-weight: 900;
    color: #0b2a7a;
    transition: transform .15s ease, background .15s ease;
    white-space: nowrap;
}

.cta-cell a:hover {
    transform: translateY(-1px);
    background: rgba(11, 92, 255, .14);
}


.cards {
    display: none;
    padding: 12px;
    gap: 12px;
}

.casino-card {
    background: rgba(255, 255, 255, .85);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow2);
    padding: 14px;
    display: grid;
    gap: 10px;
}

.kv {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    color: var(--muted);
    font-weight: 700;
    font-size: 14px;
}

.kv b {
    color: #0f172a;
}

.row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}


.method {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.card {
    background: rgba(255, 255, 255, .75);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow2);
    padding: 16px;
}

.criterion {
    display: grid;
    gap: 8px;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(15, 23, 42, .18);
}

.criterion:last-child {
    border-bottom: 0;
}

.crit-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-weight: 900;
    color: var(--text);
}

.crit-top span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
}

.crit-top i {
    color: var(--brand);
}

.bar {
    height: 10px;
    background: rgba(15, 23, 42, .08);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}

.bar>div {
    height: 100%;
    width: 0%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand), var(--brand2));
    transition: width 900ms ease;
}

.method-note {
    margin-top: 10px;
    color: var(--muted);
    font-weight: 600;
}

.method-note strong {
    color: var(--text);
}


.guides {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.guide-card {
    background: rgba(255, 255, 255, .75);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow2);
    padding: 14px;
    display: grid;
    gap: 10px;
    min-height: 190px;
}

.guide-card h3 {
    margin: 0;
    font-size: 14px;
    letter-spacing: -.01em;
}

.guide-card .icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(11, 92, 255, .10);
    border: 1px solid rgba(11, 92, 255, .18);
}

.guide-card .icon i {
    color: var(--brand);
}

.guide-card ul {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    font-weight: 600;
    font-size: 13px;
}

.guide-card .btn {
    margin-top: auto;
    width: 100%;
}


.faq {
    display: grid;
    gap: 10px;
}

details {
    background: rgba(255, 255, 255, .75);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow2);
    padding: 12px 14px;
    overflow: hidden;
}

summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-weight: 900;
    color: var(--text);
}

summary::-webkit-details-marker {
    display: none;
}

details p {
    margin: 10px 0 0;
    color: var(--muted);
    font-weight: 600;
}

.chev {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .8);
    display: grid;
    place-items: center;
    transition: transform .15s ease;
    flex: 0 0 auto;
}

details[open] .chev {
    transform: rotate(180deg);
}


.responsible {
    background: linear-gradient(180deg, rgba(239, 68, 68, .07), rgba(255, 255, 255, .0));
    border-top: 1px solid rgba(239, 68, 68, .15);
    border-bottom: 1px solid rgba(239, 68, 68, .15);
}

.responsible-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 14px;
    align-items: start;
}

.responsible .card {
    background: rgba(255, 255, 255, .80);
}

.measures {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: grid;
    gap: 10px;
    color: var(--muted);
    font-weight: 700;
}

.measures li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.measures i {
    color: var(--danger);
    margin-top: 2px;
}

.alert-box {
    border-radius: var(--radius);
    border: 1px solid rgba(239, 68, 68, .22);
    background: rgba(239, 68, 68, .08);
    padding: 14px;
}

.alert-box h3 {
    margin: 0 0 8px;
}

.alert-box ul {
    margin: 0;
    padding-left: 18px;
    color: #7f1d1d;
    font-weight: 700;
}

.big18 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-radius: var(--radius);
    padding: 14px;
    border: 1px solid rgba(239, 68, 68, .25);
    background: rgba(239, 68, 68, .10);
    font-weight: 1000;
}

.big18 span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #7f1d1d;
}


footer {
    padding: 34px 0;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, .55);
    backdrop-filter: blur(8px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 16px;
    align-items: start;
}

footer h3 {
    margin: 0 0 10px;
    font-size: 14px;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #334155;
}

footer p,
footer a {
    color: var(--muted);
    font-weight: 600;
    font-size: 14px;
}

.foot-links {
    display: grid;
    gap: 8px;
}

.social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.social a {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .8);
    display: grid;
    place-items: center;
    transition: transform .15s ease;
}

.social a:hover {
    transform: translateY(-1px);
}

.footer-bottom {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    color: var(--muted);
    font-weight: 700;
    font-size: 13px;
}


.modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: none;
    background: rgba(2, 6, 23, .58);
    backdrop-filter: blur(6px);
    padding: 18px;
}

.modal[aria-hidden="false"] {
    display: grid;
    place-items: center;
}

.modal-card {
    width: min(720px, 100%);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 16px;
    max-height: min(80vh, 740px);
    overflow: auto;
}

.modal-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.modal-head h3 {
    margin: 0;
}

.modal-close {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .9);
    cursor: pointer;
}

.modal-content {
    color: var(--muted);
    font-weight: 600;
}

.modal-content ul {
    padding-left: 18px;
}


.reveal {
    transform: translateY(10px);
    transition: opacity .5s ease, transform .5s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .method {
        grid-template-columns: 1fr;
    }

    .guides {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 880px) {
    nav.desktop {
        display: none;
    }

    .hamburger {
        display: inline-grid;
        place-items: center;
    }

    .featured {
        grid-template-columns: 1fr;
    }

    .featured .logo {
        min-height: 120px;
    }

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

    .responsible-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    thead {
        display: none;
    }

    table {
        display: none;
    }

    .cards {
        display: grid;
    }

    .badges {
        grid-template-columns: 1fr;
    }

    .grid2 {
        grid-template-columns: 1fr;
    }

    .guides {
        grid-template-columns: 1fr;
    }

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


@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

.logo-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    max-width: 1120px;
    margin: 25px auto;
    justify-content: center;
    background: black;
    padding: 10px;
    border-radius: 8px;
}

.logo-footer a {
    height: 48px;

}

.logo-footer a img {
    height: 100%;
    object-fit: contain;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: start;
}

.contact-form {
    display: grid;
    gap: 12px;
}

.field {
    display: grid;
    gap: 6px;
}

.field label {
    font-weight: 900;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.field label i {
    color: var(--brand);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 12px 12px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .9);
    color: var(--text);
    font-weight: 600;
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgba(11, 92, 255, .35);
    box-shadow: 0 0 0 4px rgba(11, 92, 255, .10);
}

.error {
    min-height: 16px;
    color: #991b1b;
    font-weight: 800;
    font-size: 12px;
}

.consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(239, 68, 68, .22);
    background: rgba(239, 68, 68, .06);
    color: var(--muted);
    font-weight: 700;
}

.consent input {
    margin-top: 4px;
}

.contact-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.form-success {
    margin-top: 6px;
    color: #065f46;
    font-weight: 900;
    font-size: 13px;
}

@media (max-width: 980px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.legal-card {
    background: rgba(255, 255, 255, .75);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow2);
    overflow: hidden;
}

.legal-toc {
    padding: 16px;
    border-bottom: 1px solid var(--line);
    background: rgba(15, 23, 42, .03);
}

.legal-toc h3 {
    margin: 0 0 10px;
    font-size: 14px;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #334155;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.toc-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.toc-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .75);
    color: var(--muted);
    font-weight: 800;
    transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.toc-links a i {
    color: var(--brand);
}

.toc-links a:hover {
    transform: translateY(-1px);
    border-color: rgba(11, 92, 255, .30);
    background: rgba(11, 92, 255, .06);
}

.legal-content {
    padding: 18px;
    color: var(--muted);
    font-weight: 600;
}

.legal-content h3 {
    margin: 18px 0 8px;
    color: var(--text);
    font-weight: 900;
    letter-spacing: -.01em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.legal-content h3:first-child {
    margin-top: 0;
}

.legal-content ul {
    margin: 10px 0 0;
    padding-left: 18px;
}

.legal-note {
    margin-top: 10px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(11, 92, 255, .18);
    background: rgba(11, 92, 255, .06);
    font-weight: 700;
}

.legal-callout {
    margin-top: 12px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(20, 184, 166, .22);
    background: rgba(20, 184, 166, .08);
    color: #0f766e;
    font-weight: 800;
}

.legal-sep {
    border: 0;
    border-top: 1px solid var(--line);
    margin: 18px 0;
}

.legal-foot {
    margin: 0;
    font-weight: 700;
    color: var(--muted);
}

@media (max-width: 720px) {
    .toc-links {
        grid-template-columns: 1fr;
    }
}

#cook-rg {
    margin-top: 18px;
    padding: 16px;
    border-radius: var(--radius);
    border: 1px solid rgba(239, 68, 68, .18);
    background: linear-gradient(180deg, rgba(239, 68, 68, .06), rgba(255, 255, 255, 0));
}

#cook-rg h3 {
    margin: 0 0 10px;
    color: var(--text);
    font-weight: 900;
    letter-spacing: -.01em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

#cook-rg h3 i {
    color: var(--danger);
}

#cook-rg h4 {
    margin: 14px 0 8px;
    color: var(--text);
    font-weight: 900;
    letter-spacing: -.01em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

#cook-rg h4 i {
    color: var(--brand);
}

#cook-rg h4 i.fa-triangle-exclamation {
    color: var(--danger);
}

#cook-rg h4 i.fa-cookie-bite {
    color: var(--warning);
}

#cook-rg p {
    margin: 0;
    color: var(--muted);
    font-weight: 600;
}

#cook-rg p+p {
    margin-top: 10px;
}

#cook-rg ul {
    margin: 10px 0 0;
    padding-left: 18px;
    color: var(--muted);
    font-weight: 600;
}

#cook-rg ul li {
    margin: 6px 0;
}

#cook-rg a {
    color: #0b2a7a;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 3px;
}

#cook-rg a:hover {
    text-decoration-thickness: 2px;
}

#cook-rg .legal-callout {
    margin-top: 12px;
    border-color: rgba(239, 68, 68, .20);
    background: rgba(239, 68, 68, .08);
    color: #7f1d1d;
}

#cook-rg .legal-note {
    margin-top: 12px;
    border-color: rgba(11, 92, 255, .18);
    background: rgba(11, 92, 255, .06);
}


#cook-rg ul {
    list-style: none;
}

#cook-rg ul li {
    position: relative;
    padding-left: 18px;
}

#cook-rg ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--danger), var(--brand2));
    opacity: .9;
}


@media (max-width: 720px) {
    #cook-rg {
        padding: 14px;
    }
}

.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 95;
    display: none;
}

.cookie-banner[aria-hidden="false"] {
    display: block;
}

.cookie-inner {
    background: rgba(255, 255, 255, .88);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    padding: 14px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: start;
}

.cookie-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 1000;
    color: var(--text);
    margin-bottom: 6px;
}

.cookie-title i {
    color: var(--warning);
}

.cookie-copy p {
    margin: 0;
    color: var(--muted);
    font-weight: 600;
    font-size: 14px;
}

.cookie-copy p+p {
    margin-top: 8px;
}

.cookie-mini {
    font-size: 12px;
    font-weight: 800;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.cookie-pref {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.cookie-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .75);
}

.cookie-row-title {
    font-weight: 900;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cookie-row-title i {
    color: var(--brand);
}

.cookie-row-desc {
    margin-top: 4px;
    color: var(--muted);
    font-weight: 600;
    font-size: 13px;
}

.cookie-toggle {
    display: grid;
    place-items: center;
}


.switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: rgba(15, 23, 42, .15);
    border: 1px solid var(--line);
    transition: .2s;
    border-radius: 999px;
}

.slider:before {
    content: "";
    position: absolute;
    height: 22px;
    width: 22px;
    left: 4px;
    top: 3px;
    background: white;
    border-radius: 999px;
    box-shadow: 0 6px 14px rgba(2, 6, 23, .12);
    transition: .2s;
}

.switch input:checked+.slider {
    background: rgba(11, 92, 255, .18);
    border-color: rgba(11, 92, 255, .35);
}

.switch input:checked+.slider:before {
    transform: translateX(22px);
}


@media (max-width: 880px) {
    .cookie-inner {
        grid-template-columns: 1fr;
    }

    .cookie-actions {
        justify-content: flex-start;
    }
}


.age-overlay {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: none;
    background: rgba(2, 6, 23, .62);
    backdrop-filter: blur(8px);
    padding: 18px;
}

.age-overlay[aria-hidden="false"] {
    display: grid;
    place-items: center;
}

.age-card {
    width: min(560px, 100%);
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 16px;
}

.age-head {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.age-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.age-actions .btn {
    flex: 1 1 220px;
}