/* Paris Elite - Premium Bookmaker Aggregator */

/* Variables */
:root {
    --gold: #d4af37;
    --light-gold: #f4e5b9;
    --black: #0a0a0a;
    --dark: #1a1a1a;
    --gray: #e0e0e0;
    --medium-gray: #999;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--black);
    color: var(--gray);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
header {
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gold);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--gold);
    text-decoration: none;
}

/* BURGER MENU - SIMPLE ET FONCTIONNEL */
.burger {
    display: none;
    width: 30px;
    height: 25px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 0;
}

.burger span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s ease;
}

.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 11px; }
.burger span:nth-child(3) { bottom: 0; }

/* Burger Animation */
.burger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(11px);
}

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

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

/* Navigation Desktop */
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav a {
    color: var(--gray);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    background: rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

nav a:hover {
    background: var(--gold);
    color: var(--black);
}

/* Main Content */
main {
    margin-top: 80px;
}

section {
    padding: 80px 0;
}

/* Typography */
h1, h2, h3 {
    margin-bottom: 20px;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    color: var(--gold);
    margin-bottom: 50px;
}

/* Buttons */
.btn-gold, .btn-silver {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--black);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-silver {
    background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
    color: var(--black);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: var(--gray);
    border: 1px solid var(--medium-gray);
}

/* Hero Section */
.hero {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1), transparent);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--medium-gray);
    margin-bottom: 30px;
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.card h3 {
    color: var(--gold);
    margin-bottom: 15px;
}

/* Bookmakers Grid */
.bookmakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.bookmaker-card {
    background: rgba(26, 26, 26, 0.9);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bookmaker-card.gold {
    border: 3px solid var(--gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.bookmaker-card.silver {
    border: 2px solid #c0c0c0;
}

.rank {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.bookmaker-logo {
    height: 60px;
    object-fit: contain;
}

.bookmaker-card h3 {
    color: var(--gold);
    font-size: 1.8rem;
}

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

.bonus-label {
    color: var(--medium-gray);
}

.bonus-amount {
    color: var(--light-gold);
    font-size: 1.2rem;
    font-weight: bold;
}

.rating-score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.score {
    font-size: 2rem;
    font-weight: bold;
    color: var(--gold);
}

.stars {
    color: var(--gold);
    font-size: 1.5rem;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 25px;
    background: none;
    border: none;
    color: var(--gray);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 25px 25px;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Disclaimer */
.disclaimer {
    background: rgba(26, 26, 26, 0.5);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    padding: 40px 0;
}

.disclaimer h3 {
    color: var(--gold);
    margin-bottom: 20px;
}

.disclaimer-links {
    margin-top: 20px;
}

.disclaimer-links a {
    color: var(--gold);
    text-decoration: none;
    margin: 0 10px;
}

/* Footer */
footer {
    background: var(--black);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding: 50px 0 30px;
    text-align: center;
}

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

.footer-logos a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer-logos a:hover {
    transform: translateY(-3px);
}

.footer-logos img {
    height: 40px;
    filter: brightness(0) invert(0.7);
    transition: filter 0.3s ease;
}

.footer-logos a:hover img {
    filter: brightness(0) invert(1);
}

.age-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.copyright {
    color: var(--medium-gray);
}

/* Popups */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-content {
    background: var(--dark);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.popup-content h2 {
    color: var(--gold);
    margin-bottom: 20px;
}

.popup-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--dark);
    border: 1px solid var(--gold);
    border-radius: 15px;
    padding: 20px;
    max-width: 400px;
    display: none;
    z-index: 9998;
}

.cookie-consent a {
    color: var(--gold);
}

/* Close button */
.close-menu {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: none;
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-menu:hover {
    background: var(--gold);
    color: var(--black);
    transform: rotate(90deg);
}

/* MOBILE STYLES - CRITICAL */
@media (max-width: 900px) {
    /* Show burger */
    .burger {
        display: block !important;
    }
    
    /* Show close button on mobile */
    .close-menu {
        display: block;
    }
    
    /* Mobile navigation */
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--black);
        border-left: 1px solid var(--gold);
        transition: right 0.3s ease;
        z-index: 999;
        padding-top: 80px;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    nav a {
        display: block;
        padding: 20px 30px;
        border-radius: 0;
        background: transparent;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    nav a:hover {
        background: rgba(212, 175, 55, 0.1);
        padding-left: 40px;
    }
    
    /* Prevent scroll when menu open */
    body.menu-open {
        overflow: hidden;
    }
    
    /* Adjust grid layouts */
    .cards-grid,
    .bookmakers-grid {
        grid-template-columns: 1fr;
    }
    
    .bookmaker-card {
        max-width: 100%;
    }
    
    /* Smaller paddings */
    section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Popup adjustments */
    .popup-buttons {
        flex-direction: column;
    }
    
    .cookie-consent {
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    /* Footer */
    .footer-logos {
        gap: 20px;
    }
    
    .footer-logos img {
        height: 30px;
    }
}