/*
 * ===========================================
 * PARIS GAGNANTS FR - PREMIUM DESIGN SYSTEM
 * ===========================================
 * Modern Premium Casino & Betting Theme
 * Color Palette: Deep Blue/Violet + Gold Accents
 * ===========================================
 */

/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Colors */
    --bg-primary: #0a0e1a;
    --bg-secondary: #121829;
    --bg-tertiary: #1a2133;
    --bg-card: rgba(26, 33, 51, 0.8);
    --bg-glass: rgba(18, 24, 41, 0.7);

    /* Accent Colors */
    --accent-gold: #ffd700;
    --accent-gold-light: #ffed4a;
    --accent-gold-dark: #b8860b;
    --accent-red: #ff4757;
    --accent-red-light: #ff6b7a;
    --accent-orange: #ff6b35;
    --accent-purple: #7c4dff;
    --accent-cyan: #00d4ff;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffb800 50%, #ff9500 100%);
    --gradient-red: linear-gradient(135deg, #ff4757 0%, #ff6b35 100%);
    --gradient-purple: linear-gradient(135deg, #7c4dff 0%, #536dfe 100%);
    --gradient-dark: linear-gradient(180deg, #0a0e1a 0%, #121829 50%, #1a2133 100%);
    --gradient-card: linear-gradient(145deg, rgba(26, 33, 51, 0.9), rgba(18, 24, 41, 0.95));
    --gradient-shine: linear-gradient(90deg, transparent, rgba(255,215,0,0.1), transparent);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b8c5e0;
    --text-muted: #7a869a;
    --text-gold: #ffd700;

    /* Border Colors */
    --border-gold: rgba(255, 215, 0, 0.3);
    --border-card: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(255, 215, 0, 0.2);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 0 30px rgba(255, 215, 0, 0.15);
    --shadow-gold-strong: 0 0 40px rgba(255, 215, 0, 0.25);

    /* Spacing */
    --container-max: 1280px;
    --header-height: 80px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    background-image:
        radial-gradient(ellipse at 20% 0%, rgba(124, 77, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        var(--gradient-dark);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

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

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-normal);
}

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

@media (max-width: 768px) {
    .wrappers {
        padding: 0 16px;
    }
}

/* ===== HEADER ===== */
:root {
    /* Primary Colors */
    --bg-primary: #0a0e1a;
    --bg-secondary: #121829;
    --bg-tertiary: #1a2133;
    --bg-card: rgba(26, 33, 51, 0.8);
    --bg-glass: rgba(18, 24, 41, 0.7);

    /* Accent Colors */
    --accent-gold: #ffd700;
    --accent-gold-light: #ffed4a;
    --accent-gold-dark: #b8860b;
    --accent-red: #ff4757;
    --accent-red-light: #ff6b7a;
    --accent-orange: #ff6b35;
    --accent-purple: #7c4dff;
    --accent-cyan: #00d4ff;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffb800 50%, #ff9500 100%);
    --gradient-red: linear-gradient(135deg, #ff4757 0%, #ff6b35 100%);
    --gradient-purple: linear-gradient(135deg, #7c4dff 0%, #536dfe 100%);
    --gradient-dark: linear-gradient(180deg, #0a0e1a 0%, #121829 50%, #1a2133 100%);
    --gradient-card: linear-gradient(145deg, rgba(26, 33, 51, 0.9), rgba(18, 24, 41, 0.95));
    --gradient-shine: linear-gradient(90deg, transparent, rgba(255,215,0,0.1), transparent);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b8c5e0;
    --text-muted: #7a869a;
    --text-gold: #ffd700;

    /* Border Colors */
    --border-gold: rgba(255, 215, 0, 0.3);
    --border-card: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(255, 215, 0, 0.2);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 0 30px rgba(255, 215, 0, 0.15);
    --shadow-gold-strong: 0 0 40px rgba(255, 215, 0, 0.25);

    /* Spacing */
    --container-max: 1280px;
    --header-height: 70px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-card);
    padding: 12px 0;
    height: var(--header-height);
}

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

/* Header Left - Logo */
.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-left img {
    max-height: 45px;
    width: auto;
    object-fit: contain;
}

.header-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-primary);
    text-transform: lowercase;
    letter-spacing: -0.5px;
}

.header-title span {
    color: var(--text-gold);
}

/* Header Right - Navigation */
.header-right {
    display: flex;
    align-items: center;
}

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

.header-nav li a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-normal);
    position: relative;
}

.header-nav li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-normal);
}

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

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

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-normal);
}

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

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

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

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-secondary);
    padding: 24px;
    overflow-y: auto;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-nav.active {
    transform: translateX(0);
}

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

.mobile-nav li a {
    display: block;
    padding: 16px 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
}

.mobile-nav li a:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--text-gold);
}

/* Overlay for mobile menu */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Desktop responsive */
@media (min-width: 769px) {
    header {
        padding: 16px 0;
    }
    .header-left img {
        max-height: 55px;
    }
    .header-title {
        font-size: 1.25rem;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    header {
        padding: 10px 0;
        height: 60px;
    }

    header .wrappers {
        gap: 16px;
    }

    .header-left img {
        max-height: 38px;
    }

    .header-title {
        font-size: 0.875rem;
    }

    .header-right .header-nav {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    .mobile-overlay {
        display: block;
    }

    .first-block {
        padding-top: 90px;
        padding-bottom: 40px;
    }
}

/* ===== FIRST SCREEN / HERO ===== */
.first-block {
    padding-top: calc(var(--header-height) + 50px);
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.first-block::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
    pointer-events: none;
}

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

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

.first-screen_content h1 {
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, var(--text-gold) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% auto;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}

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

.table-head_left {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.table-head_left p {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition-normal);
}

.table-head_left p:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.table-head_left p::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .first-block {
        padding-top: calc(var(--header-height) + 24px);
        padding-bottom: 40px;
    }

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

    .table-head_left p {
        justify-content: center;
    }
}

/* ===== TABLE BLOCK ===== */
.table-block {
    padding: 40px 0;
    position: relative;
}

.table-wrappers {
    padding: 0;
}

.table {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 950px;
    margin: 0 auto;
}

/* Table Row Background Wrapper */
.table_row_bg {
    position: relative;
    transition: var(--transition-normal);
}

.table_row_bg:hover {
    background: rgba(255, 215, 0, 0.03);
}

/* Main Table Row */
.table_row {
    display: grid;
    grid-template-columns: 50px minmax(200px, 1fr) 200px 180px 140px;
    gap: 16px;
    padding: 20px 24px;
    align-items: center;
    transition: var(--transition-normal);
    position: relative;
}

.table_row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-card);
}

.table_row:first-child::before {
    display: none;
}

.table_row.table_row_title {
    background: rgba(255, 215, 0, 0.05);
    border-bottom: 1px solid var(--border-gold);
}

.table_row.table_row_title .table_title p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gold);
}

/* Review Row */
.review_row {
    display: grid;
    grid-template-columns: 50px minmax(200px, 1fr) 200px 180px 140px;
    gap: 16px;
    padding: 20px 24px;
    align-items: center;
    position: relative;
}

.triangle {
    position: relative;
}

/* Site Number Column */
.table_col_site_number {
    display: flex;
    align-items: center;
    justify-content: center;
}

.table_col_site_number span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--accent-gold);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

/* Site Review Column */
.table_col-site_review {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    padding-left: 0;
}

.number {
    position: absolute;
    left: 0;
    display: none;
}

#triangle_left {
    display: none;
}

/* Site Logo */
.table_col-site_logo {
    width: 120px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.table_col-site_review a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition-normal);
}

.table_col-site_review a:hover {
    transform: scale(1.02);
}

/* Bonus Column */
.table_col-bonus {
    text-align: center;
}

.bonus_row a {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-decoration: none;
    transition: var(--transition-normal);
}

.bonus_row a:hover {
    opacity: 0.9;
}

.bonus-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
}

.bonus-title_top {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-gold);
}

.bonus-title_center {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.bonus-title_bottom {
    font-size: 0.813rem;
    color: var(--text-secondary);
}

/* Button Column */
.table_col-btn {
    display: flex;
    justify-content: center;
}

.table_col-btn .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-gold);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.table_col-btn .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition-slow);
}

.table_col-btn .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-strong);
}

.table_col-btn .btn:hover::before {
    left: 100%;
}

.table_col-btn .btn:active {
    transform: translateY(0);
}

/* Rating Column */
.table_col-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.table-score_block {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex_alc {
    display: flex;
    align-items: center;
}

.table-score {
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-score__value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--text-gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    margin: 0;
}

/* Table Rating Text */
.table-rating {
    text-align: center;
}

.table-rating p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

/* Link Params */
.link-params {
    cursor: pointer;
}

/* Button Link Params */
.btn.link-params {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-gold);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn.link-params::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition-slow);
}

.btn.link-params:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-strong);
}

.btn.link-params:hover::before {
    left: 100%;
}

.btn.link-params:active {
    transform: translateY(0);
}

/* All Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.938rem;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-gold);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition-slow);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-strong);
}

.btn:hover::before {
    left: 100%;
}

.btn:active {
    transform: translateY(0);
}

/* Legacy classes support */
.table_col-number {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--accent-gold);
}

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

.table-site {
    display: flex;
    align-items: center;
    gap: 16px;
}

.table-site img {
    max-width: 120px;
    max-height: 50px;
    object-fit: contain;
}

.table-site_info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.table-site_name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
}

.table-site_flag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    width: fit-content;
}

.table-bonus_top {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-gold);
    margin-bottom: 4px;
}

.table-bonus_bottom {
    font-size: 0.813rem;
    color: var(--text-secondary);
}

.table_col-btn {
    display: flex;
    justify-content: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.938rem;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition-slow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-strong);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(0);
}

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

.table-rating_score {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.table-rating_value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--text-gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.table-rating_stars {
    display: flex;
    gap: 2px;
    color: var(--accent-gold);
    font-size: 14px;
}

.table-rating_votes {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Mobile Table */
@media (max-width: 1024px) {
    .table_row,
    .review_row {
        grid-template-columns: 40px minmax(160px, 1fr) 140px;
        gap: 12px;
        padding: 16px;
    }

    .table_col-btn,
    .table_col-rating {
        grid-column: 2 / -1;
    }

    .table_title {
        font-size: 0.75rem !important;
    }

    .table_col_site_number {
        display: none;
    }

    .table_col-site_review {
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .table {
        border-radius: var(--radius-md);
    }

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

    .table_col_site_number,
    .table_col-number {
        display: none;
    }

    .table_col-site {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .table-site {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .table-site img {
        max-width: 100px;
    }

    .table-site_info {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px;
    }

    .table-site_name {
        font-size: 1rem;
    }

    .table_col-site_review {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding-left: 0;
    }

    .table_col-site_logo {
        width: 100px;
        height: 42px;
    }

    .bonus-title_top {
        font-size: 0.875rem;
    }

    .bonus-title_center {
        font-size: 1rem;
    }

    .bonus-title_bottom {
        font-size: 0.75rem;
    }

    .table_col-btn .btn,
    .btn-primary {
        padding: 12px 20px;
        font-size: 0.813rem;
    }

    .table-score__value {
        font-size: 1.5rem;
    }

    .table-row_title,
    .table_row_title {
        display: none;
    }
}

/* ===== FAQ BLOCK ===== */
.faq-block {
    padding: 60px 0;
}

.faq-block > .wrappers > h2 {
    text-align: center;
    margin-bottom: 40px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-block_container {
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.faq-block_container:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-md), var(--shadow-gold);
}

.faq-block_title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.faq-block_content {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Responsibly Block */
.responsibly-block {
    padding: 40px 0 60px;
}

.responsibly-block .faq-block_container {
    background: linear-gradient(145deg, rgba(255, 71, 87, 0.1), rgba(255, 107, 53, 0.05));
    border-color: rgba(255, 71, 87, 0.3);
    text-align: center;
}

.responsibly-block .faq-block_container:hover {
    border-color: var(--accent-red);
    box-shadow: 0 0 30px rgba(255, 71, 87, 0.2);
}

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

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

/* ===== FOOTER ===== */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-card);
    padding: 40px 0 24px;
    margin-top: 60px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0.5;
}

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

.footer-nav-wrap {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 20px 32px;
    margin-bottom: 24px;
}

.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: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.938rem;
    color: var(--text-secondary);
    transition: var(--transition-normal);
    position: relative;
}

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

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

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

.footer-widget {
    text-align: center;
    margin-bottom: 24px;
}

.footer-widget p {
    color: var(--text-muted);
    font-size: 0.813rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-widget p strong {
    color: var(--text-primary);
}

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

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

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

.footer-logos img {
    max-height: 40px;
    width: auto;
}

.footer-copy {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    padding-top: 24px;
    border-top: 1px solid var(--border-card);
}

@media (max-width: 768px) {
    .site-footer {
        padding: 32px 0 20px;
        margin-top: 40px;
    }

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

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

    .footer-logos {
        gap: 16px;
    }

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

/* ===== CUSTOM HEADING (for terms page) ===== */
.custom-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-gold);
    margin: 32px 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-gold);
}

.faq-block p {
    margin-bottom: 16px;
}

/* ===== OVERLAY & POPUP ===== */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999;
}

.popup {
    width: 100%;
    max-width: 500px;
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 32px;
    color: var(--text-primary);
    box-shadow: var(--shadow-lg), var(--shadow-gold-strong);
    animation: popupFadeIn 0.3s ease;
}

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

.popup .header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 20px;
}

.popup .header img {
    width: 32px;
    height: 24px;
    object-fit: cover;
    border-radius: 4px;
}

.popup .divider {
    height: 1px;
    background: var(--border-card);
    margin: 20px 0;
}

.popup .text {
    color: var(--text-secondary);
    font-size: 0.938rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.popup .btn-primary {
    width: 100%;
}

.popup .btn-link {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.875rem;
    cursor: pointer;
    padding: 8px;
    transition: var(--transition-normal);
}

.popup .btn-link:hover {
    color: var(--text-primary);
}

.warning-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-red);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    font-size: 1.25rem;
}

.hidden {
    display: none !important;
}

@media (max-width: 480px) {
    .popup {
        padding: 24px;
        border-radius: var(--radius-md);
    }
}

/* ===== EXIT MODAL ===== */
.wrap-exit-modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 14, 26, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9000;
}

.exit-modal {
    width: 100%;
    max-width: 420px;
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-lg), var(--shadow-gold-strong);
}

.exit-modal__btn-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 2px solid var(--border-card);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.exit-modal__btn-close::before {
    content: '×';
    font-size: 24px;
    line-height: 1;
    font-weight: 300;
}

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

.exit-modal__btn-close:active {
    transform: rotate(90deg) scale(0.95);
}

.popup-figure img {
    max-width: 150px;
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

.popup-bonus {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-gold);
    margin-bottom: 8px;
}

.popup-money-bonus {
    display: block;
    font-size: 2rem;
}

.money-bonus {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.exit-modal .btn-primary {
    width: 100%;
    padding: 16px 24px;
}

.popup-link-tc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 16px;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.text-gold {
    color: var(--text-gold);
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

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

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-gold);
    border-radius: 5px;
}

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

/* ===== SELECTION ===== */
::selection {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

::-moz-selection {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

/* ===== CONTENT PAGE STYLES ===== */
.content-page {
    max-width: 800px;
    margin: 0 auto;
}

.content-page p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

/* Legal Sites List */
.legal-sites-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.legal-sites-list li {
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-left: 3px solid var(--accent-gold);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition-normal);
}

.legal-sites-list li:hover {
    border-color: var(--border-gold);
    transform: translateX(4px);
}

/* Tips List */
.tips-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.tips-list li {
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: var(--transition-normal);
}

.tips-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.tips-list li:hover {
    border-color: var(--border-gold);
    background: rgba(255, 215, 0, 0.05);
}

.tips-list li strong {
    color: var(--text-primary);
}

/* Rights List */
.rights-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.rights-list li {
    padding: 14px 20px;
    background: linear-gradient(145deg, var(--bg-card), rgba(124, 77, 255, 0.05));
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    color: var(--text-secondary);
    transition: var(--transition-normal);
}

.rights-list li:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 0 20px rgba(124, 77, 255, 0.15);
}

.rights-list li strong {
    color: var(--accent-purple);
}

/* Custom Subheading */
.custom-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-gold);
    margin: 32px 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-gold);
}

.custom-heading:first-of-type {
    margin-top: 0;
}

/* Responsive Lists */
@media (max-width: 768px) {
    .legal-sites-list li,
    .tips-list li,
    .rights-list li {
        padding: 12px 16px;
    }

    .custom-heading {
        font-size: 1.25rem;
    }
}
