@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    --clr-brand: #73499e;
    --clr-brand-dk: #5a3580;
    --clr-brand-lt: #8d60bb;
    --clr-btn-primary: #52cf27;
    --clr-btn-primary-hv: #43b520;
    --clr-btn-secondary: #f3902f;
    --clr-btn-secondary-hv: #e07a1a;
    --clr-bg: #eef0f5;
    --clr-bg-alt: #e3e5ed;
    --clr-white: #ffffff;
    --clr-text: #1e1e2e;
    --clr-text-muted: #5a5a72;
    --clr-border: #d0d3e0;
    --clr-pro: #2cb85c;
    --clr-con: #e03d3d;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(115, 73, 158, .12);
    --shadow-md: 0 4px 20px rgba(115, 73, 158, .18);
    --shadow-lg: 0 8px 40px rgba(115, 73, 158, .22);
    --transition: .25s ease;
    --font-main: 'Roboto Condensed', Arial, sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background: var(--clr-bg);
}

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

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

a {
    color: var(--clr-btn-secondary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--clr-btn-secondary-hv);
}

.wrapper {
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
}

.container--full {
    max-width: 100%;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 700;
    line-height: 1.25;
    color: var(--clr-text);
}

h1 {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.3rem, 3vw, 2rem);
    margin-bottom: .75rem;
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: .5rem;
}

p {
    margin-bottom: 1rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .6rem 1.4rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .02em;
    cursor: pointer;
    border: none;
    outline: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.btn--primary {
    background: var(--clr-btn-primary);
    color: var(--clr-white);
    box-shadow: 0 3px 12px rgba(82, 207, 39, .35);
}

.btn--primary:hover {
    background: var(--clr-btn-primary-hv);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(82, 207, 39, .45);
    color: var(--clr-white);
}

.btn--secondary {
    background: var(--clr-btn-secondary);
    color: var(--clr-white);
    box-shadow: 0 3px 12px rgba(243, 144, 47, .3);
}

.btn--secondary:hover {
    background: var(--clr-btn-secondary-hv);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 144, 47, .4);
    color: var(--clr-white);
}

.btn--lg {
    padding: .85rem 2rem;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
}

.btn--sm {
    padding: .4rem .9rem;
    font-size: .85rem;
}

.btn--pulse {
    animation: btnPulse 2.4s ease infinite;
}

@keyframes btnPulse {
    0%, 100% {
        box-shadow: 0 3px 12px rgba(82, 207, 39, .35);
    }
    50% {
        box-shadow: 0 6px 28px rgba(82, 207, 39, .65);
    }
}

/* ── HEADER ─────────────────────────────────────────────────────── */
.site-header {
    background: var(--clr-brand);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .25);
}

.site-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: .65rem 18px;
    max-width: 1200px;
    margin: 0 auto;
}

.site-header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-header__logo img {
    height: 44px;
    width: auto;
}

.site-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: .2rem;
    list-style: none;
}

.nav-list__item a {
    display: flex;
    align-items: center;
    gap: .35rem;
    padding: .45rem .75rem;
    color: rgba(255, 255, 255, .88);
    font-weight: 600;
    font-size: .9rem;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    text-decoration: none;
}

.nav-list__item a:hover,
.nav-list__item a.active {
    background: rgba(255, 255, 255, .15);
    color: var(--clr-white);
}

.nav-list__item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-shrink: 0;
}

.online-badge {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .78rem;
    color: rgba(255, 255, 255, .75);
    margin-right: .25rem;
}

.online-badge__dot {
    width: 8px;
    height: 8px;
    background: var(--clr-btn-primary);
    border-radius: 50%;
    animation: pulseDot 2s ease infinite;
    flex-shrink: 0;
}

@keyframes pulseDot {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .4;
    }
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .4rem;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.burger:hover {
    background: rgba(255, 255, 255, .15);
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-white);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.burger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.is-active span:nth-child(2) {
    opacity: 0;
}

.burger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE NAV ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .site-header__inner {
        grid-template-columns: auto 1fr auto;
    }

    .site-header__nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .mobile-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--clr-brand-dk);
        padding: 1rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
        z-index: 999;
    }

    .mobile-nav.is-open {
        display: block;
        animation: slideDown .25s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .mobile-nav .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: .25rem;
    }

    .mobile-nav .nav-list__item a {
        padding: .65rem .9rem;
        font-size: 1rem;
        border-radius: var(--radius-sm);
    }
}

.hero {
    position: relative;
    background: url('/banner.png') center/cover no-repeat;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(90, 53, 128, .92) 0%, rgba(30, 10, 60, .78) 55%, rgba(0, 0, 0, .4) 100%);
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2.5rem;
    align-items: center;
    padding: 3rem 18px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero__content {
    max-width: 580px;
}

.hero__label {
    display: inline-block;
    background: var(--clr-btn-secondary);
    color: var(--clr-white);
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: .25rem .7rem;
    border-radius: var(--radius-sm);
    margin-bottom: .75rem;
}

.hero__title {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    color: var(--clr-white);
    margin-bottom: .75rem;
    line-height: 1.15;
}

.hero__title span {
    color: var(--clr-btn-primary);
}

.hero__desc {
    color: rgba(255, 255, 255, .85);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero__actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

.bonus-tile {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--radius-lg);
    padding: 1.75rem 2rem;
    text-align: center;
    min-width: 220px;
    flex-shrink: 0;
}

.bonus-tile__label {
    font-size: .8rem;
    color: rgba(255, 255, 255, .7);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .35rem;
}

.bonus-tile__amount {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--clr-btn-primary);
    line-height: 1;
    margin-bottom: .2rem;
}

.bonus-tile__sub {
    font-size: .85rem;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 1rem;
}

.bonus-tile__extra {
    font-size: .9rem;
    color: var(--clr-btn-secondary);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

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

    .bonus-tile {
        min-width: 100%;
    }
}

/* ── SECTION COMMON ─────────────────────────────────────────────── */
.section {
    padding: 3.5rem 0;
}

.section--alt {
    background: var(--clr-bg-alt);
}

.section--brand {
    background: var(--clr-brand);
}

.section__head {
    text-align: center;
    margin-bottom: 2.25rem;
}

.section__head h2 {
    color: var(--clr-text);
}

.section--brand .section__head h2 {
    color: var(--clr-white);
}

.section__head p {
    color: var(--clr-text-muted);
    max-width: 600px;
    margin: .5rem auto 0;
}

.section--brand .section__head p {
    color: rgba(255, 255, 255, .75);
}

.section__divider {
    width: 48px;
    height: 4px;
    background: var(--clr-btn-secondary);
    border-radius: 2px;
    margin: .6rem auto 0;
}

/* ── PROS & CONS ─────────────────────────────────────────────────── */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.pros-cons__col {
    background: var(--clr-white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--clr-pro);
}

.pros-cons__col--cons {
    border-top-color: var(--clr-con);
}

.pros-cons__title {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pros-cons__title--pro {
    color: var(--clr-pro);
}

.pros-cons__title--con {
    color: var(--clr-con);
}

.pros-cons__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.pros-cons__list li {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    font-size: .95rem;
    line-height: 1.5;
}

.pros-cons__list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 640px) {
    .pros-cons {
        grid-template-columns: 1fr;
    }
}

/* ── VIDEO ───────────────────────────────────────────────────────── */
.video-wrap {
    background: var(--clr-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    max-width: 860px;
    margin: 0 auto;
}

.video-wrap__iframe {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrap__iframe iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ── LIVE GAMES ──────────────────────────────────────────────────── */
.live-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.game-card {
    background: var(--clr-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.game-card__img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: linear-gradient(135deg, var(--clr-brand) 0%, var(--clr-brand-dk) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, .5);
    min-height: 120px;
}

.game-card__body {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.game-card__name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--clr-text);
}

.game-card__provider {
    font-size: .8rem;
    color: var(--clr-text-muted);
}

@media (max-width: 900px) {
    .live-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .live-games-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: .75rem;
        -webkit-overflow-scrolling: touch;
    }

    .live-games-grid::-webkit-scrollbar {
        height: 4px;
    }

    .live-games-grid::-webkit-scrollbar-track {
        background: var(--clr-border);
        border-radius: 2px;
    }

    .live-games-grid::-webkit-scrollbar-thumb {
        background: var(--clr-brand-lt);
        border-radius: 2px;
    }

    .game-card {
        min-width: 240px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }
}

/* ── DEMO GAME ───────────────────────────────────────────────────── */
.demo-wrap {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
}

.demo-wrap__iframe {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.demo-wrap__iframe iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.demo-wrap__footer {
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    border-top: 1px solid var(--clr-border);
}

.demo-wrap__text {
    font-size: .9rem;
    color: var(--clr-text-muted);
}

/* ── REVIEW CONTENT ──────────────────────────────────────────────── */
.review-content {
    background: var(--clr-white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    max-width: 860px;
    margin: 0 auto;
}

.review-content h2 {
    color: var(--clr-brand);
    border-bottom: 2px solid var(--clr-bg-alt);
    padding-bottom: .5rem;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
}

.review-content h3 {
    color: var(--clr-brand-dk);
    margin-top: 1.25rem;
    margin-bottom: .6rem;
}

.review-content h4 {
    color: var(--clr-text);
    margin-top: 1rem;
    margin-bottom: .4rem;
}

.review-content p {
    color: var(--clr-text);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.review-content ul, .review-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.review-content li {
    line-height: 1.6;
    color: var(--clr-text);
}

.review-content a {
    color: var(--clr-btn-secondary);
    text-decoration: underline;
}

.review-content a:hover {
    color: var(--clr-btn-secondary-hv);
}

.review-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.25rem 0;
    font-size: .92rem;
    overflow-x: auto;
    display: block;
}

.review-content table th, .review-content table td {
    text-align: left;
    padding: .65rem .9rem;
    border: 1px solid var(--clr-border);
}

.review-content table th {
    background: var(--clr-brand);
    color: var(--clr-white);
}

.review-content table tr:nth-child(even) td {
    background: var(--clr-bg);
}

.review-content blockquote {
    border-left: 4px solid var(--clr-brand-lt);
    padding: .75rem 1.25rem;
    background: var(--clr-bg);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1.25rem 0;
    color: var(--clr-text-muted);
    font-style: italic;
}

.review-content img {
    max-width: 100%;
    border-radius: var(--radius-sm);
    margin: 1rem 0;
}

/* ── RESPONSIBLE GAMING ──────────────────────────────────────────── */
.rg-block {
    background: linear-gradient(135deg, #1e1240 0%, #3a1f70 100%);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    color: var(--clr-white);
}

.rg-block__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.rg-block__icon {
    font-size: 2.5rem;
}

.rg-block__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--clr-white);
}

.rg-block__desc {
    color: rgba(255, 255, 255, .8);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    font-size: .95rem;
}

.rg-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: .75rem;
}

.rg-link {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius-md);
    padding: .85rem 1rem;
    display: flex;
    align-items: center;
    gap: .65rem;
    color: var(--clr-white);
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
}

.rg-link:hover {
    background: rgba(255, 255, 255, .2);
    transform: translateY(-2px);
    color: var(--clr-white);
}

.rg-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.rg-notice {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, .08);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--clr-btn-secondary);
    font-size: .85rem;
    color: rgba(255, 255, 255, .75);
    line-height: 1.6;
}

/* ── FAQ ─────────────────────────────────────────────────────────── */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.faq-item {
    background: var(--clr-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    transition: box-shadow var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item__q {
    width: 100%;
    background: none;
    border: none;
    padding: 1.1rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1rem;
    color: var(--clr-text);
    cursor: pointer;
    text-align: left;
    transition: background var(--transition);
}

.faq-item__q:hover {
    background: var(--clr-bg);
}

.faq-item.is-open .faq-item__q {
    background: var(--clr-bg);
    color: var(--clr-brand);
}

.faq-item__chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--clr-brand);
}

.faq-item.is-open .faq-item__chevron {
    transform: rotate(180deg);
}

.faq-item__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding var(--transition);
}

.faq-item.is-open .faq-item__a {
    max-height: 500px;
}

.faq-item__a-inner {
    padding: 0 1.4rem 1.2rem;
    font-size: .95rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
}

/* ── AUTHOR ──────────────────────────────────────────────────────── */
.author-card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 180px 1fr;
}

.author-card__aside {
    background: linear-gradient(160deg, var(--clr-brand) 0%, var(--clr-brand-dk) 100%);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.author-card__photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, .3);
}

.author-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-white);
}

.author-card__role {
    font-size: .8rem;
    color: rgba(255, 255, 255, .72);
}

.author-card__socials {
    display: flex;
    gap: .5rem;
    margin-top: .5rem;
}

.author-card__social {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    transition: background var(--transition);
    text-decoration: none;
}

.author-card__social:hover {
    background: rgba(255, 255, 255, .3);
    color: var(--clr-white);
}

.author-card__social svg {
    width: 14px;
    height: 14px;
}

.author-card__main {
    padding: 2rem 2.5rem;
}

.author-card__bio {
    font-size: .95rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.author-card__meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: .82rem;
    color: var(--clr-text-muted);
}

.author-card__meta-item {
    display: flex;
    align-items: center;
    gap: .3rem;
}

.author-card__meta-item svg {
    width: 14px;
    height: 14px;
    color: var(--clr-brand);
}

@media (max-width: 640px) {
    .author-card {
        grid-template-columns: 1fr;
    }

    .author-card__aside {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        padding: 1.5rem;
    }

    .author-card__main {
        padding: 1.5rem;
    }
}

/* ── FOOTER ──────────────────────────────────────────────────────── */
.site-footer {
    background: var(--clr-brand-dk);
    color: rgba(255, 255, 255, .8);
    padding: 3rem 0 1.5rem;
}

.footer__top {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    margin-bottom: 2rem;
}

.footer__logo {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.footer__logo img {
    height: 42px;
    width: auto;
}

.footer__logo-text {
    font-size: .8rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.5;
}

.footer__flag {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    color: rgba(255, 255, 255, .6);
    margin-top: .3rem;
}

.footer__flag-img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
}

.footer__links h4, .footer__contact h4 {
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--clr-white);
    margin-bottom: .85rem;
}

.footer__links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.footer__links ul li a {
    font-size: .88rem;
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    transition: color var(--transition);
}

.footer__links ul li a:hover {
    color: var(--clr-white);
}

.footer__socials {
    display: flex;
    gap: .5rem;
    margin-top: .5rem;
}

.footer__social {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, .12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    text-decoration: none;
    transition: background var(--transition);
}

.footer__social:hover {
    background: rgba(255, 255, 255, .25);
}

.footer__social svg {
    width: 15px;
    height: 15px;
}

.footer__contact a {
    color: rgba(255, 255, 255, .65);
    transition: color var(--transition);
}

.footer__contact a:hover {
    color: var(--clr-white);
}

.footer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    margin-bottom: 1.5rem;
}

.footer__badge-group {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.footer__badge-label {
    font-size: .72rem;
    color: rgba(255, 255, 255, .45);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.footer__badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    align-items: center;
}

.badge-pill {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius-sm);
    padding: .3rem .65rem;
    font-size: .78rem;
    color: rgba(255, 255, 255, .75);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
}

.footer__bottom {
    text-align: center;
    font-size: .8rem;
    color: rgba(255, 255, 255, .45);
    line-height: 1.6;
}

.footer__bottom p + p {
    margin-top: .3rem;
}

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

    .footer__logo {
        grid-column: 1 / -1;
    }
}

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

/* ── STICKY WIDGET ───────────────────────────────────────────────── */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, var(--clr-brand-dk) 0%, var(--clr-brand) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: .75rem 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .25);
}

.sticky-widget__text {
    font-size: .9rem;
    color: var(--clr-white);
    font-weight: 600;
}

.sticky-widget__bonus {
    color: var(--clr-btn-primary);
}

.sticky-widget__close {
    position: absolute;
    right: .75rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .15);
    border: none;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--clr-white);
    transition: background var(--transition);
    font-size: .9rem;
}

.sticky-widget__close:hover {
    background: rgba(255, 255, 255, .3);
}

.info-content {
    background: var(--clr-white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    max-width: 860px;
    margin: 2.5rem auto;
}

.info-content h1 {
    color: var(--clr-brand);
    margin-bottom: 1.5rem;
}

.info-content h2 {
    color: var(--clr-brand-dk);
    border-bottom: 2px solid var(--clr-bg-alt);
    padding-bottom: .4rem;
    margin-top: 1.5rem;
    margin-bottom: .75rem;
}

.info-content p {
    line-height: 1.7;
    color: var(--clr-text);
    margin-bottom: 1rem;
}

.info-content ul, .info-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.info-content li {
    line-height: 1.6;
    margin-bottom: .3rem;
}

.info-content a {
    color: var(--clr-btn-secondary);
    text-decoration: underline;
}

.breadcrumb {
    padding: .75rem 0;
    font-size: .82rem;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    gap: .4rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--clr-btn-secondary);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb__sep {
    color: var(--clr-border);
}

.stars {
    display: inline-flex;
    gap: 2px;
}

.star {
    color: #f5b800;
    font-size: 1.1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.anim-fadeup {
    animation: fadeInUp .55s ease both;
}

.anim-fadeup--d1 {
    animation-delay: .1s;
}

.anim-fadeup--d2 {
    animation-delay: .2s;
}

.anim-fadeup--d3 {
    animation-delay: .3s;
}

.wp-block-group {
    display: block;
}

.wp-block-paragraph {
    display: block;
}

.has-text-align-center {
    text-align: center;
}

.aligncenter {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.elementor-widget-wrap {
    display: contents;
}

.elementor-section {
    display: contents;
}

.entry-content {
    display: contents;
}

.yoast-breadcrumb {
    display: none;
}

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

.x9a2b4 {
    display: none;
}

.k7f3d9e {
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.z2m8p1q {
    pointer-events: none;
    opacity: 0;
    position: absolute;
}

.j5r6v0n {
    display: none !important;
}

@media (max-width: 900px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
    }

    body {
        font-size: 15px;
    }

    .wrapper,
    main,
    .section,
    .container {
        min-width: 0;
        max-width: 100%;
    }

    .container {
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .site-header {
        width: 100%;
    }

    .site-header__inner {
        position: relative;
        display: grid;
        grid-template-columns: auto 1fr auto;
        width: 100%;
        min-height: 64px;
        padding: 10px 16px;
        gap: 10px;
    }

    .site-header__logo {
        min-width: 0;
    }

    .site-header__logo img {
        width: auto;
        height: 40px;
        max-width: 150px;
        object-fit: contain;
    }

    .site-header__nav {
        display: none;
    }

    .site-header__actions {
        justify-self: end;
        gap: 8px;
    }

    .site-header__actions .online-badge {
        display: none;
    }


    .burger {
        display: flex;
        justify-self: end;
        width: 42px;
        height: 42px;
        align-items: center;
    }

    .mobile-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1100;
        width: 100%;
        max-height: calc(100vh - 64px);
        padding: 12px 16px 18px;
        overflow-y: auto;
        background: var(--clr-brand-dk);
        box-shadow: 0 12px 30px rgba(0, 0, 0, .3);
    }

    .mobile-nav.is-open {
        display: block;
    }

    .mobile-nav .nav-list {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 4px;
    }

    .mobile-nav .nav-list__item {
        width: 100%;
    }

    .mobile-nav .nav-list__item a {
        width: 100%;
        min-height: 46px;
        padding: 11px 12px;
        font-size: 16px;
    }

    .hero {
        min-height: auto;
        background-position: center;
    }

    .hero::before {
        background: linear-gradient(
                180deg,
                rgba(90, 53, 128, .95) 0%,
                rgba(30, 10, 60, .88) 100%
        );
    }

    .hero__inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
        width: 100%;
        padding: 48px 16px 40px;
    }

    .hero__content {
        width: 100%;
        max-width: none;
        text-align: center;
    }

    .hero__label {
        max-width: 100%;
        white-space: normal;
    }

    .hero__title {
        max-width: 100%;
        margin-bottom: 14px;
        font-size: clamp(30px, 8vw, 42px);
        line-height: 1.12;
        overflow-wrap: anywhere;
    }

    .hero__desc {
        max-width: 650px;
        margin: 0 auto 22px;
        font-size: 16px;
        line-height: 1.55;
    }

    .hero__actions {
        display: flex;
        justify-content: center;
        width: 100%;
        gap: 10px;
    }

    .hero__actions .btn {
        min-height: 48px;
    }

    .bonus-tile {
        width: 100%;
        min-width: 0;
        max-width: 520px;
        margin: 0 auto;
        padding: 24px 20px;
    }

    .breadcrumb {
        overflow-wrap: anywhere;
    }

    .section {
        padding: 48px 0;
    }

    .section__head {
        max-width: 100%;
        margin-bottom: 28px;
    }

    .section__head h2 {
        font-size: clamp(25px, 6vw, 34px);
        line-height: 1.2;
        overflow-wrap: anywhere;
    }

    .section__head p {
        max-width: 100%;
        margin-top: 10px;
        font-size: 15px;
        line-height: 1.6;
    }

    .pros-cons {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }

    .pros-cons__col {
        width: 100%;
        min-width: 0;
        padding: 22px 18px;
    }

    .pros-cons__list li {
        font-size: 15px;
        overflow-wrap: anywhere;
    }

    .video-wrap,
    .demo-wrap,
    .review-content,
    .faq-list,
    .author-card {
        width: 100%;
        max-width: 100%;
    }

    .video-wrap,
    .demo-wrap {
        border-radius: 14px;
    }

    .video-wrap__iframe,
    .demo-wrap__iframe {
        width: 100%;
        height: auto;
        padding-bottom: 56.25%;
    }

    .video-wrap__iframe iframe,
    .demo-wrap__iframe iframe {
        width: 100%;
        height: 100%;
    }

    .live-games-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .game-card {
        width: 100%;
        min-width: 0;
    }

    .game-card__img {
        min-height: 110px;
    }

    .game-card__body {
        padding: 14px;
    }

    .game-card__body .btn {
        width: 100%;
    }

    .demo-wrap__footer {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        gap: 14px;
    }

    .demo-wrap__text {
        width: 100%;
        font-size: 14px;
        line-height: 1.55;
        text-align: center;
    }

    .demo-wrap__footer .btn {
        width: 100%;
        min-height: 46px;
    }

    .review-content {
        padding: 24px 20px;
        border-radius: 14px;
        overflow: hidden;
    }

    .review-content h2 {
        font-size: 25px;
        overflow-wrap: anywhere;
    }

    .review-content h3 {
        font-size: 21px;
        overflow-wrap: anywhere;
    }

    .review-content h4 {
        font-size: 18px;
        overflow-wrap: anywhere;
    }

    .review-content p,
    .review-content li {
        font-size: 15px;
        line-height: 1.65;
        overflow-wrap: anywhere;
    }

    .review-content ul,
    .review-content ol {
        padding-left: 20px;
    }

    .review-content table {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .review-content table th,
    .review-content table td {
        padding: 10px 12px;
        font-size: 14px;
    }

    .review-content iframe,
    .review-content video {
        width: 100%;
        max-width: 100%;
    }

    .rg-block {
        width: 100%;
        padding: 26px 20px;
        border-radius: 16px;
    }

    .rg-block__header {
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 18px;
    }

    .rg-block__icon {
        flex: 0 0 auto;
    }

    .rg-block__title {
        font-size: 24px;
        overflow-wrap: anywhere;
    }

    .rg-block__desc {
        font-size: 15px;
    }

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

    .rg-link {
        min-width: 0;
        padding: 12px;
        overflow-wrap: anywhere;
    }

    .rg-notice {
        padding: 15px;
        overflow-wrap: anywhere;
    }

    .faq-item__q {
        min-height: 56px;
        padding: 16px 18px;
        font-size: 16px;
        line-height: 1.4;
    }

    .faq-item__q span {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .faq-item__a-inner {
        padding: 0 18px 18px;
        font-size: 15px;
    }

    .author-card {
        grid-template-columns: 180px minmax(0, 1fr);
    }

    .author-card__main {
        min-width: 0;
        padding: 26px;
    }

    .author-card__bio {
        overflow-wrap: anywhere;
    }

    .footer__top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 20px;
    }

    .footer__logo {
        grid-column: 1 / -1;
    }

    .footer__badges,
    .footer__badge-row {
        align-items: flex-start;
    }

    .sticky-widget {
        width: 100%;
        padding: 10px 48px 10px 14px;
        gap: 10px;
    }

    .sticky-widget__text {
        min-width: 0;
        font-size: 14px;
        line-height: 1.3;
    }

    .sticky-widget .btn {
        flex-shrink: 0;
    }

    .info-content {
        width: calc(100% - 32px);
        max-width: none;
        margin: 28px 16px;
        padding: 24px 20px;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 15px;
    }

    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .site-header__inner {
        min-height: 60px;
        padding: 9px 14px;
    }

    .site-header__logo img {
        height: 36px;
        max-width: 130px;
    }

    .hero__inner {
        padding: 38px 14px 34px;
        gap: 20px;
    }

    .hero__title {
        font-size: clamp(28px, 9vw, 36px);
    }

    .hero__desc {
        font-size: 15px;
    }

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

    .hero__actions .btn {
        width: 100%;
        min-height: 48px;
        padding: 12px 16px;
        white-space: normal;
    }

    .bonus-tile {
        padding: 22px 16px;
    }

    .bonus-tile__amount {
        font-size: 38px;
    }

    .section {
        padding: 40px 0;
    }

    .section__head {
        margin-bottom: 24px;
        text-align: left;
    }

    .section__head h2 {
        font-size: clamp(24px, 7vw, 31px);
    }

    .section__head p {
        margin-left: 0;
        margin-right: 0;
    }

    .section__divider {
        margin-left: 0;
        margin-right: 0;
    }

    .pros-cons__col {
        padding: 20px 16px;
    }

    .live-games-grid {
        display: flex;
        width: 100%;
        gap: 14px;
        padding: 0 0 10px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        overscroll-behavior-inline: contain;
        -webkit-overflow-scrolling: touch;
    }

    .game-card {
        flex: 0 0 82%;
        width: 82%;
        min-width: 82%;
        scroll-snap-align: start;
    }

    .game-card__img {
        min-height: 130px;
    }

    .demo-wrap__iframe {
        padding-bottom: 65%;
    }

    .review-content {
        padding: 20px 16px;
    }

    .review-content blockquote {
        padding: 12px 14px;
        margin: 18px 0;
    }

    .rg-block {
        padding: 22px 16px;
    }

    .rg-block__header {
        flex-direction: column;
    }

    .rg-block__title {
        font-size: 23px;
    }

    .rg-links {
        grid-template-columns: minmax(0, 1fr);
    }

    .rg-link {
        width: 100%;
    }

    .author-card {
        grid-template-columns: minmax(0, 1fr);
    }

    .author-card__aside {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 24px 18px;
        text-align: center;
    }

    .author-card__main {
        padding: 22px 18px;
    }

    .author-card__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

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

    .footer__logo {
        grid-column: auto;
    }

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

    .footer__badge-group,
    .footer__badge-row {
        width: 100%;
    }

    .sticky-widget {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        padding: 9px 42px 9px 12px;
    }

    .sticky-widget__text {
        font-size: 13px;
    }

    .sticky-widget .btn {
        padding: 8px 12px;
        font-size: 13px;
    }
}

@media (max-width: 420px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .site-header__inner {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero__inner {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero__title {
        font-size: 29px;
    }

    .hero__label {
        font-size: 11px;
    }

    .hero__desc {
        font-size: 14px;
    }

    .section {
        padding: 34px 0;
    }

    .section__head h2 {
        font-size: 25px;
    }

    .game-card {
        flex-basis: 88%;
        width: 88%;
        min-width: 88%;
    }

    .demo-wrap__iframe {
        padding-bottom: 75%;
    }

    .demo-wrap__footer {
        padding: 15px;
    }

    .review-content {
        padding: 18px 14px;
    }

    .review-content h2 {
        font-size: 23px;
    }

    .review-content h3 {
        font-size: 20px;
    }

    .faq-item__q {
        padding: 15px;
        font-size: 15px;
    }

    .faq-item__a-inner {
        padding: 0 15px 16px;
        font-size: 14px;
    }

    .rg-block {
        padding: 20px 14px;
    }

    .rg-block__title {
        font-size: 21px;
    }

    .author-card__photo {
        width: 88px;
        height: 88px;
    }

    .sticky-widget {
        grid-template-columns: minmax(0, 1fr);
        padding: 10px 42px 10px 12px;
    }

    .sticky-widget .btn {
        width: 100%;
    }

    .info-content {
        width: calc(100% - 24px);
        margin: 22px 12px;
        padding: 20px 15px;
    }
}

.site-header {
    position: sticky;
}

@media (max-width: 900px) {
    .site-header__inner {
        position: relative;
    }

    .mobile-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
        padding: 12px 16px 18px;
        background: var(--clr-brand-dk);
        box-shadow: 0 12px 30px rgba(0, 0, 0, .3);
        z-index: 1100;
    }

    .mobile-nav.is-open {
        display: block;
    }

    .mobile-nav .nav-list {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 4px;
    }

    .mobile-nav .nav-list__item,
    .mobile-nav .nav-list__item a {
        width: 100%;
    }

    .mobile-nav .nav-list__item a {
        min-height: 46px;
        padding: 11px 12px;
        color: #fff;
        font-size: 16px;
    }
}

.kgde {
    width: 100%;
    max-width: 860px;
    margin: 32px auto;
    padding: 28px 30px;
    background: #ffffff;
    border: 2px solid var(--clr-brand-lt);
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(115, 73, 158, .16);
    color: var(--clr-text);
    overflow: hidden;
}

.kgde h2,
.kgde h3,
.kgde h4 {
    color: var(--clr-brand-dk);
    overflow-wrap: anywhere;
}

.kgde h2 {
    margin: 0 0 18px;
    padding-bottom: 12px;
    font-size: 30px;
    line-height: 1.2;
    border-bottom: 2px solid var(--clr-bg-alt);
}

.kgde h3 {
    margin: 24px 0 12px;
    font-size: 23px;
    line-height: 1.3;
}

.kgde h4 {
    margin: 20px 0 10px;
    font-size: 19px;
}

.kgde p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

.kgde ul,
.kgde ol {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 0 18px;
    padding-left: 24px;
}

.kgde li {
    line-height: 1.6;
    overflow-wrap: anywhere;
}

.kgde a {
    color: var(--clr-btn-secondary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.kgde img,
.kgde video,
.kgde iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 12px;
}

.kgde iframe {
    min-height: 480px;
    border: 0;
}

.kgde table {
    display: table;
    width: 100%;
    margin: 22px 0;
    border-collapse: collapse;
    border: 1px solid var(--clr-border);
    border-radius: 10px;
    overflow: hidden;
}

.kgde th,
.kgde td {
    padding: 12px 14px;
    border: 1px solid var(--clr-border);
    text-align: left;
    vertical-align: top;
}

.kgde th {
    background: var(--clr-brand);
    color: #ffffff;
}

.kgde tr:nth-child(even) td {
    background: var(--clr-bg);
}

.kgde blockquote {
    margin: 20px 0;
    padding: 16px 18px;
    background: var(--clr-bg);
    border-left: 4px solid var(--clr-btn-secondary);
    border-radius: 0 10px 10px 0;
}

@media (max-width: 900px) {
    .kgde {
        max-width: calc(100% - 32px);
        margin: 26px 16px;
        padding: 24px 22px;
        border-radius: 16px;
    }

    .kgde h2 {
        font-size: 27px;
    }

    .kgde h3 {
        font-size: 22px;
    }

    .kgde iframe {
        min-height: 400px;
    }
}

@media (max-width: 640px) {
    .kgde {
        max-width: calc(100% - 28px);
        margin: 22px 14px;
        padding: 20px 16px;
        border-width: 1px;
        border-radius: 14px;
    }

    .kgde h2 {
        margin-bottom: 15px;
        padding-bottom: 10px;
        font-size: 24px;
    }

    .kgde h3 {
        margin-top: 20px;
        font-size: 20px;
    }

    .kgde h4 {
        font-size: 18px;
    }

    .kgde p,
    .kgde li {
        font-size: 15px;
        line-height: 1.65;
    }

    .kgde ul,
    .kgde ol {
        padding-left: 20px;
    }

    .kgde table {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .kgde th,
    .kgde td {
        padding: 10px 12px;
        font-size: 14px;
    }

    .kgde iframe {
        min-height: 300px;
    }
}

@media (max-width: 420px) {
    .kgde {
        max-width: calc(100% - 20px);
        margin: 18px 10px;
        padding: 18px 14px;
        border-radius: 12px;
    }

    .kgde h2 {
        font-size: 22px;
    }

    .kgde h3 {
        font-size: 19px;
    }

    .kgde iframe {
        min-height: 240px;
    }

    .kgde blockquote {
        padding: 13px 14px;
    }
}

.mobile-nav {
    display: none;
}

@media (max-width: 900px) {
    .site-header__nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .mobile-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
        padding: 12px 16px 18px;
        background: var(--clr-brand-dk);
        box-shadow: 0 12px 30px rgba(0, 0, 0, .3);
        z-index: 1100;
    }

    .mobile-nav.is-open {
        display: block;
    }

    .mobile-nav .nav-list {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 4px;
    }

    .mobile-nav .nav-list__item,
    .mobile-nav .nav-list__item a {
        width: 100%;
    }

    .mobile-nav .nav-list__item a {
        min-height: 46px;
        padding: 11px 12px;
        color: #fff;
        font-size: 16px;
    }
}

@media (min-width: 901px) {
    .mobile-nav,
    .mobile-nav.is-open {
        display: none !important;
    }

    .burger {
        display: none !important;
    }

    .site-header__nav {
        display: flex;
    }
}

.kgde {
    width: 100%;
    max-width: 860px;
    margin: 30px auto;
    padding: 28px 30px;
    background: #ffffff;
    border: 3px solid #73499e;
    border-radius: 18px;
    box-shadow: 0 0 0 5px rgba(115, 73, 158, .12),
    0 10px 30px rgba(90, 53, 128, .18);
    overflow: hidden;
}

@media (max-width: 900px) {
    .kgde {
        width: calc(100% - 32px);
        max-width: none;
        margin: 24px 16px;
        padding: 24px 20px;
        border-width: 2px;
        border-radius: 16px;
    }
}

@media (max-width: 640px) {
    .kgde {
        width: calc(100% - 28px);
        margin: 20px 14px;
        padding: 20px 16px;
        border-width: 2px;
        border-radius: 14px;
        box-shadow: 0 0 0 3px rgba(115, 73, 158, .1),
        0 6px 20px rgba(90, 53, 128, .15);
    }
}

@media (max-width: 420px) {
    .kgde {
        width: calc(100% - 20px);
        margin: 16px 10px;
        padding: 18px 14px;
        border-radius: 12px;
    }
}