/* ============================================
   PAYVAT — STYLE.CSS
   Google Fonts: Plus Jakarta Sans + Space Grotesk
   ============================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
    /* Backgrounds */
    --bg-page: #0D0608;
    --bg-base: #1A0C10;
    --bg-card: #2D1218;
    --bg-hover: #3D1A22;
    --bg-border: #5A2030;

    /* Crimson */
    --crimson-deep: #8B1A2A;
    --crimson-main: #C8203A;
    --crimson-hover: #E02A46;
    --crimson-pale: #F5D0D6;

    /* Gold */
    --gold-dark: #4A3000;
    --gold-deep: #C8A020;
    --gold-main: #F0C842;
    --gold-hover: #F8D84E;

    /* Text */
    --text-high: #F2EEF0;
    --text-mid: #B8AAB0;
    --text-low: #7A6870;

    /* Chrome */
    --chrome-dark: #606068;
    --chrome-mid: #C8C8CC;
    --chrome-light: #E8E8EC;

    /* Semantic */
    --success: #22C55E;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #3B82F6;

    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --section-pad: 80px;
    --card-radius: 12px;
    --btn-radius: 8px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-mid);
    background-color: var(--bg-page);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--crimson-pale);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

ul, ol {
    list-style: none;
}

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

/* ---------- UTILITY ---------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.text-accent {
    color: var(--crimson-main);
}

.bonus-amount {
    color: var(--gold-main);
    font-weight: 700;
}

/* ---------- HEADER ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13, 6, 8, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--bg-border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.header-logo svg {
    flex-shrink: 0;
}

.header-logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-high);
    letter-spacing: -0.5px;
}

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

.header-nav a {
    font-family: var(--font-body);
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--text-mid);
    text-decoration: none;
    padding: 4px 0;
    position: relative;
    transition: color 0.2s ease;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--crimson-main);
    transition: width 0.25s ease;
}

.header-nav a:hover {
    color: var(--text-high);
}

.header-nav a:hover::after {
    width: 100%;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-high);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13, 6, 8, 0.96);
    z-index: 1050;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.mobile-nav-overlay.active {
    display: flex;
}

.mobile-nav-overlay a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-high);
    text-decoration: none;
    padding: 8px 16px;
    transition: color 0.2s ease;
}

.mobile-nav-overlay a:hover {
    color: var(--crimson-main);
}

@media (max-width: 767px) {
    .header-nav {
        display: none;
    }
    .hamburger {
        display: flex;
    }
}

/* ---------- INTRO SECTION ---------- */
.intro-section {
    padding: var(--section-pad) 0;
    background: var(--bg-base);
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 32, 58, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.intro-wrapper {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--success);
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    margin-bottom: 24px;
}

.intro-section h1 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.intro-subtitle {
    font-size: 1.1rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 36px;
}

.intro-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-high);
}

/* ---------- RATING SECTION ---------- */
.rating-section {
    padding: var(--section-pad) 0;
    background: var(--bg-page);
}

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

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-mid);
    max-width: 600px;
    margin: 0 auto;
}

/* Offer Cards */
.offers-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.offer-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: var(--card-radius);
    padding: 24px;
    position: relative;
    transition: background 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.offer-card:hover {
    background: var(--bg-hover);
    border-color: var(--crimson-deep);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--crimson-main), var(--gold-main));
    border-radius: var(--card-radius) 0 0 var(--card-radius);
}

.offer-rank {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gold-main);
    background: var(--gold-dark);
    padding: 4px 12px;
    border-radius: 6px;
}

.offer-content {
    display: grid;
    grid-template-columns: 140px 1fr auto auto;
    align-items: center;
    gap: 24px;
}

.offer-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(242, 238, 240, 0.04);
    border-radius: 8px;
    padding: 12px;
    height: 80px;
}

.offer-logo-wrap img {
    width: 120px;
    height: 60px;
    object-fit: contain;
}

.offer-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.offer-bonus {
    font-size: 0.938rem;
    color: var(--text-mid);
}

/* Score */
.offer-score-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0.05));
    border: 2px solid rgba(59, 130, 246, 0.3);
    position: relative;
}

.score-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--info);
    font-weight: 600;
}

.score-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-high);
    line-height: 1;
}

.score-max {
    font-size: 0.625rem;
    color: var(--text-low);
}

/* Actions */
.offer-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 140px;
}

.btn-details {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--text-high);
    background: transparent;
    border: 1px solid var(--bg-border);
    border-radius: var(--btn-radius);
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-details:hover {
    border-color: var(--crimson-main);
    color: var(--crimson-pale);
    background: rgba(200, 32, 58, 0.08);
}

.btn-operator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--text-high);
    background: var(--crimson-main);
    border: none;
    border-radius: var(--btn-radius);
    text-decoration: none;
    transition: background 0.2s ease;
    cursor: pointer;
}

.btn-operator:hover {
    background: var(--crimson-hover);
    color: var(--text-high);
}

.btn-operator--large {
    padding: 14px 32px;
    font-size: 1rem;
}

.offer-disclaimer {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(90, 32, 48, 0.3);
    font-size: 0.75rem;
    color: var(--text-low);
    line-height: 1.5;
}

/* Offer card responsive */
@media (max-width: 1023px) {
    .offer-content {
        grid-template-columns: 120px 1fr auto;
        gap: 16px;
    }
    .offer-score-wrap {
        display: none;
    }
}

@media (max-width: 767px) {
    .offer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 16px;
    }
    .offer-logo-wrap {
        justify-content: center;
        margin: 0 auto;
        width: 140px;
    }
    .offer-rank {
        position: static;
        display: inline-block;
        margin-bottom: 8px;
    }
    .offer-actions {
        flex-direction: row;
        justify-content: center;
        min-width: unset;
    }
    .offer-score-wrap {
        display: flex;
    }
}

/* ---------- PRE-FOOTER SECTION ---------- */
.prefooter-section {
    padding: 60px 0;
    background: var(--bg-base);
    border-top: 1px solid var(--bg-border);
}

.prefooter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.prefooter-block h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--text-high);
}

.prefooter-block p {
    font-size: 0.8rem;
    color: var(--text-low);
    line-height: 1.7;
}

.prefooter-block a {
    color: var(--crimson-pale);
    text-decoration: underline;
    text-decoration-color: rgba(245, 208, 214, 0.3);
}

.prefooter-block a:hover {
    text-decoration-color: var(--crimson-hover);
}

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

/* Regulator Row */
.regulator-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid rgba(90, 32, 48, 0.2);
}

.regulator-row a {
    display: flex;
    align-items: center;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.regulator-row a:hover {
    opacity: 1;
}

.regulator-row img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Regulator cards (responsible page) */
.regulator-row--large {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    border-top: none;
    padding-top: 0;
}

.regulator-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: var(--card-radius);
    padding: 20px;
}

.regulator-card a {
    flex-shrink: 0;
    opacity: 1;
}

.regulator-card p {
    font-size: 0.875rem;
    color: var(--text-mid);
    line-height: 1.6;
}

@media (max-width: 767px) {
    .regulator-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ---------- PAGE HERO ---------- */
.page-hero {
    padding: 60px 0 40px;
    background: var(--bg-base);
    text-align: center;
    border-bottom: 1px solid var(--bg-border);
}

.page-hero h1 {
    font-size: 2.25rem;
    margin-bottom: 12px;
}

.hero-sub {
    font-size: 1rem;
    color: var(--text-mid);
}

/* ---------- CONTENT SECTION ---------- */
.content-section {
    padding: var(--section-pad) 0;
    background: var(--bg-page);
}

.content-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.content-block h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--crimson-deep);
    display: inline-block;
}

.content-block p {
    margin-bottom: 12px;
}

.content-block ul,
.content-block ol {
    margin: 12px 0;
    padding-left: 24px;
}

.content-block li {
    list-style: disc;
    margin-bottom: 8px;
    color: var(--text-mid);
}

.values-list li {
    list-style: none;
    padding: 12px 16px;
    background: var(--bg-card);
    border-left: 3px solid var(--crimson-main);
    border-radius: 0 var(--btn-radius) var(--btn-radius) 0;
    margin-bottom: 12px;
}

/* ---------- LEGAL SECTION ---------- */
.legal-section .legal-content {
    max-width: 860px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.375rem;
    margin: 36px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--bg-border);
}

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

.legal-content h3 {
    font-size: 1.125rem;
    margin: 20px 0 8px;
    color: var(--crimson-pale);
}

.legal-content p {
    margin-bottom: 12px;
    line-height: 1.75;
}

.legal-content ul,
.legal-content ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-content li {
    list-style: disc;
    margin-bottom: 8px;
    line-height: 1.7;
}

/* ---------- CONTACT ---------- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}

@media (max-width: 767px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.contact-info-panel h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.contact-info-panel p {
    margin-bottom: 20px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-high);
    font-size: 0.938rem;
}

.contact-detail svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-note {
    font-size: 0.8rem;
    color: var(--text-low);
    margin-top: 20px;
}

/* Form */
.contact-form-panel {
    background: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: var(--card-radius);
    padding: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-high);
    margin-bottom: 6px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.938rem;
    color: var(--text-high);
    background: var(--bg-base);
    border: 1px solid var(--bg-border);
    border-radius: var(--btn-radius);
    outline: none;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--crimson-main);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B8AAB0' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--crimson-main);
    width: 18px;
    height: 18px;
}

.form-checkbox label {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-mid);
    margin-bottom: 0;
}

.form-error {
    display: none;
    font-size: 0.75rem;
    color: var(--danger);
    margin-top: 4px;
}

.form-group.error .form-error {
    display: block;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: var(--danger);
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-high);
    background: var(--crimson-main);
    border: none;
    border-radius: var(--btn-radius);
    cursor: pointer;
    transition: background 0.2s ease;
    min-width: 180px;
}

.btn-submit:hover {
    background: var(--crimson-hover);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-loader {
    width: 18px;
    height: 18px;
    border: 2px solid transparent;
    border-top: 2px solid var(--text-high);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--btn-radius);
    margin-top: 20px;
    font-size: 0.875rem;
    color: var(--success);
}

/* ---------- OFFER HERO (detail pages) ---------- */
.offer-hero {
    padding: 40px 0 32px;
    background: var(--bg-base);
    border-bottom: 1px solid var(--bg-border);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-mid);
    text-decoration: none;
    margin-bottom: 24px;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: var(--crimson-main);
}

.offer-hero-content {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 32px;
    align-items: flex-start;
}

.offer-hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(242, 238, 240, 0.04);
    border-radius: var(--card-radius);
    padding: 20px;
}

.offer-hero-logo img {
    width: 200px;
    height: 100px;
    object-fit: contain;
}

.offer-hero-info h1 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.offer-hero-desc {
    font-size: 0.938rem;
    color: var(--text-mid);
    line-height: 1.75;
}

@media (max-width: 767px) {
    .offer-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .offer-hero-logo {
        margin: 0 auto;
        max-width: 220px;
    }
}

/* ---------- OFFER DETAILS ---------- */
.offer-details-section {
    padding: 48px 0;
    background: var(--bg-page);
}

.offer-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.detail-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: var(--card-radius);
    padding: 20px;
    text-align: center;
    transition: border-color 0.2s ease;
}

.detail-card:hover {
    border-color: var(--crimson-deep);
}

.detail-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-low);
    margin-bottom: 8px;
    font-weight: 600;
}

.detail-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-high);
}

.offer-cta-block {
    text-align: center;
}

.offer-cta-block .offer-disclaimer {
    margin-top: 12px;
    border-top: none;
    padding-top: 0;
}

@media (max-width: 767px) {
    .offer-details-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 479px) {
    .offer-details-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: var(--bg-base);
    border-top: 1px solid var(--bg-border);
}

.footer-main {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 60px 24px 32px;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 48px;
}

.footer-brand-text {
    font-size: 0.875rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-top: 16px;
}

.footer-nav-title {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-high);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.footer-nav-list li {
    margin-bottom: 10px;
}

.footer-nav-list a {
    font-size: 0.875rem;
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav-list a:hover {
    color: var(--text-high);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.875rem;
    color: var(--text-mid);
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Footer bottom */
.footer-bottom {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 24px;
    border-top: 1px solid rgba(90, 32, 48, 0.2);
}

.footer-regulators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-regulators a {
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.footer-regulators a:hover {
    opacity: 1;
}

.footer-regulators img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--danger);
    color: var(--danger);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 800;
}

.footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.footer-copyright {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-low);
    margin-bottom: 12px;
}

.footer-disclaimer {
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-low);
    line-height: 1.7;
    max-width: 860px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 24px 24px;
    }
}

/* ---------- AGE VERIFICATION POPUP ---------- */
.age-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(13, 6, 8, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.age-modal {
    background: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
    max-width: 440px;
    width: 100%;
    position: relative;
}

.age-modal::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--crimson-main), var(--gold-main));
    border-radius: 2px;
}

.age-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 3px solid var(--danger);
    color: var(--danger);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.age-modal h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.age-modal p {
    font-size: 0.875rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 28px;
}

.age-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.age-confirm {
    padding: 14px 24px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-high);
    background: var(--crimson-main);
    border: none;
    border-radius: var(--btn-radius);
    cursor: pointer;
    transition: background 0.2s ease;
}

.age-confirm:hover {
    background: var(--crimson-hover);
}

.age-exit {
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-low);
    background: transparent;
    border: 1px solid var(--bg-border);
    border-radius: var(--btn-radius);
    cursor: pointer;
    transition: all 0.2s ease;
}

.age-exit:hover {
    border-color: var(--text-low);
    color: var(--text-mid);
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 8000;
    background: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: var(--card-radius);
    padding: 20px 24px;
    max-width: 420px;
    width: calc(100% - 48px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.cookie-banner p {
    font-size: 0.8rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 14px;
}

.cookie-banner a {
    color: var(--crimson-pale);
    text-decoration: underline;
}

.cookie-accept {
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-high);
    background: var(--crimson-main);
    border: none;
    border-radius: var(--btn-radius);
    cursor: pointer;
    transition: background 0.2s ease;
}

.cookie-accept:hover {
    background: var(--crimson-hover);
}

@media (max-width: 479px) {
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
        width: auto;
    }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1023px) {
    :root {
        --section-pad: 60px;
    }
    .intro-section h1 {
        font-size: 2.25rem;
    }
}

@media (max-width: 767px) {
    :root {
        --section-pad: 48px;
    }
    .intro-section h1 {
        font-size: 1.75rem;
    }
    .page-hero h1 {
        font-size: 1.75rem;
    }
    .section-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 14px;
    }
    .container {
        padding: 0 16px;
    }
}