:root {
    --ink: #172033;
    --muted: #5d6678;
    --paper: #ffffff;
    --white: #ffffff;
    --line: #e2e6ef;
    --violet: #6657e8;
    --violet-deep: #4436b8;
    --mint: #5dc7ad;
    --sun: #f5b84d;
    --coral: #ef7e72;
    --shadow: 0 18px 48px rgba(42, 50, 80, .10);
    --radius: 20px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.62;
}

a {
    color: var(--violet-deep);
    text-underline-offset: 3px;
}

a:hover {
    color: var(--violet);
}

img,
svg {
    max-width: 100%;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

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

.shell {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.age-bar {
    background: #202941;
    color: #f9fbff;
    font-size: .82rem;
    text-align: center;
    padding: 8px 16px;
}

.age-bar strong {
    color: #ffd36d;
}

.site-header {
    position: sticky;
    z-index: 30;
    top: 0;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(226, 230, 239, .9);
    backdrop-filter: blur(16px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ink);
    text-decoration: none;
    font-size: 1.18rem;
    font-weight: 800;
    letter-spacing: -.035em;
    white-space: nowrap;
}

.brand-mark {
    width: 30px;
    height: 30px;
    display: inline-grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--violet), #9b71ee);
    clip-path: polygon(50% 0, 94% 20%, 94% 78%, 50% 100%, 6% 78%, 6% 20%);
    font-size: .87rem;
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-list a {
    display: block;
    padding: 9px 11px;
    border-radius: 10px;
    color: #414a5e;
    font-size: .92rem;
    font-weight: 650;
    text-decoration: none;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
    background: #f0edff;
    color: var(--violet-deep);
}

.menu-toggle {
    display: none;
    border: 1px solid var(--line);
    border-radius: 9px;
    padding: 7px 10px;
    background: #fff;
    color: var(--ink);
    font: inherit;
}

main {
    overflow: hidden;
}

.hero {
    position: relative;
    padding: clamp(58px, 10vw, 108px) 0 72px;
    background: #fff;
}

.hero:before,
.hero:after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.hero:before {
    width: 420px;
    height: 420px;
    top: -230px;
    right: -125px;
    background: #e6e1ff;
}

.hero:after {
    width: 250px;
    height: 250px;
    bottom: -140px;
    left: -85px;
    background: #dbf5ee;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    gap: 42px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 15px;
    color: var(--violet-deep);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.eyebrow:before {
    content: "";
    width: 18px;
    height: 2px;
    background: var(--mint);
}

h1,
h2,
h3 {
    line-height: 1.13;
    letter-spacing: -.04em;
}

h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2.45rem, 5.5vw, 4.65rem);
}

h2 {
    margin: 0 0 17px;
    font-size: clamp(1.75rem, 3.1vw, 2.6rem);
}

h3 {
    margin: 0 0 9px;
    font-size: 1.18rem;
}

p {
    margin: 0 0 16px;
}

.lead {
    max-width: 670px;
    margin-top: 22px;
    color: var(--muted);
    font-size: clamp(1.04rem, 2vw, 1.2rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 27px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    padding: 10px 17px;
    border: 1px solid var(--violet);
    border-radius: 12px;
    background: var(--violet);
    color: #fff;
    font-size: .92rem;
    font-weight: 760;
    text-decoration: none;
    transition: transform .18s ease, background .18s ease;
}

.button:hover {
    transform: translateY(-2px);
    background: var(--violet-deep);
    color: #fff;
}

.button-secondary {
    background: #fff;
    color: var(--violet-deep);
}

.button-secondary:hover {
    background: #f3f1ff;
    color: var(--violet-deep);
}

.hero-panel {
    position: relative;
    z-index: 1;
    padding: 24px;
    border: 1px solid #e6e8f6;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow);
}

.hero-panel h2 {
    font-size: 1.3rem;
}

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

.check-list li {
    position: relative;
    padding-left: 26px;
    color: #4d5669;
    font-size: .94rem;
}

.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    color: #228b74;
    font-weight: 900;
}

.section {
    padding: 74px 0;
}

.section-white {
    background: var(--white);
}

.section-tint {
    background: #eff4fb;
}

.section-heading {
    max-width: 730px;
    margin-bottom: 31px;
}

.section-heading p {
    color: var(--muted);
}

.notice {
    padding: 22px 24px;
    border: 1px solid #cfc9ff;
    border-radius: var(--radius);
    background: linear-gradient(120deg, #f3f0ff, #fbfaff);
}

.notice h2,
.notice h3 {
    margin-bottom: 8px;
}

.notice p:last-child {
    margin-bottom: 0;
}

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

.notice-symbol {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 14px;
    background: var(--violet);
    color: #fff;
    font-weight: 850;
}

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

.platform-grid {
    grid-template-columns: repeat(5, 1fr);
}

.card {
    padding: 23px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 6px 18px rgba(44, 52, 75, .035);
}

.platform-card {
    display: flex;
    flex-direction: column;
    min-height: 270px;
}

.platform-logo {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 17px;
    border-radius: 15px;
    color: #fff;
    font-size: .86rem;
    font-weight: 900;
    letter-spacing: -.04em;
}

.arena {
    background: linear-gradient(135deg, #ec735c, #ffad72);
}

.germania {
    background: linear-gradient(135deg, #735acb, #a886f0);
}

.favbet {
    background: linear-gradient(135deg, #297e98, #59c6bc);
}

.psk {
    background: linear-gradient(135deg, #2a4a8d, #6987e6);
}

.supersport {
    background: linear-gradient(135deg, #e28b38, #f1c957);
}

.platform-card p {
    color: var(--muted);
    font-size: .92rem;
}

.text-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding-top: 10px;
    color: var(--violet-deep);
    font-size: .92rem;
    font-weight: 800;
    text-decoration: none;
}

.text-link:after {
    content: "→";
    transition: transform .18s ease;
}

.text-link:hover:after {
    transform: translateX(3px);
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 7px 18px rgba(44, 52, 75, .035);
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: .92rem;
}

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

th {
    background: #fafbff;
    color: #3d475b;
    font-size: .76rem;
    font-weight: 850;
    letter-spacing: .045em;
    text-transform: uppercase;
}

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

td:first-child {
    min-width: 135px;
    color: var(--ink);
    font-weight: 750;
}

.pill {
    display: inline-block;
    padding: 4px 9px;
    border-radius: 999px;
    background: #e7f7f3;
    color: #277968;
    font-size: .78rem;
    font-weight: 750;
}

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

.info-card {
    min-height: 190px;
}

.number {
    display: block;
    margin-bottom: 15px;
    color: var(--mint);
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: -.06em;
}

.info-card p {
    color: var(--muted);
    font-size: .94rem;
}

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

.faq details {
    padding: 0 19px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
}

.faq summary {
    padding: 16px 28px 16px 0;
    cursor: pointer;
    font-weight: 780;
    list-style: none;
}

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

.faq summary:after {
    content: "+";
    float: right;
    margin-right: -26px;
    color: var(--violet);
    font-size: 1.35rem;
    font-weight: 400;
}

.faq details[open] summary:after {
    content: "−";
}

.faq details p {
    max-width: 900px;
    margin: 0 0 17px;
    color: var(--muted);
}

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

.quote {
    position: relative;
}

.quote:before {
    content: "“";
    display: block;
    height: 30px;
    color: #b9b1ff;
    font-family: Georgia, serif;
    font-size: 3.2rem;
    line-height: 1;
}

.quote p {
    color: #485165;
    font-size: .96rem;
}

.quote cite {
    color: #778095;
    font-size: .84rem;
    font-style: normal;
}

.useful-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
}

.useful-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #fff;
    color: #39445b;
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
}

.useful-links a:after {
    content: "↗";
    color: var(--violet);
}

.mini-note {
    margin-top: 18px;
    color: #687286;
    font-size: .84rem;
}

.breadcrumb {
    padding: 20px 0 0;
    color: #727c90;
    font-size: .84rem;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.breadcrumb li+li:before {
    content: "/";
    margin-right: 7px;
    color: #abb2c0;
}

.breadcrumb a {
    color: #687286;
}

.page-hero {
    padding: 38px 0 56px;
    background: #fff;
}

.page-hero .lead {
    margin-top: 16px;
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 21px;
}

.meta-tag {
    padding: 6px 10px;
    border: 1px solid #d9def0;
    border-radius: 999px;
    color: #59647a;
    background: #fff;
    font-size: .78rem;
    font-weight: 700;
}

.two-col {
    display: grid;
    grid-template-columns: minmax(0, 1.38fr) minmax(270px, .62fr);
    gap: 30px;
    align-items: start;
}

.prose {
    color: #455066;
}

.prose h2,
.prose h3 {
    color: var(--ink);
}

.prose ul {
    padding-left: 20px;
}

.prose li {
    margin: 7px 0;
}

.side-card {
    position: sticky;
    top: 95px;
}

.side-card p {
    color: var(--muted);
    font-size: .92rem;
}

.side-card .button {
    width: 100%;
    margin: 6px 0 10px;
}

.exit-card {
    max-width: 680px;
    margin: 36px auto 0;
    padding: 34px;
    text-align: center;
}

.exit-card .platform-logo {
    margin: 0 auto 17px;
}

.exit-card .button {
    width: 100%;
    margin: 10px 0 14px;
}

.legal-layout {
    max-width: 860px;
}

.legal-layout h2 {
    margin-top: 39px;
    font-size: 1.55rem;
}

.legal-layout h3 {
    margin-top: 25px;
}

.legal-layout p,
.legal-layout li {
    color: #4e586c;
}

.legal-layout ul {
    padding-left: 22px;
}

.legal-layout li {
    margin: 7px 0;
}

.site-footer {
    padding: 48px 0 25px;
    background: #202941;
    color: #d9deea;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 34px;
}

.site-footer .brand {
    color: #fff;
}

.site-footer p {
    max-width: 460px;
    margin-top: 14px;
    color: #c0c7d7;
    font-size: .9rem;
}

.footer-title {
    margin: 3px 0 12px;
    color: #fff;
    font-size: .85rem;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 7px;
}

.footer-links a {
    color: #d7dced;
    font-size: .88rem;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-top: 19px;
    border-top: 1px solid rgba(255, 255, 255, .13);
    color: #aeb7ca;
    font-size: .78rem;
}

.footer-bottom p {
    margin: 0;
    color: inherit;
    font-size: inherit;
}

@media (max-width: 1040px) {
    .platform-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 760px) {
    .shell {
        width: min(100% - 28px, 1160px);
    }

    .age-bar {
        font-size: .75rem;
    }

    .nav-row {
        min-height: 62px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-list {
        display: none;
        position: absolute;
        top: 62px;
        left: 0;
        right: 0;
        padding: 9px 14px 14px;
        border-bottom: 1px solid var(--line);
        background: #fff;
        box-shadow: 0 15px 25px rgba(34, 40, 59, .08);
    }

    .nav-list.open {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .nav-list a {
        padding: 10px;
    }

    .hero {
        padding: 56px 0 58px;
    }

    .hero-grid,
    .two-col {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .hero-panel {
        padding: 20px;
    }

    .section {
        padding: 56px 0;
    }

    .platform-grid,
    .info-grid,
    .quote-grid,
    .useful-links,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .platform-card {
        min-height: 0;
    }

    .side-card {
        position: static;
    }

    .footer-grid {
        gap: 24px;
    }

    .footer-bottom {
        display: grid;
    }
}

@media (max-width: 440px) {
    h1 {
        font-size: 2.25rem;
    }

    .nav-list.open {
        grid-template-columns: 1fr;
    }

    .button {
        width: 100%;
    }

    .notice {
        padding: 19px;
    }

    .notice-grid {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    th,
    td {
        padding: 13px;
    }
}


.section-alt {
    padding: 80px 0;
}

.section-sub {
    max-width: 900px;
    margin: 0 auto 16px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}

.section-lead {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
    color: #4b5563;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.platform-card {
    background: #a7a7a7;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: .25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
}

.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.card-emoji {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    margin-bottom: 16px;
}

.card-logo {
    max-width: 120px;
    height: auto;
    object-fit: contain;
}

.card-header h3 {
    margin: 0 0 12px;
    text-align: center;
    font-size: 22px;
}

.card-desc {
    font-weight: 600;
    margin-bottom: 12px;
    text-align: center;
}

.card-desc-extra {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.info-list {
    margin: 0 0 20px;
    padding-left: 18px;
}

.info-list li {
    margin-bottom: 8px;
}

.card-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.btn-outline,
.btn-fresh {
    flex: 1;
    text-align: center;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: .2s ease;
}

.btn-outline {
    border: 1px solid #d1d5db;
    color: #111827;
    background: #fff;
}

.btn-outline:hover {
    background: #f3f4f6;
}

.btn-fresh {
    background: #2563eb;
    color: #fff;
}

.btn-fresh:hover {
    background: #1d4ed8;
}

.deco-tag {
    background: #f3f4f6;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    color: #4b5563;
}

@media (max-width: 768px) {
    .card-actions {
        flex-direction: column;
    }

    .platform-card {
        padding: 20px;
    }
}

.regulators-bar {
    margin-top: 48px;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.regulators-title {
    margin: 0 0 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .85;
}

.regulators-logos {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.regulators-logos li {
    margin: 0;
    padding: 0;
}

.regulators-logos a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 64px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .04);
    transition: all .25s ease;
}

.regulators-logos a:hover {
    background: rgba(255, 255, 255, .08);
    transform: translateY(-2px);
}

.regulators-logos img {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
    display: block;
}

.regulators-note {
    max-width: 900px;
    margin: 20px auto 0;
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
    opacity: .75;
}

@media (max-width: 768px) {
    .regulators-logos {
        gap: 16px;
    }

    .regulators-logos a {
        width: 120px;
        height: 56px;
    }

    .regulators-note {
        font-size: 12px;
        padding: 0 12px;
    }
}

.container {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.section-alt .section-title {
    max-width: 900px;
    margin: 0 auto 16px;
    text-align: center;
}

.section-alt {
    padding: 80px 0;
}

.card-emoji {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 86px;
    margin-bottom: 18px;
}

.card-logo {
    width: 150px;
    max-width: 75%;
    max-height: 64px;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, .18));
    transition: transform .25s ease, filter .25s ease;
}

.platform-card:hover .card-logo {
    transform: scale(1.08);
    filter: drop-shadow(0 10px 16px rgba(0, 0, 0, .24));
}