/* ============================================
   UK Casino Pick — Full Redesign
   Warm Burgundy & Gold Theme
   ============================================ */

/* --- Google Fonts Import --- */
/* @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Nunito+Sans:wght@300;400;500;600;700&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap');
/* --- CSS Variables --- */
:root {
    --bg-primary: #1a0a0a;
    --bg-secondary: #2a1215;
    --bg-card: #301418;
    --bg-card-hover: #3a1a1f;
    --accent-gold: #d4a843;
    --accent-gold-light: #e8c96a;
    --accent-gold-dark: #b08930;
    --accent-burgundy: #8b1a2b;
    --accent-burgundy-light: #a82040;
    --text-primary: #f5ece3;
    --text-secondary: #c9b8a8;
    --text-muted: #8a7a6a;
    --border-subtle: rgba(212, 168, 67, 0.15);
    --border-medium: rgba(212, 168, 67, 0.3);
    --shadow-gold: rgba(212, 168, 67, 0.12);
    --font-display: 'Unbounded', Georgia, serif;
    --font-body: 'Unbounded', 'Segoe UI', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -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.7;
    font-size: 17px;
    overflow-x: hidden;
}

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

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

/* --- Background Texture --- */
.main-bg {
    min-height: 100vh;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(139, 26, 43, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(212, 168, 67, 0.08) 0%, transparent 50%),
        var(--bg-primary);
}

/* --- Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(26, 10, 10, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 18px 0;
}

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

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

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

.logo-wrap img {
    width: 44px;
    height: 44px;
    filter: drop-shadow(0 2px 8px rgba(212, 168, 67, 0.3));
}

.logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 0.02em;
}

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

.main-nav a {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 8px 18px;
    border-radius: 8px;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    color: var(--accent-gold);
    background: rgba(212, 168, 67, 0.08);
}

.menu-btn {
    display: none;
    background: none;
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 10px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s;
}

.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 SECTION
   ============================================ */
.hero {
    padding: 70px 0 50px;
    text-align: center;
}

.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: 52px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 .highlight {
    display: block;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 4s 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: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 14px;
    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 TITLES
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 46px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-muted);
}

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

.section-divider .line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold-dark), transparent);
}

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

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

/* ============================================
   CASINO CARDS — SINGLE COLUMN LIST LAYOUT
   ============================================ */
.casinos-section {
    padding-bottom: 70px;
}

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

.casino-card {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    padding: 28px 32px;
    display: grid;
    grid-template-columns: 160px 1fr auto;
    align-items: center;
    gap: 28px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-burgundy), var(--accent-gold), var(--accent-burgundy));
    opacity: 0;
    transition: opacity 0.4s;
}

.casino-card:hover {
    border-color: var(--border-medium);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 168, 67, 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: linear-gradient(135deg, rgba(212, 168, 67, 0.15), rgba(176, 137, 48, 0.08));
    border: 1px solid var(--border-medium);
    border-radius: 10px;
    padding: 8px 16px;
    text-align: center;
}

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

.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-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.casino-tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(26, 10, 10, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    padding: 5px 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(135deg, var(--accent-gold-dark), var(--accent-gold), var(--accent-gold-light));
    color: var(--bg-primary);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 12px;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 20px var(--shadow-gold);
}

.btn-visit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 168, 67, 0.25);
    filter: brightness(1.1);
}

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

/* New customers notice */
.notice-bar {
    max-width: 900px;
    margin: 32px auto 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 16px 24px;
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
}

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

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-us-section {
    padding: 70px 0;
    background: var(--bg-secondary);
    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: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.35s ease;
}

.why-card:hover {
    border-color: var(--border-medium);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.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 Gambling Block --- */
.responsible-block {
    background: linear-gradient(135deg, rgba(139, 26, 43, 0.2), var(--bg-card));
    border: 1px solid rgba(139, 26, 43, 0.35);
    border-radius: 18px;
    padding: 36px 42px;
}

.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
   ============================================ */
.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: 16px;
    padding: 32px 26px;
    position: relative;
    transition: all 0.35s ease;
}

.review-card:hover {
    border-color: var(--border-medium);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.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(135deg, 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 / HOW WE WORK SECTION
   ============================================ */
.about-section {
    padding: 70px 0;
    background: var(--bg-secondary);
    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: 14px;
    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;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-subtle);
    padding: 58px 0 36px;
}

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

.footer-logo img {
    width: 44px;
    height: 44px;
}

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

.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: 12px;
    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;
    }
}

/* ============================================
   LEGAL PAGES (Privacy, Terms)
   ============================================ */
.legal-page {
    padding: 46px 0 70px;
    max-width: 820px;
    margin: 0 auto;
}

.legal-card {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
    border: 1px solid var(--border-subtle);
    border-radius: 22px;
    padding: 42px 48px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.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: 0;
    color: var(--accent-gold);
    font-size: 12px;
    top: 3px;
}

.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(26, 10, 10, 0.5);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 22px 26px;
    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);
}

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

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

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

/* --- Legal Page Footer --- */
.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
   ============================================ */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(26, 10, 10, 0.6);
    backdrop-filter: blur(6px);
    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: 300px;
    max-width: 85vw;
    height: 100%;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-subtle);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.4);
    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: none;
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    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: 17px;
    font-weight: 600;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(212, 168, 67, 0.06);
    transition: all 0.25s;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:active {
    color: var(--accent-gold);
    background: rgba(212, 168, 67, 0.06);
    padding-left: 34px;
}

body.nav-open {
    overflow: hidden;
}

/* ============================================
   COOKIE CONSENT POPUP
   ============================================ */
.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: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    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: 10px;
    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;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@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;
}