/*
 * ═══════════════════════════════════════════════════════════════
 * PRONOSTICS FRANCE - PREMIUM DESIGN SYSTEM 2026
 * ═══════════════════════════════════════════════════════════════
 * Modern premium design for sports betting predictions
 * Color Palette: French sophistication with gold accents
 * ═══════════════════════════════════════════════════════════════
 */

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Colors - Deep Navy Trust */
    --navy-900: #0a1628;
    --navy-800: #142038;
    --navy-700: #1e2b48;
    --navy-600: #2a3a5c;

    /* Accent Colors - French Gold Luxury */
    --gold-500: #d4af37;
    --gold-400: #e4c04b;
    --gold-300: #f0d46a;
    --gold-100: #fef9e7;

    /* French Heritage - Tricolore Subtle */
    --bleu-france: #002395;
    --rouge-france: #ed2939;
    --blanc-pure: #ffffff;

    /* Success & Action */
    --emerald-500: #10b981;
    --emerald-400: #34d399;

    /* Neutral Tones */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-300) 50%, var(--gold-500) 100%);
    --gradient-navy: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
    --gradient-premium: linear-gradient(135deg, var(--navy-900) 0%, #1a2744 50%, var(--navy-800) 100%);
    --gradient-shine: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.25);
    --shadow-navy: 0 25px 50px -12px rgba(10, 22, 40, 0.5);

    /* Typography */
    --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --container-max: 1280px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--navy-900);
    color: var(--gray-100);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--blanc-pure);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-300);
}

a {
    color: var(--gold-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--gold-300);
}

/* ===== CONTAINER ===== */
.wrappers {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 16px 0;
}

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

header-logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

header-logo a {
    display: flex;
    align-items: center;
    transition: transform var(--transition-base);
}

header-logo a:hover {
    transform: scale(1.02);
}

header-logo img {
    max-height: 45px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
}

header-logo .site-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blanc-pure);
    letter-spacing: -0.02em;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header Navigation */
header-nav {
    display: flex;
    align-items: center;
}

header-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

header-nav ul li {
    display: flex;
    align-items: center;
}

header-nav ul li a {
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-300);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    white-space: nowrap;
}

header-nav ul li a:hover {
    color: var(--gold-300);
    background: rgba(212, 175, 55, 0.1);
}

header-nav ul li a.active {
    color: var(--gold-400);
    background: rgba(212, 175, 55, 0.15);
}

/* ===== BURGER MENU ===== */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
    gap: 5px;
}

.burger-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold-400);
}

.burger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gold-400);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--navy-900);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    transition: all var(--transition-base);
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu ul li:last-child {
    border-bottom: none;
}

.mobile-menu ul li a {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-200);
    padding: 16px 12px;
    transition: all var(--transition-fast);
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
    color: var(--gold-300);
    background: rgba(212, 175, 55, 0.1);
    padding-left: 20px;
}

/* Overlay when menu is open */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* ===== HERO SECTION ===== */
.first-block {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-premium);
    overflow: hidden;
    padding-top: 80px;
}

.first-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(0, 35, 149, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.first-block::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 30px); }
}

.first-screen {
    text-align: center;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}

.first-screen_content h1 {
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--blanc-pure) 0%, var(--gold-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.1); }
}

.first-screen_content > p {
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--gray-300);
}

.table-head_left {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 32px;
    margin-top: 48px;
}

.table-head_left p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-400);
}

.table-head_left p::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gold-500);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--gold-500);
}

/* ===== TABLE SECTION ===== */
.table-block {
    position: relative;
    padding: 80px 0;
    background: var(--navy-900);
}

.table-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-gold);
    opacity: 0.3;
}

.table-wrappers {
    position: relative;
    z-index: 1;
}

.table {
    background: var(--navy-800);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    box-shadow: var(--shadow-navy);
}

.table_row {
    display: grid;
    grid-template-columns: 50px 1fr 180px 160px 100px;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background var(--transition-base);
}

.table_row:hover {
    background: rgba(212, 175, 55, 0.05);
}

.table_row:last-child {
    border-bottom: none;
}

.table_row_title {
    background: rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
}

.table_title p {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gold-400);
}

.table_col-number {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--gold-400);
}

.table_col-site {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.table_col-bonus {
    text-align: center;
}

.table_col-bonus .bonus-top {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--gold-300);
}

.table_col-bonus .bonus-center {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--blanc-pure);
    margin: 4px 0;
}

.table_col-bonus .bonus-bottom {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-400);
}

.table_col-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: var(--gradient-gold);
    color: var(--navy-900);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-gold);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.table_col-btn a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

.table_col-rating {
    text-align: center;
}

.table_col-rating .rating-value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--gold-400);
}

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

.table_col-rating .rating-stars span {
    color: var(--gold-500);
    font-size: 0.875rem;
}

/* ===== FAQ SECTION ===== */
.faq-block {
    padding: 80px 0;
    background: var(--navy-800);
}

.faq-block > .wrappers > h2 {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.faq-block > .wrappers > h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
}

.faq-block_container {
    background: var(--navy-700);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 16px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all var(--transition-base);
    cursor: pointer;
}

.faq-block_container:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold);
}

.faq-block_title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--gold-300);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-block_title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.faq-block_content {
    color: var(--gray-300);
    line-height: 1.7;
    padding-left: 16px;
}

/* ===== RESPONSIBLY BLOCK ===== */
.responsibly-block {
    padding: 80px 0;
    background: var(--navy-900);
}

.responsibly-block .faq-block_container {
    background: linear-gradient(135deg, rgba(237, 41, 57, 0.15) 0%, rgba(237, 41, 57, 0.05) 100%);
    border: 2px solid rgba(237, 41, 57, 0.3);
    text-align: center;
}

.responsibly-block .faq-block_title h2 {
    color: var(--rouge-france);
    margin-bottom: 16px;
}

.responsibly-block .faq-block_content {
    padding-left: 0;
    text-align: center;
}

.responsibly-block img {
    display: block;
    margin: 0 auto 24px;
    max-width: 90px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--navy-900);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 60px 0 30px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-gold);
}

.footer-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-nav-wrap {
    background: var(--navy-800);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 32px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.menu-footer-menu-container ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.menu-footer-menu-container ul li a {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--gray-300);
    transition: all var(--transition-fast);
    position: relative;
}

.menu-footer-menu-container ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-500);
    transition: width var(--transition-base);
}

.menu-footer-menu-container ul li a:hover {
    color: var(--gold-400);
}

.menu-footer-menu-container ul li a:hover::after {
    width: 100%;
}

.footer-widget p {
    font-size: 0.875rem;
    color: var(--gray-400);
    text-align: center;
    margin-bottom: 8px;
}

.footer-widget p strong {
    color: var(--gold-300);
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin: 32px 0;
    padding: 24px;
    background: var(--navy-800);
    border-radius: var(--radius-lg);
}

.footer-logos a {
    opacity: 0.7;
    transition: all var(--transition-base);
}

.footer-logos a:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-logos img {
    max-height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter var(--transition-base);
}

.footer-logos a:hover img {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.footer-copy {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ===== TERMS PAGE ===== */
.faq-block p {
    color: var(--gray-300);
    margin-bottom: 16px;
}

.faq-block .custom-heading {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--gold-300);
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

/* ===== AGE VERIFICATION OVERLAY ===== */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999;
}

.popup {
    width: 100%;
    max-width: 500px;
    background: var(--gradient-premium);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 40px;
    color: var(--blanc-pure);
    box-shadow: var(--shadow-navy);
    animation: popupAppear 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes popupAppear {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.popup .header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 20px;
    color: var(--gold-300);
}

.popup .divider {
    height: 1px;
    background: rgba(212, 175, 55, 0.2);
    margin: 20px 0;
}

.popup .text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-300);
    margin-bottom: 28px;
}

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

.popup .btn-primary {
    padding: 16px 24px;
    border-radius: var(--radius-md);
    border: none;
    background: var(--gradient-gold);
    color: var(--navy-900);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-gold);
}

.popup .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

.popup .btn-link {
    background: none;
    border: none;
    color: var(--gray-400);
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.875rem;
    padding: 8px;
    transition: color var(--transition-fast);
}

.popup .btn-link:hover {
    color: var(--gray-200);
}

.warning-icon {
    width: 40px;
    height: 40px;
    background: var(--rouge-france);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.hidden {
    display: none !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .table_row {
        grid-template-columns: 40px 1fr 140px 140px 80px;
        gap: 12px;
        padding: 16px;
    }

    .table_title p {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    :root {
        --container-max: 100%;
    }

    h1 {
        font-size: 2rem;
    }

    /* Header Mobile */
    header .wrappers {
        gap: 16px;
    }

    header-logo {
        gap: 12px;
    }

    header-logo img {
        max-height: 38px;
    }

    header-logo .site-name {
        font-size: 1rem;
    }

    /* Hide desktop nav on mobile */
    header-nav {
        display: none;
    }

    /* Show burger button */
    .burger-btn {
        display: flex;
    }

    /* Mobile menu hidden by default on mobile too */
    .mobile-menu {
        display: block;
        transform: translateY(-100%);
        pointer-events: none;
    }

    .mobile-menu.active {
        transform: translateY(0);
        pointer-events: auto;
    }

    .mobile-menu-overlay {
        display: none;
        pointer-events: none;
    }

    .mobile-menu-overlay.active {
        display: block;
        pointer-events: auto;
    }

    .first-screen {
        padding: 40px 16px;
    }

    .first-screen_content > p {
        font-size: 1rem;
    }

    .table-head_left {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 32px;
    }

    .table-wrappers {
        padding: 0 8px;
    }

    .table {
        border-radius: var(--radius-lg);
    }

    .table_row,
    .table_row_title {
        grid-template-columns: 30px 1fr;
        gap: 12px;
        padding: 16px;
    }

    .table_col-bonus,
    .table_col-btn,
    .table_col-rating,
    .table_title .table_col-bonus,
    .table_title .table_col-btn,
    .table_title .table_col-rating {
        display: none;
    }

    .table_col-site {
        flex-direction: column;
        gap: 8px;
    }

    .table_row .mobile-bonus {
        display: block;
        font-size: 0.875rem;
        color: var(--gold-300);
    }

    .table_row .mobile-btn {
        display: inline-flex;
        margin-top: 8px;
        padding: 10px 16px;
        background: var(--gradient-gold);
        color: var(--navy-900);
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 0.75rem;
        border-radius: var(--radius-sm);
    }

    .faq-block,
    .responsibly-block {
        padding: 48px 0;
    }

    .faq-block > .wrappers > h2 {
        font-size: 1.75rem;
    }

    .faq-block_container {
        padding: 20px;
    }

    .menu-footer-menu-container ul {
        flex-direction: column;
        gap: 16px;
    }

    .menu-footer-menu-container ul li {
        text-align: center;
        width: 100%;
    }

    .footer-logos {
        gap: 16px;
    }

    .footer-logos img {
        max-height: 30px;
    }

    .popup {
        padding: 28px 20px;
    }

    .popup .header {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 12px 0;
    }

    header .wrappers {
        gap: 12px;
    }

    header-logo {
        gap: 8px;
    }

    header-logo img {
        max-height: 32px;
    }

    header-logo .site-name {
        font-size: 0.875rem;
    }

    /* Sur très petits écrans, masquer le nom du site */
    @media (max-width: 380px) {
        header-logo .site-name {
            display: none;
        }
    }

    header-nav ul {
        gap: 2px;
    }

    header-nav ul li a {
        font-size: 0.7rem;
        padding: 5px 8px;
    }

    .first-block {
        padding-top: 70px;
        min-height: auto;
    }

    .table-block {
        padding: 48px 0;
    }

    .table_row {
        padding: 12px;
    }

    .footer-nav-wrap {
        padding: 20px 16px;
    }

    .footer-logos {
        padding: 20px 16px;
        gap: 12px;
    }

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

/* ===== UTILITY CLASSES ===== */
.text-gold {
    color: var(--gold-400);
}

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

.mb-4 {
    margin-bottom: 1rem;
}

/* ===== BRAND FLAG ===== */
.brand-flag {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 100;
    display: none;
}

@media (min-width: 1200px) {
    .brand-flag {
        display: block;
    }
}

/* ===== BONUS DATE ===== */
.bonus-date {
    color: var(--gold-400);
    font-weight: 600;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--navy-900);
}

::-webkit-scrollbar-thumb {
    background: var(--navy-600);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-500);
}

/* ===== SELECTION ===== */
::selection {
    background: var(--gold-500);
    color: var(--navy-900);
}

::-moz-selection {
    background: var(--gold-500);
    color: var(--navy-900);
}

/* ===== FOCUS STATES ===== */
:focus-visible {
    outline: 2px solid var(--gold-500);
    outline-offset: 2px;
}

/* ===== EXIT INTENT MODAL ===== */
.wrap-exit-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(15px);
    display: none !important;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    padding: 20px;
}

.wrap-exit-modal.active {
    display: flex !important;
}

.exit-modal {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: var(--gradient-premium);
    border-radius: var(--radius-xl);
    border: 2px solid var(--gold-500);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-navy), 0 0 60px rgba(212, 175, 55, 0.3);
    animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.exit-modal::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
}

.exit-modal__btn-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    z-index: 1;
}

.exit-modal__btn-close::before,
.exit-modal__btn-close::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 2px;
    background: var(--gold-400);
    border-radius: 2px;
}

.exit-modal__btn-close::before {
    transform: rotate(45deg);
}

.exit-modal__btn-close::after {
    transform: rotate(-45deg);
}

.exit-modal__btn-close:hover {
    background: var(--rouge-france);
    border-color: var(--rouge-france);
    transform: rotate(90deg);
}

.exit-modal__btn-close:hover::before,
.exit-modal__btn-close:hover::after {
    background: white;
}

.popup-figure {
    margin-bottom: 24px;
}

.popup-figure figure {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-figure img {
    max-width: 120px;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(212, 175, 55, 0.3));
    transition: transform var(--transition-base);
}

.popup-figure img:hover {
    transform: scale(1.05);
}

.popup-bonus {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold-300);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.popup-money-bonus {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--blanc-pure);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    margin: 8px 0;
}

.money-bonus {
    font-size: 1rem;
    color: var(--gray-300);
    margin-bottom: 24px;
}

.exit-modal .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 32px;
    background: var(--gradient-gold);
    color: var(--navy-900);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-gold);
}

.exit-modal .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
    text-decoration: none;
}

.exit-modal .btn.link-params {
    text-decoration: none;
}

.exit-modal .btn.link-params:hover {
    text-decoration: none;
}

.popup-link-tc {
    display: block;
    margin-top: 16px;
    font-size: 0.75rem;
    color: var(--gray-500);
    line-height: 1.4;
}

/* Exit Modal Mobile */
@media (max-width: 480px) {
    .exit-modal {
        padding: 32px 24px;
        max-width: 100%;
        margin: 0 16px;
    }

    .popup-money-bonus {
        font-size: 1.75rem;
    }

    .exit-modal .btn {
        padding: 16px 24px;
        font-size: 0.875rem;
    }

    .popup-figure img {
        max-width: 100px;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    header,
    .site-footer,
    .overlay,
    .exit-modal {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}
