@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(/assets/fonts/nunito/Nunito-Regular.woff2) format('woff2');
}
@font-face {
    font-family: 'Nunito';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url(/assets/fonts/nunito/Nunito-Italic.woff2) format('woff2');
}
@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(/assets/fonts/nunito/Nunito-SemiBold.woff2) format('woff2');
}
@font-face {
    font-family: 'Nunito';
    font-style: italic;
    font-weight: 600;
    font-display: swap;
    src: url(/assets/fonts/nunito/Nunito-SemiBoldItalic.woff2) format('woff2');
}
@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(/assets/fonts/nunito/Nunito-Bold.woff2) format('woff2');
}
@font-face {
    font-family: 'Nunito';
    font-style: italic;
    font-weight: 700;
    font-display: swap;
    src: url(/assets/fonts/nunito/Nunito-BoldItalic.woff2) format('woff2');
}
@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url(/assets/fonts/nunito/Nunito-Bold.woff2) format('woff2');
}
:root {
    --bg-primary: #0a0c10;
    --bg-secondary: #11151c;
    --bg-card: #161b24;
    --bg-card-hover: #1d2430;
    --accent-gold: #c9a66a;
    --accent-gold-light: #e4c995;
    --accent-gold-dark: #9e7a45;
    --accent-burgundy: #3d5a80;
    --accent-burgundy-light: #5c7cfa;
    --text-primary: #e8ecf4;
    --text-secondary: #9aa4b2;
    --text-muted: #6b7585;
    --border-subtle: rgba(201, 166, 106, 0.14);
    --border-medium: rgba(201, 166, 106, 0.32);
    --shadow-gold: rgba(201, 166, 106, 0.16);
    --shadow-elevated: 0 20px 50px rgba(0, 0, 0, 0.35);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 30px;
    --radius-pill: 999px;
    --container-max: 1120px;
    --font-display: 'Nunito', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-body: 'Nunito', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

.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;
}

.main-bg {
    min-height: 100vh;
    background:
            radial-gradient(ellipse 90% 60% at 0% -20%, rgba(61, 90, 128, 0.22) 0%, transparent 55%),
            radial-gradient(ellipse 70% 50% at 100% 10%, rgba(201, 166, 106, 0.09) 0%, transparent 50%),
            radial-gradient(ellipse 55% 40% at 50% 110%, rgba(92, 124, 250, 0.06) 0%, transparent 45%),
            var(--bg-primary);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 28px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(180deg, rgba(10, 12, 16, 0.96) 0%, rgba(10, 12, 16, 0.88) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    padding: 14px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: opacity 0.3s;
}

.logo-wrap:hover {
    opacity: 0.85;
}

.logo-wrap img {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    filter: drop-shadow(0 4px 14px rgba(201, 166, 106, 0.25));
}

.logo-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.logo-wrap .logo-text {
    background: linear-gradient(110deg, var(--text-primary) 0%, var(--accent-gold) 55%, var(--accent-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.main-nav a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 10px 16px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid transparent;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    position: relative;
}

.main-nav a:hover {
    color: var(--accent-gold-light);
    background: rgba(201, 166, 106, 0.08);
    border-color: var(--border-subtle);
}

.menu-btn {
    display: none;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 11px;
    color: var(--text-primary);
    cursor: pointer;
    transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.menu-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

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

    .menu-btn {
        display: block;
    }
}

.hero {
    padding: 64px 0 56px;
    text-align: center;
    position: relative;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 28px;
}

.hero-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0.5;
}

.hero-icon {
    color: var(--accent-gold);
    font-size: 22px;
}

.hero-tag {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.45em;
    color: var(--accent-gold);
    margin-bottom: 18px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.12;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
}

.hero h1 .highlight {
    display: block;
    background: linear-gradient(105deg, var(--accent-gold-light) 0%, var(--accent-gold) 40%, var(--accent-burgundy-light) 95%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 5s ease-in-out infinite;
    background-size: 200% auto;
}

@keyframes goldShimmer {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 200% center;
    }
}

.hero-sub {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(22, 27, 36, 0.85);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-pill);
    padding: 11px 22px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.hero-badge svg {
    width: 18px;
    height: 18px;
    color: var(--accent-gold);
}

@media (max-width: 768px) {
    .hero {
        padding: 45px 0 35px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero-sub {
        font-size: 17px;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.section-header p a {
    color: var(--accent-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.section-header p a:hover {
    color: var(--accent-gold-light);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.section-divider .line {
    width: 48px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0.85;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 28px;
    }

    .section-header {
        margin-bottom: 32px;
    }
}

.casinos-section {
    padding-bottom: 72px;
}

.casino-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 920px;
    margin: 0 auto;
}

.casino-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 30px 34px;
    display: grid;
    grid-template-columns: 168px 1fr auto;
    align-items: center;
    gap: 32px;
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.casino-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    bottom: 20px;
    width: 4px;
    border-radius: 0 6px 6px 0;
    background: linear-gradient(180deg, var(--accent-burgundy-light), var(--accent-gold), var(--accent-gold-dark));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.casino-card:hover {
    border-color: var(--border-medium);
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated), 0 0 0 1px rgba(201, 166, 106, 0.08);
}

.casino-card:hover::before {
    opacity: 1;
}

.casino-logo-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.casino-logo-area img {
    width: 140px;
    height: 60px;
    object-fit: contain;
}

.casino-rating {
    background: rgba(17, 21, 28, 0.9);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    text-align: center;
}

.casino-rating-label {
    display: block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.casino-rating .score {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    color: var(--accent-gold-light);
    line-height: 1;
}

.casino-rating .score-max {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    margin-left: 2px;
}

.casino-rating .stars {
    display: flex;
    gap: 3px;
    justify-content: center;
    margin-top: 4px;
}

.casino-rating .stars svg {
    width: 14px;
    height: 14px;
    fill: var(--accent-gold);
    color: var(--accent-gold);
}

.casino-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.casino-offer {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.35;
}

.casino-review-link {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}

.casino-review-link a {
    color: var(--accent-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.casino-review-link a:hover {
    color: var(--accent-gold-light);
}

.casino-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.casino-tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(10, 12, 16, 0.65);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-pill);
    padding: 6px 14px;
    white-space: nowrap;
}

.casino-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.btn-visit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(145deg, var(--accent-gold-dark) 0%, var(--accent-gold) 45%, var(--accent-gold-light) 100%);
    color: var(--bg-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 15px 28px;
    border-radius: var(--radius-md);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    white-space: nowrap;
    box-shadow: 0 6px 24px var(--shadow-gold);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-visit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(201, 166, 106, 0.28);
    filter: brightness(1.06);
}

.btn-visit svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .casino-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 24px 20px;
        gap: 18px;
    }

    .casino-logo-area {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }

    .casino-info {
        align-items: center;
    }

    .casino-offer {
        font-size: 17px;
    }

    .casino-tags {
        justify-content: center;
    }
}

.notice-bar {
    max-width: 920px;
    margin: 36px auto 0;
    background: rgba(17, 21, 28, 0.65);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 18px 26px;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}

.notice-bar strong {
    color: var(--accent-gold);
}

.age-warning-banner {
    background: linear-gradient(90deg, rgba(201, 166, 106, 0.12) 0%, rgba(61, 90, 128, 0.2) 50%, rgba(201, 166, 106, 0.1) 100%);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 18px 0;
}

.age-warning-inner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.age-badge {
    flex-shrink: 0;
    min-width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, var(--accent-gold-dark), var(--accent-gold));
    color: var(--bg-primary);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px var(--shadow-gold);
}

.age-warning-inner p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

.age-warning-inner strong {
    color: var(--text-primary);
}

@media (max-width: 600px) {
    .age-warning-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.comparison-section {
    padding: 68px 0 76px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 45%, var(--bg-primary) 100%);
    border-top: 1px solid var(--border-subtle);
}

.bonus-compare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.bonus-compare-card {
    background: linear-gradient(165deg, var(--bg-card) 0%, rgba(17, 21, 28, 0.92) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 28px 26px 26px;
    box-shadow: var(--shadow-elevated);
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.bonus-compare-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 3px;
    border-radius: 0 6px 6px 0;
    background: linear-gradient(180deg, var(--accent-burgundy-light), var(--accent-gold));
    opacity: 0.35;
}

.bonus-compare-card:hover {
    border-color: var(--border-medium);
    transform: translateY(-3px);
}

.bonus-compare-card__head {
    text-align: center;
    padding-bottom: 22px;
    margin-bottom: 4px;
    border-bottom: 1px solid var(--border-subtle);
}

.bonus-compare-card__logo {
    max-width: 160px;
    max-height: 52px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0 auto 16px;
}

.bonus-compare-card__score {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.bonus-compare-dl {
    margin: 0;
}

.bonus-compare-row {
    padding: 16px 0;
    border-top: 1px solid rgba(201, 166, 106, 0.1);
}

.bonus-compare-row:first-of-type {
    border-top: none;
    padding-top: 12px;
}

.bonus-compare-row dt {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.bonus-compare-row dd {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.compare-score {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--accent-gold-light);
}

.compare-score-max {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    margin-left: 2px;
}

.reviews-section--editorial {
    background: linear-gradient(180deg, transparent 0%, rgba(17, 21, 28, 0.35) 50%, transparent 100%);
}

.brief-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}

.brief-review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.brief-review-card:hover {
    border-color: var(--border-medium);
    box-shadow: var(--shadow-elevated);
}

.brief-review-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border-subtle);
}

.brief-review-logo {
    width: 140px;
    height: 56px;
    object-fit: contain;
}

.brief-review-score {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
}

.brief-review-score strong {
    color: var(--accent-gold-light);
}

.brief-review-summary {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 18px;
}

.brief-review-points {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.brief-review-points li {
    position: relative;
    padding-left: 22px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.55;
}

.brief-review-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-burgundy-light);
    opacity: 0.85;
}

.brief-review-more {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}

.brief-review-more a {
    color: var(--accent-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.brief-review-more a:hover {
    color: var(--accent-gold-light);
}

.responsible-section {
    padding: 72px 0;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-secondary);
}

.responsible-section .responsible-block {
    max-width: 920px;
    margin: 0 auto;
}

.responsible-foot {
    margin: 22px 0 0 !important;
    font-size: 14px !important;
    color: var(--text-muted) !important;
}

.responsible-foot a {
    color: var(--accent-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.responsible-foot a:hover {
    color: var(--accent-gold-light);
}

.faq-section {
    padding: 72px 0 88px;
    border-top: 1px solid var(--border-subtle);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.faq-item:hover {
    border-color: var(--border-medium);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 52px 20px 24px;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
}

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

.faq-item summary::after {
    content: '';
    position: absolute;
    right: 22px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
    transform: translateY(-65%) rotate(45deg);
    transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
    transform: translateY(-30%) rotate(225deg);
}

.faq-answer {
    padding: 0 24px 22px;
    border-top: 1px solid var(--border-subtle);
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    padding-top: 16px;
}

.faq-answer a {
    color: var(--accent-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-answer a:hover {
    color: var(--accent-gold-light);
}

.why-us-section {
    padding: 72px 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, rgba(10, 12, 16, 0.4) 100%);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 46px;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 34px 26px;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    border-color: var(--border-medium);
    transform: translateY(-5px);
    box-shadow: var(--shadow-elevated);
}

.why-card .icon {
    font-size: 42px;
    margin-bottom: 18px;
    display: block;
}

.why-card h4 {
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
}

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .why-us-section {
        padding: 50px 0;
    }
}

.responsible-block {
    background: linear-gradient(135deg, rgba(61, 90, 128, 0.18) 0%, var(--bg-card) 55%);
    border: 1px solid rgba(92, 124, 250, 0.22);
    border-radius: var(--radius-xl);
    padding: 38px 40px;
}

.responsible-block h4 {
    font-family: var(--font-display);
    font-size: 25px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.responsible-block p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 18px;
}

.responsible-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.responsible-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
    color: var(--text-secondary);
}

.responsible-list li .marker {
    color: var(--accent-gold);
    font-size: 14px;
    margin-top: 4px;
    flex-shrink: 0;
}

.responsible-list a {
    color: var(--accent-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.responsible-list a:hover {
    color: var(--accent-gold-light);
}

@media (max-width: 768px) {
    .responsible-block {
        padding: 26px 22px;
    }

    .responsible-block h4 {
        font-size: 21px;
    }
}

.reviews-section {
    padding: 70px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    max-width: 1000px;
    margin: 0 auto;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    border-color: var(--border-medium);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.review-card .quote-mark {
    font-family: var(--font-display);
    font-size: 56px;
    color: var(--accent-gold);
    opacity: 0.3;
    line-height: 1;
    position: absolute;
    top: 16px;
    left: 22px;
}

.review-card .review-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 22px;
    margin-top: 28px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--accent-burgundy), var(--accent-gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    flex-shrink: 0;
}

.review-author-info .name {
    font-weight: 700;
    font-size: 15px;
    color: var(--text-primary);
}

.review-author-info .role {
    font-size: 13px;
    color: var(--text-muted);
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 4px;
}

.review-stars svg {
    width: 15px;
    height: 15px;
    fill: var(--accent-gold);
    color: var(--accent-gold);
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .reviews-section {
        padding: 50px 0;
    }
}

.about-section {
    padding: 72px 0;
    background: linear-gradient(180deg, rgba(17, 21, 28, 0.5) 0%, var(--bg-secondary) 100%);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-text h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 18px;
}

.about-text p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.stat-box {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 26px 22px;
    text-align: center;
    transition: all 0.3s;
}

.stat-box:hover {
    border-color: var(--border-medium);
}

.stat-box .number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-box .label {
    font-size: 14px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-text h3 {
        font-size: 26px;
    }

    .about-section {
        padding: 50px 0;
    }
}

.site-footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-subtle);
    padding: 56px 0 40px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(520px, 80%);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0.35;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 42px;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
}

.footer-logo-link img {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    object-fit: contain;
}

.footer-logo-link span {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1.2;
}

.footer-logo-link:hover span {
    color: var(--accent-gold-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 36px;
    margin-bottom: 42px;
}

.footer-col h5 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: var(--accent-gold);
}

.footer-col p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-partners {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    margin-bottom: 36px;
}

.footer-partners-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.25em;
}

.footer-partners-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.partner-badge {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 12px 22px;
    display: flex;
    align-items: center;
    transition: border-color 0.3s;
}

.partner-badge:hover {
    border-color: var(--border-medium);
}

.partner-badge span {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.04em;
}

.partner-badge svg {
    width: 44px;
    height: 44px;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold-dark), transparent);
    opacity: 0.25;
    margin: 32px 0;
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    opacity: 0.7;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .footer-grid .footer-col:last-child {
        grid-column: 1 / -1;
    }

    .site-footer {
        padding: 40px 0 28px;
    }
}

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

/* Shared “legal hub” layout (responsible gambling, policies, etc.) */
.legal-hub {
    padding: 40px 0 88px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(17, 21, 28, 0.35) 40%, var(--bg-primary) 100%);
    border-top: 1px solid var(--border-subtle);
    scroll-margin-top: 96px;
}

.legal-hub__container {
    display: grid;
    grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
    max-width: calc(var(--container-max) + 32px);
}

.legal-hub__toc {
    position: sticky;
    top: 96px;
    padding: 22px 20px 24px;
    border-radius: var(--radius-lg);
    background: linear-gradient(165deg, rgba(22, 27, 36, 0.95) 0%, rgba(17, 21, 28, 0.88) 100%);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

.legal-hub__toc::before {
    content: '';
    display: block;
    height: 3px;
    margin: -22px -20px 18px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background: linear-gradient(90deg, var(--accent-burgundy-light), var(--accent-gold), var(--accent-burgundy));
    opacity: 0.65;
}

.legal-hub__toc-title {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-gold-light);
    margin: 0 0 14px;
}

.legal-hub__toc a {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 10px 12px;
    margin: 0 -12px;
    border-radius: var(--radius-sm);
    border-left: 3px solid transparent;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.legal-hub__toc a:hover {
    color: var(--accent-gold-light);
    background: rgba(201, 166, 106, 0.06);
    border-left-color: var(--accent-gold);
}

.legal-hub__article {
    min-width: 0;
    padding: 8px 0 32px;
}

.legal-hub__lead {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0 0 40px;
    padding: 22px 24px 24px 26px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    background: rgba(10, 12, 16, 0.45);
    border-left: 4px solid var(--accent-burgundy-light);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.legal-hub__updated {
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-muted);
    margin: -24px 0 36px;
    padding-left: 2px;
}

.legal-hub__section {
    margin-bottom: 42px;
    scroll-margin-top: 104px;
}

.legal-hub__section:last-child {
    margin-bottom: 0;
}

.legal-hub__h {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-display);
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 18px;
    letter-spacing: -0.02em;
}

.legal-hub__marker {
    flex-shrink: 0;
    width: 5px;
    height: 1.15em;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--accent-burgundy-light), var(--accent-gold), var(--accent-gold-dark));
    box-shadow: 0 0 14px rgba(92, 124, 250, 0.25);
}

.legal-hub__section p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-secondary);
    margin: 0 0 16px;
}

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

.legal-hub__list {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legal-hub__list li {
    position: relative;
    padding-left: 22px;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-secondary);
}

.legal-hub__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-gold);
    opacity: 0.75;
}

.legal-hub__list--spaced {
    gap: 16px;
}

.legal-hub__callout {
    margin-top: 22px;
    padding: 20px 22px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
}

.legal-hub__callout p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}

.legal-hub__callout--info {
    background: rgba(61, 90, 128, 0.14);
    border-color: rgba(92, 124, 250, 0.28);
}

.legal-hub__callout--warn {
    background: rgba(201, 166, 106, 0.08);
    border-color: rgba(201, 166, 106, 0.35);
}

.legal-hub__article a {
    color: var(--accent-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
}

.legal-hub__article a:hover {
    color: var(--accent-gold-light);
}

@media (max-width: 960px) {
    .legal-hub__container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .legal-hub__toc {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 4px 12px;
        padding: 18px 16px 20px;
    }

    .legal-hub__toc::before {
        margin: -18px -16px 14px;
        grid-column: 1 / -1;
    }

    .legal-hub__toc-title {
        grid-column: 1 / -1;
        margin-bottom: 8px;
    }

    .legal-hub__toc a {
        margin: 0;
        padding: 8px 10px;
        font-size: 12px;
        border-left: none;
        border-bottom: 2px solid transparent;
    }

    .legal-hub__toc a:hover {
        border-left: none;
        border-bottom-color: var(--accent-gold);
    }
}

@media (max-width: 768px) {
    .legal-hub {
        padding: 28px 0 64px;
    }

    .legal-hub__lead {
        font-size: 16px;
        padding: 18px 18px 20px 20px;
    }
}

.legal-page {
    padding: 46px 0 70px;
    max-width: 820px;
    margin: 0 auto;
}

.legal-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 44px 48px;
    box-shadow: var(--shadow-elevated);
}

.legal-card h1 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.legal-card .date {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 32px;
}

.legal-card section {
    margin-bottom: 28px;
}

.legal-card h2 {
    font-family: var(--font-display);
    font-size: 23px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 14px;
}

.legal-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 12px;
}

.legal-card ul {
    list-style: none;
    padding: 0;
    margin: 12px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legal-card ul li {
    font-size: 16px;
    color: var(--text-secondary);
    padding-left: 22px;
    position: relative;
    line-height: 1.65;
}

.legal-card ul li::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-gold);
    opacity: 0.85;
}

.legal-card a {
    color: var(--accent-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-card a:hover {
    color: var(--accent-gold-light);
}

.legal-contact-box {
    background: rgba(17, 21, 28, 0.72);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    margin-top: 14px;
}

.legal-contact-box p {
    margin-bottom: 4px;
}

.legal-contact-box .org-name {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-primary);
}

.hero--contact .hero-sub {
    max-width: 640px;
}

.hero--review {
    padding-bottom: 48px;
    text-align: left;
}

.hero--review .container {
    max-width: var(--container-max);
}

.hero--review h1 {
    text-align: left;
    margin-bottom: 14px;
}

.hero--review h1 .highlight {
    display: block;
}

.hero--review .hero-sub {
    margin-left: 0;
    margin-right: 0;
    max-width: 640px;
    text-align: left;
}

.review-hero-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 36px;
    align-items: center;
    max-width: 920px;
    margin: 0 auto;
}

.review-hero-logo {
    width: 200px;
    height: auto;
    max-height: 88px;
    object-fit: contain;
}

.review-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-top: 22px;
}

.review-html-block--inline p {
    margin-bottom: 0;
}

.review-html-block--inline p + p {
    margin-top: 0.5em;
}

.legal-card .review-subheading {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.35rem 0 0.75rem;
}

.review-detail-card {
    margin-bottom: 24px;
}

.review-detail-card:last-child {
    margin-bottom: 0;
}

.review-back-link {
    text-align: center;
    margin-top: 28px;
    font-size: 15px;
    font-weight: 600;
}

.review-back-link a {
    color: var(--accent-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.review-back-link a:hover {
    color: var(--accent-gold-light);
}

.review-404 {
    padding-top: 48px;
}

@media (max-width: 768px) {
    .review-hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .hero--review h1,
    .hero--review .hero-sub {
        text-align: center;
    }

    .review-hero-copy {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .review-hero-actions {
        justify-content: center;
    }
}

.hero-badges--single {
    justify-content: center;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(145deg, var(--accent-gold-dark) 0%, var(--accent-gold) 45%, var(--accent-gold-light) 100%);
    color: var(--bg-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 15px 32px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 6px 24px var(--shadow-gold);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(201, 166, 106, 0.28);
    filter: brightness(1.06);
    color: var(--bg-primary);
}

.contact-section {
    padding: 48px 0 88px;
    scroll-margin-top: 96px;
}

.contact-card {
    max-width: 560px;
    margin: 0 auto;
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 40px 42px 44px;
    box-shadow: var(--shadow-elevated);
}

.contact-card__title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.contact-card__lead {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 28px;
}

.contact-success {
    background: rgba(61, 90, 128, 0.2);
    border: 1px solid rgba(92, 124, 250, 0.35);
    border-radius: var(--radius-lg);
    padding: 22px 24px;
    margin-bottom: 28px;
    outline: none;
}

.contact-success:focus-visible {
    box-shadow: 0 0 0 2px var(--accent-burgundy-light);
}

.contact-success__title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-gold-light);
    margin-bottom: 8px;
}

.contact-success__text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.form-hint {
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-muted);
}

.form-input {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-primary);
    background: rgba(10, 12, 16, 0.55);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:hover {
    border-color: var(--border-medium);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(201, 166, 106, 0.15);
}

.form-input[aria-invalid="true"] {
    border-color: rgba(220, 100, 100, 0.65);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.55;
}

.form-input--narrow {
    max-width: 160px;
}

.form-charcount {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

.form-error {
    font-size: 13px;
    color: #e8a0a0;
    margin: 0;
    min-height: 1.2em;
}

.form-field--checkbox .form-error {
    margin-top: 4px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
    cursor: pointer;
}

.form-check input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--accent-gold);
    cursor: pointer;
}

.form-check a {
    color: var(--accent-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.form-check a:hover {
    color: var(--accent-gold-light);
}

.contact-submit {
    font-family: var(--font-body);
    align-self: flex-start;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-medium);
    background: linear-gradient(145deg, var(--accent-burgundy) 0%, rgba(61, 90, 128, 0.85) 100%);
    color: var(--text-primary);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-submit:hover {
    transform: translateY(-2px);
    border-color: var(--accent-burgundy-light);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .contact-card {
        padding: 28px 22px 32px;
    }

    .contact-card__title {
        font-size: 24px;
    }

    .legal-card {
        padding: 28px 22px;
    }

    .legal-card h1 {
        font-size: 30px;
    }

    .legal-card h2 {
        font-size: 20px;
    }
}

.about-brand-section {
    padding: 56px 0 72px;
    scroll-margin-top: 96px;
}

.about-brand-section .legal-card h2:not(:first-child) {
    margin-top: 2.25rem;
}

.about-figure {
    margin: 28px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    background: rgba(10, 12, 16, 0.35);
}

.about-figure img {
    width: 100%;
    height: auto;
    display: block;
}

.about-figure figcaption {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.55;
    padding: 14px 18px 16px;
    margin: 0;
    border-top: 1px solid var(--border-subtle);
}

.why-us-grid--four {
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 0;
}

@media (max-width: 1100px) {
    .why-us-grid--four {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-us-grid--four {
        grid-template-columns: 1fr;
    }

    .about-brand-section {
        padding: 40px 0 56px;
    }
}

.about-cta-band {
    padding: 56px 0 72px;
    border-top: 1px solid var(--border-subtle);
    background: linear-gradient(180deg, rgba(17, 21, 28, 0.55) 0%, var(--bg-primary) 100%);
}

.about-cta-band__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 22px;
}

.about-cta-band__text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    max-width: 520px;
    line-height: 1.35;
    margin: 0;
}

.about-foot-note {
    margin-top: 1.25rem !important;
}

.legal-footer {
    padding: 36px 0 28px;
    margin-top: 56px;
}

.legal-footer-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 18px;
    font-size: 14px;
}

.legal-footer-links a {
    color: var(--accent-gold);
    transition: color 0.3s;
}

.legal-footer-links a:hover {
    color: var(--accent-gold-light);
}

.legal-footer-links .sep {
    color: var(--text-muted);
    opacity: 0.3;
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(10, 12, 16, 0.62);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 210;
    width: 308px;
    max-width: 86vw;
    height: 100%;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-left: 1px solid var(--border-subtle);
    box-shadow: -16px 0 48px rgba(0, 0, 0, 0.45);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-nav-panel.is-open {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-subtle);
}

.mobile-nav-header .logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-gold);
}

.mobile-nav-close {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-nav-close:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
}

.mobile-nav-links a {
    display: block;
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
    transition: color 0.25s ease, background 0.25s ease, padding-left 0.25s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:active {
    color: var(--accent-gold-light);
    background: rgba(201, 166, 106, 0.07);
    padding-left: 34px;
}

body.nav-open {
    overflow: hidden;
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 300;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-medium);
    box-shadow: 0 -6px 40px rgba(0, 0, 0, 0.45);
    padding: 24px 0;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1);
}

.cookie-popup.is-visible {
    transform: translateY(0);
}

.cookie-popup-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-popup-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.cookie-popup-text {
    flex: 1;
    min-width: 240px;
}

.cookie-popup-text p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.cookie-popup-text a {
    color: var(--accent-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-popup-text a:hover {
    color: var(--accent-gold-light);
}

.cookie-popup-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    letter-spacing: 0.03em;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--accent-gold-dark), var(--accent-gold));
    color: var(--bg-primary);
    box-shadow: 0 4px 16px var(--shadow-gold);
}

.cookie-btn-accept:hover {
    filter: brightness(1.12);
    transform: translateY(-1px);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-subtle);
}

.cookie-btn-decline:hover {
    border-color: var(--border-medium);
    color: var(--text-secondary);
}

@media (max-width: 600px) {
    .cookie-popup-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cookie-popup-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.fade-up-d1 {
    animation-delay: 0.1s;
}

.fade-up-d2 {
    animation-delay: 0.2s;
}

.fade-up-d3 {
    animation-delay: 0.3s;
}

.fade-up-d4 {
    animation-delay: 0.4s;
}

.fade-up-d5 {
    animation-delay: 0.5s;
}