:root {
    --bg: #f6f8fc;
    --bg-soft: #eef3fb;
    --surface: #ffffff;
    --surface-2: #f8fbff;
    --text: #0f172a;
    --muted: #52607a;
    --line: #dbe5f1;
    --line-strong: #c6d4e6;
    --brand: #1d4ed8;
    --brand-2: #06b6d4;
    --accent: #16a34a;
    --accent-2: #f59e0b;
    --shadow: 0 20px 60px rgba(15, 23, 42, .08);
    --shadow-sm: 0 10px 30px rgba(15, 23, 42, .06);
    --radius: 24px;
    --container: min(1180px, calc(100% - 32px));
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: "Inter", system-ui, sans-serif;
    color: var(--text);
    background: radial-gradient(circle at top left, rgba(29, 78, 216, .08), transparent 28%), radial-gradient(circle at top right, rgba(6, 182, 212, .12), transparent 24%), linear-gradient(180deg, #fbfdff 0%, var(--bg) 60%, #eef5ff 100%);
    line-height: 1.55
}

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

a {
    color: var(--brand);
    text-decoration: none
}

button,
input,
select,
textarea {
    font: inherit
}

.container {
    width: var(--container);
    margin-inline: auto
}

.skip-link {
    position: absolute;
    left: -999px
}

.skip-link:focus {
    left: 16px;
    top: 16px;
    padding: 10px 14px;
    background: #fff;
    border-radius: 10px;
    z-index: 1001
}

.site-shell {
    min-height: 100dvh;
    display: flex;
    flex-direction: column
}

main {
    flex: 1
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, .82);
    border-bottom: 1px solid rgba(198, 212, 230, .65)
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 80px
}

.logo-slot,
.logo-slot--footer {
    display: block;
    width: 75px;
    padding: 5px;
}

.logo-slot--footer {}

.nav-toggle {
    display: none;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 14px;
    padding: 10px 12px;
    color: var(--text)
}

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

.nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px
}

.nav__link {
    padding: 11px 14px;
    border-radius: 999px;
    color: var(--text);
    font-weight: 600
}

.nav__link:hover,
.nav__link[aria-current="page"] {
    background: var(--bg-soft);
    color: var(--brand)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: .2s ease;
    text-decoration: none;
    cursor: pointer
}

.btn--primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
    box-shadow: var(--shadow-sm)
}

.btn--ghost {
    background: #fff;
    border-color: var(--line);
    color: var(--text)
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(29, 78, 216, .08);
    color: var(--brand);
    font-size: .92rem;
    font-weight: 700
}

.hero {
    padding: 40px 0 24px
}

.hero__box {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    padding: clamp(28px, 4vw, 48px);
    background: radial-gradient(circle at 15% 20%, rgba(29, 78, 216, .14), transparent 26%), radial-gradient(circle at 80% 10%, rgba(6, 182, 212, .18), transparent 24%), linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(244, 250, 255, .96));
    border: 1px solid rgba(198, 212, 230, .8);
    box-shadow: var(--shadow)
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 28px;
    align-items: center
}

.hero h1 {
    margin: 14px 0 14px;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.02;
    letter-spacing: -.03em
}

.hero p {
    font-size: 1.06rem;
    color: var(--muted);
    max-width: 64ch
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 26px
}

.stat {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .82);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm)
}

.stat strong {
    display: block;
    font-size: 1.5rem
}

.hero-visual {
    min-height: 360px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(29, 78, 216, .08), rgba(6, 182, 212, .04)), linear-gradient(145deg, #f9fcff 0%, #edf6ff 100%);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    padding: 18px;
    display: grid;
    gap: 16px
}

.visual-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow-sm)
}

.visual-card__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px
}

.visual-rank {
    display: flex;
    align-items: center;
    gap: 12px
}

.rank-num {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
    font-weight: 800
}

.logo-fallback,
.operator-logo {
    width: 88px;
    border-radius: 14px;
    border: 1px solid #ffffff00;
    display: grid;
    place-items: center;
    color: var(--muted);
    background: var(--surface-2);
    font-size: .85rem;
    font-weight: 700;
    text-align: center
}

.operator-logo {
    object-fit: contain;
    background: #fff;
    border-style: solid
}

.section {
    padding: 34px 0
}

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

.section__head h2 {
    margin: 0;
    font-size: clamp(1.55rem, 2.6vw, 2.5rem);
    line-height: 1.08
}

.section__head p {
    margin: 8px 0 0;
    color: var(--muted);
    max-width: 70ch
}

.grid {
    display: grid;
    gap: 18px
}

.grid--cards {
    grid-template-columns: repeat(3, 1fr)
}

.grid--3 {
    grid-template-columns: repeat(3, 1fr)
}

.grid--2 {
    grid-template-columns: repeat(2, 1fr)
}

.card {
    background: rgba(255, 255, 255, .9);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 22px;
    box-shadow: var(--shadow-sm)
}

.card h3 {
    margin: 0 0 10px;
    font-size: 1.15rem
}

.card p {
    margin: 0;
    color: var(--muted)
}

.operator-card {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.operator-card__top,
.operator-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

.score {
    min-width: 64px;
    height: 44px;
    padding: 0 12px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(22, 163, 74, .1);
    color: var(--accent);
    font-weight: 800
}

.meta-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none
}

.meta-list li {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px;
    background: var(--surface-2)
}

.meta-list strong {
    display: block;
    font-size: .8rem;
    color: var(--muted);
    margin-bottom: 4px
}

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

.chip {
    padding: 8px 10px;
    border-radius: 999px;
    background: var(--bg-soft);
    color: var(--text);
    font-size: .92rem;
    font-weight: 600
}

.table-wrap {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow);
    overflow: auto
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px
}

th,
td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top
}

th {
    font-size: .92rem;
    color: var(--muted);
    background: #fbfdff
}

tr:hover td {
    background: #fbfdff
}

.notice {
    border: 1px solid rgba(245, 158, 11, .22);
    background: rgba(245, 158, 11, .08);
    padding: 16px 18px;
    border-radius: 18px;
    color: #8a4b00
}

.disclosure,
.responsible-box {
    background: linear-gradient(135deg, rgba(29, 78, 216, .06), rgba(6, 182, 212, .06));
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 20px 22px
}

.filter-bar {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 18px
}

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

.field label {
    font-weight: 700;
    font-size: .95rem
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 48px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fff;
    padding: 0 14px;
    color: var(--text)
}

.field textarea {
    min-height: 140px;
    padding: 14px;
    resize: vertical
}

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

.list-clean li+li {
    margin-top: 8px
}

.faq {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px 18px
}

.faq+.faq {
    margin-top: 12px
}

.faq summary {
    cursor: pointer;
    font-weight: 800;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px
}

.faq summary::after {
    content: '▼';
    font-size: .75rem;
    transition: transform .2s ease;
    opacity: .5
}

.faq[open] summary::after {
    transform: rotate(180deg)
}

.breadcrumbs {
    padding-top: 18px;
    font-size: .95rem;
    color: var(--muted)
}

.breadcrumbs a {
    color: inherit
}

.page-hero {
    padding: 26px 0 20px
}

.page-hero__box {
    padding: 28px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm)
}

.cols {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 22px
}

.aside-stack {
    display: grid;
    gap: 18px
}

.site-footer {
    color: #eaf2ff;
    background: radial-gradient(circle at top left, rgba(29, 78, 216, .26), transparent 30%), linear-gradient(180deg, #0f172a 0%, #111827 100%);
    margin-top: 46px
}

.footer__top {
    padding: 34px 0 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.1fr .8fr .8fr;
    gap: 22px
}

.footer__copy {
    padding: 16px 0 26px;
    color: #bbcae8;
    font-size: .95rem
}

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

.footer__nav a {
    color: #dbeafe
}

.legal-note {
    font-size: .95rem;
    color: #d8e4fb;
    max-width: 72ch
}

.muted {
    color: var(--muted)
}

.small {
    font-size: .92rem
}

.age-gate {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(15, 23, 42, .68);
    backdrop-filter: blur(10px);
    z-index: 200
}

.age-gate.is-visible {
    display: flex
}

.age-gate__box {
    width: min(540px, 100%);
    background: #fff;
    border-radius: 30px;
    padding: 28px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow)
}

.age-gate__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px
}

.hero-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}

.slide-mini {
    padding: 16px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--line)
}

.rating-stars {
    letter-spacing: 2px;
    color: var(--accent-2)
}

.icon-bullet {
    display: flex;
    gap: 12px;
    align-items: flex-start
}

.icon-bullet__mark {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(29, 78, 216, .1);
    display: grid;
    place-items: center;
    color: var(--brand);
    font-weight: 800;
    flex: none
}

@media (max-width: 1024px) {

    .hero__grid,
    .grid--cards,
    .grid--3,
    .grid--2,
    .cols,
    .footer__grid,
    .hero-slider {
        grid-template-columns: 1fr 1fr
    }

    .filter-bar {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 760px) {
    .header__inner {
        min-height: 72px
    }

    .nav-toggle {
        display: inline-flex
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 12px 16px 18px;
        background: rgba(255, 255, 255, .96);
        border-bottom: 1px solid var(--line);
        display: none
    }

    .nav.is-open {
        display: block
    }

    .nav__list {
        flex-direction: column;
        align-items: stretch
    }

    .nav__link {
        display: block;
        padding: 12px 14px;
        border-radius: 14px
    }

    .hero__grid,
    .grid--cards,
    .grid--3,
    .grid--2,
    .cols,
    .footer__grid,
    .hero-slider,
    .hero__stats,
    .filter-bar {
        grid-template-columns: 1fr
    }

    .section {
        padding: 28px 0
    }

    .hero {
        padding: 24px 0 16px
    }

    .page-hero__box,
    .hero__box,
    .card,
    .table-wrap {
        border-radius: 22px
    }

}