:root {
    --gold: #D4AF37;
    --gold-light: #F5C542;
    --gold-dark: #B8860B;
    --gold-glow: #FFD54A;
    --black: #000000;
    --black-light: #0A0A0A;
    --black-card: #111111;
    --black-hover: #1A1A1A;
    --white: #F8F8F8;
    --red: #D62828;
    --gray: #888888;
    --gray-dark: #333333;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --max-width: 1200px;
    --radius: 12px;
    --transition: .3s ease;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-main);
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.5px;
}

.logo-link img {
    height: 42px;
    width: auto;
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('../images/hero-bg.webp') top right / cover no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background:
        linear-gradient(90deg, #000 0%, #000 38%, rgba(0,0,0,0.85) 50%, rgba(0,0,0,0.3) 72%, transparent 92%),
        linear-gradient(0deg, #000 0%, rgba(0,0,0,0.5) 12%, transparent 35%),
        linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 15%);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 480px;
    padding: 30px 20px 40px 5%;
}

.hero-logo {
    max-width: 220px;
    height: auto;
    margin-bottom: 24px;
    display: block;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    max-width: 520px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 span {
    display: block;
    font-size: 0.38em;
    font-family: var(--font-main);
    font-weight: 500;
    color: rgba(248,248,248,0.8);
    -webkit-text-fill-color: rgba(248,248,248,0.8);
    margin-top: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-text {
    font-size: 0.95rem;
    color: rgba(248,248,248,0.55);
    margin-bottom: 28px;
    max-width: 460px;
    line-height: 1.8;
}

.hero-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(212,175,55,0.06);
    border: 1px solid rgba(212,175,55,0.15);
    padding: 7px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    color: var(--gold-light);
}

.hero-badge i {
    font-size: 0.9rem;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: var(--black);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 6px 30px rgba(212,175,55,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(212,175,55,0.5);
    color: var(--black);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background: rgba(212,175,55,0.1);
    transform: translateY(-2px);
    color: var(--gold-light);
}

/* Section background images */
.section-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.section-bg > .container {
    position: relative;
    z-index: 2;
}
.section-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.82);
    z-index: 1;
}

#jeux       { background-image: url('../images/banner-jeux.webp'); }
#bonus      { background-image: url('../images/banner-bonus.webp'); }
#comparatif { background-image: url('../images/banner-comparatif.webp'); }
#live       { background-image: url('../images/banner-live.webp'); }
#securite   { background-image: url('../images/banner-securite.webp'); }
#paiements  { background-image: url('../images/banner-paiements.webp'); }
#vip        { background-image: url('../images/banner-vip.webp'); }
#gp-score   { background-image: url('../images/banner-score.webp'); }
#panda-vault{ background-image: url('../images/banner-vault.webp'); }
#missions   { background-image: url('../images/banner-missions.webp'); }
#profil-joueur { background-image: url('../images/banner-profil.webp'); }
#avis       { background-image: url('../images/banner-avis.webp'); }
#erreurs    { background-image: url('../images/banner-erreurs.webp'); }
#inscription{ background-image: url('../images/banner-inscription.webp'); }
#faq        { background-image: url('../images/banner-faq.webp'); }

/* Sections */
section {
    padding: 80px 0;
}

section:nth-child(even):not(.section-bg) {
    background: var(--black-light);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 14px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 650px;
    margin: 0 auto;
}

.gold-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    margin: 16px auto 0;
    border-radius: 2px;
}

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

.card {
    background: var(--black-card);
    border: 1px solid rgba(212,175,55,0.1);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

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

.card:hover {
    border-color: rgba(212,175,55,0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,175,55,0.1);
    border-radius: 12px;
    margin-bottom: 18px;
    font-size: 1.4rem;
    color: var(--gold);
}

.card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 10px;
}

.card p {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* Tables */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: var(--black-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(212,175,55,0.15);
}

.info-table thead th {
    background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.08));
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(212,175,55,0.2);
}

.info-table td {
    padding: 13px 20px;
    font-size: 0.92rem;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.info-table tbody tr:hover {
    background: rgba(212,175,55,0.04);
}

.info-table tbody tr:last-child td {
    border-bottom: none;
}

.info-table .label {
    color: var(--gray);
    font-weight: 500;
    width: 40%;
}

.info-table .value {
    color: var(--white);
    font-weight: 400;
}

.info-table .highlight {
    color: var(--gold);
    font-weight: 600;
}

/* Features list */
.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(212,175,55,0.04);
    border-radius: 10px;
    border: 1px solid rgba(212,175,55,0.08);
    transition: all var(--transition);
}

.features-list li:hover {
    border-color: rgba(212,175,55,0.2);
    background: rgba(212,175,55,0.07);
}

.features-list li i {
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.features-list li span {
    color: rgba(248,248,248,0.9);
    font-size: 0.92rem;
}

/* Two columns */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.two-col .col-text h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.two-col .col-text p {
    color: rgba(248,248,248,0.8);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

/* Bonus banner */
.bonus-banner {
    background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.04));
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bonus-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 50%);
    animation: rotateSlow 20s linear infinite;
}

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

.bonus-banner h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold-light);
    margin-bottom: 10px;
    position: relative;
}

.bonus-banner .bonus-amount {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.bonus-banner p {
    color: rgba(248,248,248,0.7);
    font-size: 0.95rem;
    margin-top: 12px;
    position: relative;
}

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    counter-reset: step;
}

.step-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--black);
    font-weight: 800;
    font-size: 1.3rem;
    box-shadow: 0 4px 20px rgba(212,175,55,0.3);
}

.step-item h3 {
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 8px;
}

.step-item p {
    color: var(--gray);
    font-size: 0.88rem;
}

/* Stats */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 28px 16px;
    background: var(--black-card);
    border: 1px solid rgba(212,175,55,0.1);
    border-radius: var(--radius);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.faq-item {
    border: 1px solid rgba(212,175,55,0.1);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--black-card);
    transition: border-color var(--transition);
}

.faq-item:hover {
    border-color: rgba(212,175,55,0.25);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    cursor: pointer;
    font-weight: 600;
    color: var(--white);
    font-size: 0.98rem;
    transition: color var(--transition);
    user-select: none;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question i {
    color: var(--gold);
    transition: transform var(--transition);
    font-size: 0.85rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    color: rgba(248,248,248,0.75);
    font-size: 0.92rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Rating */
.stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
}

/* Providers */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}

.provider-card {
    background: var(--black-card);
    border: 1px solid rgba(212,175,55,0.08);
    border-radius: 10px;
    padding: 22px 16px;
    text-align: center;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
    transition: all var(--transition);
}

.provider-card:hover {
    border-color: rgba(212,175,55,0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.provider-card i {
    display: block;
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 10px;
}

/* Payment methods */
.payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.payment-item {
    background: var(--black-card);
    border: 1px solid rgba(212,175,55,0.1);
    border-radius: 10px;
    padding: 14px 24px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition);
}

.payment-item:hover {
    border-color: rgba(212,175,55,0.3);
    background: var(--black-hover);
}

.payment-item i {
    color: var(--gold);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--gray);
    font-size: 0.88rem;
    margin-top: 14px;
    line-height: 1.6;
}

.footer-col h4 {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: var(--gray);
    font-size: 0.88rem;
    transition: color var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: var(--gray-dark);
    font-size: 0.8rem;
}

.footer-badges {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-badges span {
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.15);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--gold);
}

/* Scroll animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll to top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--black);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 999;
    box-shadow: 0 4px 16px rgba(212,175,55,0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(212,175,55,0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        display: block;
    }
    .hero-bg {
        position: relative;
        width: 100%;
        height: 45vw;
        min-height: 220px;
        max-height: 400px;
        background-position: top center;
    }
    .hero-overlay {
        background: linear-gradient(0deg, #000 0%, rgba(0,0,0,0.3) 40%, transparent 100%);
    }
    .hero-content {
        max-width: 100%;
        padding: 24px 24px 40px;
        text-align: center;
    }
    .hero-logo {
        margin-left: auto;
        margin-right: auto;
        max-width: 180px;
        margin-bottom: 16px;
    }
    .hero h1 {
        max-width: 100%;
        font-size: clamp(1.8rem, 6vw, 2.6rem);
    }
    .hero-text {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-badges {
        justify-content: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .two-col {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-bg {
        height: 50vw;
        min-height: 200px;
        max-height: 320px;
    }
    .hero-content {
        padding: 20px 16px 36px;
    }
    .hero-logo {
        max-width: 150px;
    }
    .hero h1 {
        font-size: clamp(1.5rem, 6.5vw, 2.2rem);
    }
    .hero h1 span {
        font-size: 0.42em;
        letter-spacing: 1.5px;
    }
    .hero-text {
        font-size: 0.85rem;
    }
    .hero-badges {
        gap: 8px;
    }
    .hero-badge {
        font-size: 0.72rem;
        padding: 6px 10px;
    }
    section {
        padding: 50px 0;
    }
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .stat-number {
        font-size: 1.6rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .info-table {
        font-size: 0.85rem;
    }
    .info-table td,
    .info-table thead th {
        padding: 10px 14px;
    }
    .bonus-banner {
        padding: 28px 20px;
    }
    .bonus-banner .bonus-amount {
        font-size: 2.2rem;
    }
    .features-list {
        grid-template-columns: 1fr;
    }
    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .stats-row {
        grid-template-columns: 1fr;
    }
    .providers-grid {
        grid-template-columns: 1fr;
    }
    .payment-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* 18+ badge */
.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--red);
    color: var(--red);
    font-weight: 800;
    font-size: 0.75rem;
}

/* Trust signals */
.trust-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 30px 0;
}

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

.trust-item i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 8px;
    display: block;
}

.trust-item span {
    font-size: 0.82rem;
    color: var(--gray);
    display: block;
}

/* Section dividers */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.2), transparent);
    margin: 0;
    border: none;
}
