:root {
:root {
    --luxury-black: #000000;
    --luxury-black: #000000;
    --luxury-dark: #1A1A1A;
    --luxury-surface: #2A2A2A;
    --luxury-gold: #F59E0B;
    --luxury-gold-light: #FBBF24;
    --luxury-cream: #FEF7ED;
    --luxury-gray: #9CA3AF;
    --luxury-accent: #374151;
    
    --golden-glow: 0 0 25px rgba(245, 158, 11, 0.8);
    --golden-glow: 0 0 25px rgba(245, 158, 11, 0.8);
    --cream-glow: 0 0 20px rgba(254, 247, 237, 0.6);
    --dark-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
    
    --space-xs: clamp(0.25rem, 1vw, 0.5rem);
    --space-xs: clamp(0.25rem, 1vw, 0.5rem);
    --space-sm: clamp(0.5rem, 2vw, 1rem);
    --space-md: clamp(1rem, 3vw, 1.5rem);
    --space-lg: clamp(1.5rem, 4vw, 2rem);
    --space-xl: clamp(2rem, 5vw, 3rem);
    --space-2xl: clamp(3rem, 6vw, 4rem);
    
    --font-luxury: 'Times New Roman', 'Georgia', serif;
    --font-luxury: 'Times New Roman', 'Georgia', serif;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    --transition-fast: 0.2s ease;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-luxury: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    --radius-sm: 6px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-luxury: 8px;
}

* {
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
}

html {
    overflow-x: hidden !important;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-luxury);
    font-weight: var(--font-weight-regular);
    background: var(--luxury-black);
    color: var(--luxury-cream);
    line-height: 1.7;
    overflow-x: hidden !important;
    max-width: 100% !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    min-height: 100vh;
}

.luxury-bg {
.luxury-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        var(--luxury-black) 0%, 
        var(--luxury-dark) 50%, 
        var(--luxury-surface) 100%);
    z-index: -3;
}

.golden-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, var(--luxury-gold), transparent),
        radial-gradient(2px 2px at 40px 70px, var(--luxury-gold-light), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--luxury-cream), transparent);
    background-repeat: repeat;
    background-size: 100px 80px;
    opacity: 0.1;
    z-index: -2;
    animation: sparkle 20s linear infinite;
}

@keyframes sparkle {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.elegant-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F59E0B' fill-opacity='0.05'%3E%3Cpath d='M30 30c0-6.627-5.373-12-12-12s-12 5.373-12 12 5.373 12 12 12 12-5.373 12-12zm12-12c6.627 0 12 5.373 12 12s-5.373 12-12 12-12-5.373-12-12 5.373-12 12-12z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-luxury);
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    margin-bottom: var(--space-sm);
}

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

p {
    margin-bottom: var(--space-md);
    word-wrap: break-word;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all var(--transition-smooth);
}

.luxury-text {
.luxury-text {
    background: linear-gradient(45deg, var(--luxury-gold), var(--luxury-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--golden-glow);
    font-family: var(--font-luxury);
    letter-spacing: 2px;
}

.golden-highlight {
    color: var(--luxury-gold);
    text-shadow: var(--golden-glow);
    font-weight: var(--font-weight-bold);
}

.container {
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    width: 100%;
    display: flex;
    flex-direction: column;
}

header {
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: var(--dark-shadow);
    z-index: 1000;
    transition: all var(--transition-smooth);
    border-bottom: 2px solid rgba(245, 158, 11, 0.3);
}

header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 4px 40px rgba(245, 158, 11, 0.4);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}

.logo {
    font-size: clamp(1.75rem, 4vw, 2rem);
    font-weight: var(--font-weight-bold);
    color: var(--luxury-gold);
    font-family: var(--font-luxury);
    letter-spacing: 2px;
    transition: all var(--transition-smooth);
    text-shadow: var(--golden-glow);
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 30px rgba(245, 158, 11, 1);
}

.burger {
.burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
            z-index: 1600;
}

.burger span {
    display: block;
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, var(--luxury-gold), var(--luxury-gold-light));
    transition: all var(--transition-smooth);
    border-radius: 2px;
    box-shadow: var(--golden-glow);
}

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

.burger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

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

nav ul {
nav ul {
    list-style: none;
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

nav a {
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    font-family: var(--font-luxury);
    position: relative;
    padding: var(--space-xs) 0;
    overflow: hidden;
    transition: all var(--transition-smooth);
    letter-spacing: 1px;
    color: var(--luxury-cream);
    text-decoration: none;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--luxury-gold), var(--luxury-gold-light));
    transform: translateX(-100%);
    transition: transform var(--transition-smooth);
}

nav a:hover {
    color: var(--luxury-gold);
    text-shadow: var(--golden-glow);
}

nav a:hover::after {
    transform: translateX(0);
}

@media (max-width: 899px) {
@media (max-width: 899px) {
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(85%, 400px);
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(15px);
        transition: right var(--transition-luxury);
        padding: var(--space-2xl) var(--space-lg);
        overflow-y: auto;
        box-shadow: -8px 0 25px rgba(245, 158, 11, 0.3);
        border-left: 2px solid rgba(245, 158, 11, 0.3);
        z-index: 1500;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: var(--space-lg);
        align-items: flex-start;
    }
    
    nav a {
        font-size: 1.2rem;
        color: var(--luxury-cream) !important;
        display: block;
        padding: var(--space-md) var(--space-sm) !important;
        border-bottom: 1px solid rgba(245, 158, 11, 0.2);
        text-decoration: none;
        position: relative;
        z-index: 10;
    }
    
    nav a:hover {
        background: rgba(245, 158, 11, 0.1);
        color: var(--luxury-gold) !important;
        text-shadow: var(--golden-glow);
        border-radius: var(--radius-sm);
    }
}

@media (min-width: 900px) {
@media (min-width: 900px) {
    .burger {
        display: none !important;
    }
    
    nav {
        position: static !important;
        right: auto !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        border: none !important;
    }
    
    nav ul {
        flex-direction: row !important;
        gap: var(--space-lg) !important;
        align-items: center !important;
    }
    
    nav a {
        font-size: 1rem !important;
    }
}

main {
main {
    overflow-x: hidden !important;
}

.hero-section {
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: var(--space-2xl) 0;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: luxuryFadeIn 1.2s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.hero-title {
    margin-bottom: var(--space-md);
    animation: goldenPulse 4s ease-in-out infinite alternate;
}

@keyframes goldenPulse {
    from { 
        text-shadow: var(--golden-glow);
    }
    to { 
        text-shadow: 0 0 40px rgba(245, 158, 11, 1), 0 0 80px rgba(251, 191, 36, 0.5);
    }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--luxury-gray);
    font-weight: var(--font-weight-regular);
    margin-bottom: var(--space-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-luxury);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    font-family: var(--font-luxury);
    transition: all var(--transition-smooth);
}

.feature-badge.gold {
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: var(--golden-glow);
}

.feature-badge.cream {
    border-color: rgba(254, 247, 237, 0.3);
    box-shadow: var(--cream-glow);
}

.feature-badge:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    font-size: 1.3rem;
}

.hero-visual {
.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.luxury-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(25px);
    opacity: 0.3;
    animation: luxuryFloat 20s linear infinite;
}

.orb-1 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--luxury-gold), transparent);
    top: 15%;
    right: 10%;
}

.orb-2 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, var(--luxury-cream), transparent);
    bottom: 25%;
    left: 15%;
    animation-delay: 10s;
}

@keyframes luxuryFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

.luxury-icon {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.5;
    animation: iconFloat 8s ease-in-out infinite;
}

.icon-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.icon-2 {
    top: 70%;
    right: 20%;
    animation-delay: 3s;
}

.icon-3 {
    bottom: 15%;
    left: 50%;
    animation-delay: 6s;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

.btn {
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    font-weight: var(--font-weight-semibold);
    font-size: 1rem;
    font-family: var(--font-luxury);
    transition: all var(--transition-smooth);
    cursor: pointer;
    border: none;
    border-radius: var(--radius-luxury);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    text-transform: capitalize;
    letter-spacing: 1px;
    min-width: 200px;
}

.luxury-btn.primary {
    background: linear-gradient(45deg, var(--luxury-gold), var(--luxury-gold-light));
    color: var(--luxury-black);
    box-shadow: var(--golden-glow);
    border: 2px solid var(--luxury-gold);
    font-weight: var(--font-weight-bold);
}

.luxury-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
    background: linear-gradient(45deg, var(--luxury-gold-light), var(--luxury-gold));
}

.luxury-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    color: var(--luxury-cream);
    border: 2px solid rgba(254, 247, 237, 0.5);
    box-shadow: var(--cream-glow);
}

.luxury-btn.secondary:hover {
    background: rgba(254, 247, 237, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(254, 247, 237, 0.4);
}

.btn-icon,
.btn-arrow {
    transition: transform var(--transition-smooth);
}

.btn:hover .btn-icon,
.btn:hover .btn-arrow {
    transform: translateX(4px);
}

.section-header {
.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-title {
    margin-bottom: var(--space-sm);
    font-family: var(--font-luxury);
}

.section-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--luxury-gray);
    font-weight: var(--font-weight-regular);
    max-width: 700px;
    margin: 0 auto;
    font-family: var(--font-luxury);
    line-height: 1.6;
}

.ranking-section {
.ranking-section {
    padding: var(--space-2xl) 0;
    background: rgba(42, 42, 42, 0.3);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.ranking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
}

.bookmaker-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
}

.bookmaker-grid {
.bookmaker-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-smooth);
    flex: 1;
    min-width: 400px;
    max-width: 500px;
}

.luxury-border {
    background: var(--luxury-surface);
    padding: 3px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

.bookmaker-card:hover {
    transform: translateY(-12px);
}

.rank-1:hover .luxury-border {
    border-color: var(--luxury-gold);
    box-shadow: var(--golden-glow);
}

.rank-2:hover .luxury-border {
    border-color: var(--luxury-cream);
    box-shadow: var(--cream-glow);
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    opacity: 0;
    filter: blur(120px);
    transition: opacity var(--transition-smooth);
    z-index: -1;
}

.gold-glow {
    background: radial-gradient(circle, var(--luxury-gold), transparent);
}

.cream-glow {
    background: radial-gradient(circle, var(--luxury-cream), transparent);
}

.bookmaker-card:hover .card-glow {
    opacity: 0.2;
}

.card-rank {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: 1.4rem;
    z-index: 10;
    font-family: var(--font-luxury);
}

.rank-gold {
    background: linear-gradient(45deg, var(--luxury-gold), var(--luxury-gold-light));
    color: var(--luxury-black);
    box-shadow: var(--golden-glow);
}

.rank-silver {
    background: rgba(254, 247, 237, 0.9);
    color: var(--luxury-black);
    box-shadow: var(--cream-glow);
}

.card-content {
    background: var(--luxury-surface);
    padding: var(--space-lg);
    position: relative;
    border-radius: var(--radius-lg);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
    padding-right: 70px;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.bookmaker-logo {
    width: 140px;
    height: auto;
    object-fit: contain;
    filter: brightness(1.2);
}

.rating-box {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.luxury-stars {
    color: var(--luxury-gold);
    font-size: 1.4rem;
    letter-spacing: 3px;
    text-shadow: var(--golden-glow);
}

.luxury-score {
    font-size: 1.7rem;
    font-weight: var(--font-weight-bold);
    color: var(--luxury-cream);
    text-shadow: var(--cream-glow);
    font-family: var(--font-luxury);
}

.card-body {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.bookmaker-name {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    font-family: var(--font-luxury);
}

.luxury-bonus {
    text-align: center;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(245, 158, 11, 0.3);
    backdrop-filter: blur(15px);
}

.bonus-label {
    font-size: 1rem;
    color: var(--luxury-gray);
    margin-bottom: var(--space-xs);
    font-family: var(--font-luxury);
}

.bonus-amount {
    font-size: 2.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--luxury-gold);
    text-shadow: var(--golden-glow);
    font-family: var(--font-luxury);
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.features-list li {
    padding-left: var(--space-md);
    color: var(--luxury-gray);
    position: relative;
    font-family: var(--font-luxury);
    line-height: 1.5;
}

.luxury-review {
    font-style: italic;
    color: var(--luxury-gray);
    background: rgba(255, 255, 255, 0.05);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--luxury-gold);
    font-family: var(--font-luxury);
    line-height: 1.6;
}

.btn-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    width: 100%;
    padding: var(--space-md);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-luxury);
    transition: all var(--transition-smooth);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    font-family: var(--font-luxury);
    text-transform: capitalize;
    letter-spacing: 1px;
}

.article-section {
.article-section {
    padding: var(--space-2xl) 0;
}

.main-article {
    max-width: 900px;
    margin: 0 auto;
}

.luxury-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-smooth);
    position: relative;
}

.luxury-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: var(--golden-glow);
}

.article-title {
    text-align: center;
    margin-bottom: var(--space-md);
    font-family: var(--font-luxury);
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    justify-content: center;
    font-size: 1rem;
    color: var(--luxury-gray);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-luxury);
    text-align: center;
}

.expertise {
    color: var(--luxury-gold);
    text-shadow: var(--golden-glow);
    font-weight: var(--font-weight-semibold);
}

.article-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.article-content h3 {
    color: var(--luxury-cream);
    margin-top: var(--space-lg);
    font-family: var(--font-luxury);
}

.article-intro {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--luxury-cream);
    font-family: var(--font-luxury);
}

.expert-tip {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.luxury-border {
    border: 3px solid transparent;
    background: linear-gradient(var(--luxury-surface), var(--luxury-surface)) padding-box,
                linear-gradient(45deg, var(--luxury-gold), var(--luxury-gold-light)) border-box;
}

.tip-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.tip-icon {
    font-size: 1.8rem;
    color: var(--luxury-gold);
    text-shadow: var(--golden-glow);
}

.tip-title {
    font-weight: var(--font-weight-bold);
    color: var(--luxury-cream);
    font-family: var(--font-luxury);
}

.stats-section {
.stats-section {
    padding: var(--space-2xl) 0;
    background: rgba(26, 26, 26, 0.5);
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.stat-card {
    text-align: center;
    min-width: 250px;
    flex: 1;
}

.stat-icon {
    font-size: 4rem;
    margin-bottom: var(--space-md);
    display: block;
    animation: iconGlow 3s ease-in-out infinite alternate;
}

@keyframes iconGlow {
    from { filter: drop-shadow(0 0 10px var(--luxury-gold)); }
    to { filter: drop-shadow(0 0 25px var(--luxury-gold-light)); }
}

.stat-number {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    color: var(--luxury-gold);
    text-shadow: var(--golden-glow);
    font-family: var(--font-luxury);
    margin-bottom: var(--space-sm);
}

.stat-label {
    color: var(--luxury-gray);
    font-size: 1.1rem;
    font-family: var(--font-luxury);
}

.disclaimer-section {
.disclaimer-section {
    padding: var(--space-lg) 0;
    background: rgba(42, 42, 42, 0.3);
}

.disclaimer-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-title {
    font-size: 1.4rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-sm);
    color: var(--luxury-gold);
    text-shadow: var(--golden-glow);
    font-family: var(--font-luxury);
}

.disclaimer-content p {
    color: var(--luxury-gray);
    margin-bottom: var(--space-md);
    font-family: var(--font-luxury);
    line-height: 1.6;
}

.help-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    align-items: center;
}

.help-links a {
    color: var(--luxury-cream);
    text-decoration: underline;
    transition: all var(--transition-fast);
}

.help-links a:hover {
    color: var(--luxury-gold);
    text-shadow: var(--golden-glow);
}

.separator {
    color: var(--luxury-gray);
}

.help-phone {
    font-weight: var(--font-weight-semibold);
    color: var(--luxury-gold);
    text-shadow: var(--golden-glow);
    font-family: var(--font-luxury);
}

.footer-section {
.footer-section {
    background: var(--luxury-surface);
    color: var(--luxury-cream);
    padding: var(--space-xl) 0;
    border-top: 2px solid rgba(245, 158, 11, 0.3);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    justify-content: center;
    margin-bottom: var(--space-xl);
}

.footer-nav a {
    color: var(--luxury-gray);
    font-size: 1rem;
    transition: all var(--transition-fast);
    font-family: var(--font-luxury);
    text-align: center;
}

.footer-nav a:hover {
    color: var(--luxury-gold);
    text-shadow: var(--golden-glow);
    transform: translateY(-2px);
}

.footer-logos {
.footer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto var(--space-xl);
    padding: 0 var(--space-md);
}

.luxury-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    font-weight: var(--font-weight-bold);
    border-radius: 50%;
    font-size: 1.4rem;
    background: linear-gradient(45deg, var(--luxury-gold), var(--luxury-gold-light));
    color: var(--luxury-black);
    box-shadow: var(--golden-glow);
    font-family: var(--font-luxury);
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
    font-family: var(--font-luxury);
}

.popup-overlay {
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(15px);
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    padding: var(--space-2xl);
    max-width: 90%;
    width: 550px;
    text-align: center;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.luxury-popup {
    background: var(--luxury-surface);
    border: 3px solid transparent;
    background: linear-gradient(var(--luxury-surface), var(--luxury-surface)) padding-box,
                linear-gradient(45deg, var(--luxury-gold), var(--luxury-gold-light)) border-box;
}

.popup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, var(--luxury-gold), transparent);
    transform: translate(-50%, -50%);
    opacity: 0.15;
    filter: blur(120px);
    z-index: -1;
}

.popup-content h2 {
    margin-bottom: var(--space-md);
    font-weight: var(--font-weight-bold);
    color: var(--luxury-gold);
    text-shadow: var(--golden-glow);
    font-family: var(--font-luxury);
}

.popup-info {
    color: var(--luxury-gray);
    font-size: 1rem;
    margin-bottom: var(--space-lg);
    font-family: var(--font-luxury);
}

.popup-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
}

.cookie-consent {
.cookie-consent {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    max-width: 450px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: none;
    z-index: 1500;
    box-shadow: var(--golden-glow);
}

.cookie-consent.active {
    display: block;
    animation: luxurySlideIn 0.5s ease;
}

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

.cookie-content p {
    margin-bottom: var(--space-md);
    font-size: 1rem;
    color: var(--luxury-gray);
    font-family: var(--font-luxury);
}

.cookie-content a {
    color: var(--luxury-gold);
    text-shadow: var(--golden-glow);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: var(--space-sm);
}

.btn.small {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.9rem;
    min-width: auto;
}

@media (max-width: 768px) {
@media (max-width: 768px) {
    .bookmaker-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .bookmaker-card {
        min-width: 0;
        width: 100%;
        max-width: 500px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        padding-right: var(--space-lg);
    }
    
    .rating-box {
        text-align: center;
    }
    
    .article-meta {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .stats-grid {
        flex-direction: column;
    }
    
    .stat-card {
        min-width: 0;
    }
    
    .cookie-consent {
        bottom: 0;
        right: 0;
        left: 0;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        max-width: 100%;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .popup-buttons {
        flex-direction: column;
    }
    
    .hero-features {
        flex-direction: column;
    }
    
    .feature-badge {
        justify-content: center;
    }
}

html, body {
html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
}

main {
    overflow-x: hidden !important;
}

section {
    overflow-x: hidden !important;
    max-width: 100% !important;
}

:focus-visible {
:focus-visible {
    outline: 3px solid var(--luxury-gold);
    outline-offset: 2px;
}

@keyframes luxuryLoad {
@keyframes luxuryLoad {
    0% { 
        background-position: -200% 0; 
        transform: translateX(-100px);
    }
    100% { 
        background-position: 200% 0; 
        transform: translateX(0);
    }
}

.loading {
    background: linear-gradient(90deg, 
        var(--luxury-surface) 25%, 
        rgba(245, 158, 11, 0.1) 50%, 
        var(--luxury-surface) 75%);
    background-size: 200% 100%;
    animation: luxuryLoad 2s infinite;
}

.footer-section img,
   
.footer-logos img,
.footer-section img,
.footer-section .footer-logos img,
.footer-logos img,
.footer-logos a img,
footer img,
footer .footer-logos img,
footer .footer-logos a img,
img[src*="gambleaware"],
img[src*="gamecare"], 
img[src*="gamblingtherapy"],
img[src*="logo-anj"],
img[src*="logo-juegos"],
img[src*="logo-mediateurdesjeuxenligne"],
img[alt*="GambleAware"],
img[alt*="GamCare"], 
img[alt*="Gambling Therapy"],
img[alt*="ANJ"],
img[alt*="Joueurs Info Service"],
img[alt*="Médiateur"] {
    height: 45px !important;
    width: auto !important;
    object-fit: contain !important;
    filter: brightness(0) invert(1) !important;
    opacity: 0.8 !important;
    transition: all 0.4s ease !important;
    background: transparent !important;
    mix-blend-mode: normal !important;
}

.footer-logos img:hover,
.footer-section img:hover,
.footer-section .footer-logos img:hover,
.footer-logos img:hover,
.footer-logos a img:hover,
footer img:hover,
footer .footer-logos img:hover,
footer .footer-logos a img:hover,
img[src*="gambleaware"]:hover,
img[src*="gamecare"]:hover, 
img[src*="gamblingtherapy"]:hover,
img[src*="logo-anj"]:hover,
img[src*="logo-juegos"]:hover,
img[src*="logo-mediateurdesjeuxenligne"]:hover,
img[alt*="GambleAware"]:hover,
img[alt*="GamCare"]:hover, 
img[alt*="Gambling Therapy"]:hover,
img[alt*="ANJ"]:hover,
img[alt*="Joueurs Info Service"]:hover,
img[alt*="Médiateur"]:hover {
    opacity: 1 !important;
    transform: scale(1.1) !important;
    filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(245, 158, 11, 0.8)) !important;
}

/* ===========================
   FINAL OVERRIDE: Ultimate logo fix
   This CSS rule has the highest specificity
   =========================== */
body .footer-logos img,
body .footer-logos a img,
body footer img,
body .footer-section img {
    filter: brightness(0) invert(1) !important;
    opacity: 0.8 !important;
    -webkit-filter: brightness(0) invert(1) !important;
    -moz-filter: brightness(0) invert(1) !important;
    -ms-filter: brightness(0) invert(1) !important;
}

body .footer-logos img:hover,
body .footer-logos a img:hover,
body footer img:hover,
body .footer-section img:hover {
    opacity: 1 !important;
    filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(245, 158, 11, 0.8)) !important;
    -webkit-filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(245, 158, 11, 0.8)) !important;
}