:root {
    --bg: #07090d;
    --panel: #11141b;
    --panel-2: #171b24;
    --text: #f5f7fb;
    --muted: #bcc4d1;
    --gold: #f0c933;
    --gold-dark: #9b7410;
    --blue: #0b6fd3;
    --blue-light: #55b4ff;
    --green: #24b94b;
    --red: #d83a48;
    --border: rgba(255,255,255,.12);
    --shadow: 0 14px 34px rgba(0,0,0,.34);
    --radius: 16px;
    --max: 1320px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(212,158,0,.12), transparent 35%),
        radial-gradient(circle at top right, rgba(0,93,210,.14), transparent 38%),
        linear-gradient(180deg, #06080c, #11141b 48%, #080a0e);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

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

a { color: inherit; }

.site-header {
    background: #05070a;
    border-bottom: 1px solid rgba(240,201,51,.5);
}

.banner-sport img {
    width: 100%;
    max-height: 255px;
    object-fit: cover;
}

.main-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    width: min(calc(100% - 24px), var(--max));
    margin: 14px auto;
    padding: 9px;
    background: rgba(7,9,13,.97);
    border: 1px solid rgba(240,201,51,.55);
    border-radius: 12px;
}

.main-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 7px 13px;
    color: #fff;
    background: linear-gradient(180deg,#443071,#25164a);
    border: 1px solid #7454b7;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.main-nav a:hover,
.main-nav a.active {
    color: #141414;
    background: linear-gradient(180deg,#ffe66f,#d7a90e);
    border-color: #ffe981;
}

.page-content {
    width: min(calc(100% - 28px), var(--max));
    margin: 0 auto;
}

.hero,
.comparison-section,
.operator-section,
.tool-section,
.guide-section,
.faq-section,
.related-section {
    margin-top: 22px;
    padding: 22px;
    background: linear-gradient(145deg, rgba(18,21,29,.98), rgba(9,11,16,.98));
    border: 1px solid rgba(240,201,51,.34);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero {
    text-align: center;
}

.eyebrow,
.section-kicker {
    margin: 0 0 5px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

h1, h2, h3, p { overflow-wrap: anywhere; }

h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(27px, 4vw, 42px);
    line-height: 1.16;
}

h2 {
    margin: 0;
    font-size: clamp(20px, 2.5vw, 27px);
    line-height: 1.25;
}

h3 {
    margin: 0;
    font-size: 18px;
}

.hero-text {
    max-width: 850px;
    margin: 12px auto 0;
    color: var(--muted);
}

.trust-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.trust-row span {
    padding: 6px 11px;
    color: #f6f6f6;
    background: #222630;
    border: 1px solid #414854;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.section-heading > p {
    max-width: 500px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.comparison-card {
    overflow: hidden;
    border: 1px solid var(--blue-light);
    border-radius: 14px;
    background: #07131f;
    box-shadow:
        0 7px 0 #05264a,
        0 18px 34px rgba(0,91,190,.25),
        inset 0 1px rgba(255,255,255,.15);
}

.table-scroll { overflow-x: auto; }

.bonus-table {
    width: 100%;
    min-width: 920px;
    border-collapse: collapse;
}

.bonus-table th,
.bonus-table td {
    padding: 14px;
    border-right: 1px solid rgba(88,174,255,.15);
    border-bottom: 1px solid rgba(88,174,255,.18);
    vertical-align: middle;
}

.bonus-table thead th {
    color: #fff;
    background:
        linear-gradient(180deg,rgba(255,255,255,.25),transparent 40%),
        linear-gradient(180deg,#42a7ff,#0c6fc9 55%,#063d78);
    font-size: 12px;
    text-transform: uppercase;
}

.bonus-table tbody tr:nth-child(odd) {
    background: linear-gradient(180deg,#112944,#0b1c30);
}

.bonus-table tbody tr:nth-child(even) {
    background: linear-gradient(180deg,#0d2139,#081726);
}

.bonus-table tbody tr:hover {
    background: linear-gradient(180deg,#183e69,#0c2949);
}

.bonus-table td > strong,
.bonus-table td > span {
    display: block;
}

.bonus-table td > span {
    margin-top: 4px;
    color: #d1ddeb;
    font-size: 12px;
}

.operator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.operator > div > strong,
.operator-sub,
.badge {
    display: block;
}

.operator-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    font-weight: 900;
    box-shadow: inset 0 1px rgba(255,255,255,.35);
}

.pmu-logo {
    color: #151515;
    background: linear-gradient(180deg,#fff,#d8dce2);
    border: 1px solid #fff;
}

.parions-logo {
    color: #fff;
    background: linear-gradient(180deg,#318de9,#0c4b91);
    border: 1px solid #6eb5ff;
}

.netbet-logo {
    color: #fff;
    background: linear-gradient(180deg,#e34a55,#8f111b);
    border: 1px solid #f2767e;
}

.badge,
.operator-sub {
    margin-top: 3px;
    font-size: 11px;
}

.badge {
    color: #1b1b1b;
    background: var(--gold);
    border-radius: 999px;
    padding: 2px 7px;
    width: fit-content;
}

.operator-sub { color: #bec8d5; }

.mini-list,
.check-list {
    margin: 0;
    padding-left: 18px;
}

.offer-link,
.card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 13px;
    color: #fff;
    background:
        linear-gradient(180deg,rgba(255,255,255,.25),transparent 38%),
        linear-gradient(180deg,#64df72,#20a73d 55%,#087a28);
    border: 1px solid #88ee92;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 4px 0 #055b1d, 0 8px 16px rgba(0,140,44,.22);
}

.affiliate-note {
    margin: 18px 2px 0;
    color: #c6ccd5;
    font-size: 12px;
}

.pub-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 90px;
    margin: 22px auto 0;
    text-align: center;
    overflow: hidden;
}

.pub-top iframe,
.pub-top img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    border: 0;
}

.pub-top p {
    margin: 0;
    color: #b9c0cb;
    font-size: 12px;
}

.operator-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 14px;
}

.operator-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 17px;
    background: linear-gradient(145deg,#1a1e27,#10131a);
    border: 1px solid var(--border);
    border-radius: 13px;
}

.featured-card {
    border-color: rgba(240,201,51,.65);
    box-shadow: inset 0 1px rgba(255,255,255,.06);
}

.card-head {
    display: flex;
    align-items: center;
    gap: 11px;
}

.card-head p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.offer-title {
    margin: 16px 0 6px;
    color: var(--gold);
    font-weight: 800;
}

.operator-card > p:not(.offer-title) {
    color: #d0d5dd;
    font-size: 13px;
}

.operator-card .check-list {
    margin-bottom: 16px;
    color: #e7eaf0;
    font-size: 13px;
}

.operator-card .card-cta {
    margin-top: auto;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 12px;
}

.guide-grid article {
    padding: 15px;
    background: #171b23;
    border: 1px solid var(--border);
    border-radius: 11px;
}

.guide-grid span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
}

.guide-grid h3 {
    margin-top: 4px;
    font-size: 16px;
}

.guide-grid p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.faq-list details {
    margin-top: 9px;
    background: #171b23;
    border: 1px solid var(--border);
    border-radius: 9px;
}

.faq-list summary {
    padding: 12px 14px;
    cursor: pointer;
    font-weight: 700;
}

.faq-list details p {
    margin: 0;
    padding: 0 14px 13px;
    color: var(--muted);
    font-size: 13px;
}

.related-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 14px;
}

.related-links a {
    padding: 7px 12px;
    color: #fff;
    background: #232832;
    border: 1px solid #484f5d;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.responsible-warning {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
    padding: 16px 18px;
    color: #1b1b1b;
    background: #f0f1f3;
    border-left: 6px solid var(--red);
    border-radius: 10px;
}

.warning-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    color: #fff;
    background: var(--red);
    border-radius: 50%;
    font-weight: 900;
}

.responsible-warning h2 {
    font-size: 18px;
}

.responsible-warning p {
    margin: 4px 0 0;
    font-size: 12px;
}

footer {
    margin-top: 30px;
    padding: 22px 15px;
    color: #d6d9df;
    background: #07090d;
    border-top: 1px solid rgba(240,201,51,.5);
    text-align: center;
}

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

.footer-logos img {
    width: auto;
    max-width: 120px;
    height: 40px;
    object-fit: contain;
}

footer .warning {
    max-width: 780px;
    margin: 0 auto 10px;
    font-size: 12px;
}

footer p {
    margin: 8px 0 0;
    font-size: 12px;
}

footer a {
    text-decoration: none;
}

footer a:hover { text-decoration: underline; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 980px) {
    .operator-grid { grid-template-columns: 1fr 1fr; }
    .guide-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 650px) {
    body { font-size: 14px; }

    .main-nav a {
        flex: 1 1 45%;
        font-size: 11px;
        padding: 6px 8px;
    }

    .page-content {
        width: calc(100% - 18px);
    }

    .hero,
    .comparison-section,
    .operator-section,
    .tool-section,
    .guide-section,
    .faq-section,
    .related-section {
        padding: 16px;
        margin-top: 16px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .operator-grid,
    .guide-grid {
        grid-template-columns: 1fr;
    }

    .responsible-warning {
        align-items: flex-start;
    }

    .footer-logos img {
        max-width: 105px;
        height: 36px;
    }
}


/* Offre NetBet 5 € */
.operator-card:last-child .offer-title,
.bonus-table tbody tr:last-child td:nth-child(2) strong
{
    color: #ff6670;
    font-weight: 900;
}

.netbet-logo
{
    color: #ffffff;
    background:
        linear-gradient(
            180deg,
            #ed4e59,
            #94131d
        );
    border: 1px solid #ff7c84;
}


.bonus-montant{
    color:#ffd84d;
    font-weight:900;
    text-shadow:0 0 8px rgba(255,216,77,.35);
}


.offer-link,
.card-cta{
    font-size:13px;
    letter-spacing:.2px;
}






.update-badge{
    position:absolute;
    top:18px;
    left:20px;
    display:inline-flex;
    align-items:center;
    padding:4px 10px;
    margin:0;
    font-size:11px;
    font-weight:600;
    color:#eef8f1;
    background:#3f8f5b;
    border:1px solid #66b07d;
    border-radius:999px;
    box-shadow:0 2px 6px rgba(0,0,0,.15);
    z-index:2;
}


.hero{position:relative;}


/* Outil d’analyse BetBurger — séparé des bookmakers */
.betburger-card {
    display: grid;
    grid-template-columns: minmax(220px, .8fr) minmax(300px, 1.5fr) auto;
    align-items: center;
    gap: 20px;
    padding: 18px;
    background: linear-gradient(145deg, rgba(28,34,45,.98), rgba(12,15,21,.98));
    border: 1px solid rgba(85,180,255,.48);
    border-radius: 13px;
    box-shadow: inset 0 1px rgba(255,255,255,.06);
}

.betburger-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.betburger-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    color: #ffffff;
    background: linear-gradient(180deg,#2d9cff,#07559e);
    border: 1px solid #74c3ff;
    border-radius: 11px;
    font-weight: 900;
    box-shadow: inset 0 1px rgba(255,255,255,.35);
}

.betburger-head p,
.betburger-content p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.betburger-content .check-list {
    margin-top: 9px;
    color: #e7eaf0;
    font-size: 13px;
}

.betburger-cta {
    white-space: nowrap;
}

@media (max-width: 900px) {
    .betburger-card {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .betburger-cta {
        width: fit-content;
    }
}

@media (max-width: 650px) {
    .betburger-card {
        padding: 15px;
        gap: 14px;
    }

    .betburger-cta {
        width: 100%;
        white-space: normal;
    }
}


/* Correctifs finaux : accessibilité et affichage mobile */
:where(a, summary):focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 3px;
}

.offer-link:hover,
.card-cta:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

@media (max-width: 650px) {
    .hero {
        padding-top: 54px;
    }

    .update-badge {
        top: 14px;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
    }

    .main-nav {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .main-nav a {
        flex: 0 0 auto;
        min-height: 42px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }
}
