    :root {
        --primary-color: #1a237e;
        --secondary-color: #c5a059;
        --text-color: #333333;
        --light-bg: #f9f9f9;
        --dark-bg: #121212;
        --white: #ffffff;
        --border-radius: 8px;
        --transition: all 0.3s ease;
        --container-width: 1200px;
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        line-height: 1.6;
        color: var(--text-color);
        background-color: var(--white);
    }

    h1,
    h2,
    h3,
    h4 {
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--primary-color);
    }

    p {
        margin-bottom: 1rem;
    }

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

    ul {
        list-style: none;
    }

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


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

    .section-padding {
        padding: 80px 0;
    }

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

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .section-subtitle {
        font-size: 1.1rem;
        color: #666;
        max-width: 700px;
        margin: 0 auto 50px auto;
        display: block;
    }

    .btn {
        display: inline-block;
        padding: 12px 30px;
        background-color: var(--secondary-color);
        color: var(--white);
        font-weight: 600;
        border-radius: var(--border-radius);
        border: none;
        cursor: pointer;
        font-size: 1rem;
    }

    .btn:hover {
        background-color: #b08d4d;
        transform: translateY(-2px);
    }


    .img-placeholder {
        color: #757575;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        border-radius: var(--border-radius);
    }

    .img-placeholder img {
        width: 100%;
    }


    header {
        background-color: var(--white);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: sticky;
        top: 0;
        z-index: 1000;
        padding: 15px 0;
    }

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

    .logo {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--primary-color);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .nav-links {
        display: flex;
        gap: 30px;
    }

    .nav-links a {
        font-weight: 500;
        color: var(--text-color);
        font-size: 0.95rem;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--secondary-color);
    }

    .burger {
        display: none;
        cursor: pointer;
        font-size: 1.5rem;
    }


    #accueil {
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        min-height: 80vh;
        display: flex;
        align-items: center;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 3rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 1.2rem;
        color: #555;
        margin-bottom: 30px;
    }

    .hero-image-placeholder {
        width: 100%;
        height: 400px;
    }


    #apropos {
        background-color: var(--white);
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .about-img-placeholder {
        width: 100%;
        height: 350px;
    }


    #services {
        background-color: var(--light-bg);
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .service-card {
        background: var(--white);
        padding: 30px;
        border-radius: var(--border-radius);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: var(--transition);
        text-align: center;
    }

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .service-icon {
        font-size: 2.5rem;
        color: var(--secondary-color);
        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .service-card p {
        font-size: 0.9rem;
        color: #666;
        margin-bottom: 0;
    }


    #pourquoi-nous {
        background-color: var(--white);
    }

    .why-us-content {
        max-width: 800px;
        margin: 0 auto;
        text-align: left;
    }

    .why-us-content p {
        margin-bottom: 20px;
        font-size: 1.05rem;
    }


    #fonctionnalites {
        background-color: var(--light-bg);
    }

    .features-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .feature-item {
        background: var(--white);
        padding: 25px;
        border-left: 4px solid var(--secondary-color);
        border-radius: 4px;
    }

    .feature-item h3 {
        margin-bottom: 10px;
    }


    #bookmakers {
        background-color: var(--white);
    }

    .bookmakers-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .bookmaker-card {
        border: 1px solid #eee;
        border-radius: var(--border-radius);
        padding: 20px;
        text-align: center;
        background: var(--white);
        transition: var(--transition);
    }

    .bookmaker-card:hover {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .logo-placeholder {
        width: 150px;
        height: 60px;
        margin: 0 auto 20px auto;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #888;
        font-size: 0.8rem;
        border-radius: 4px;
    }

    .rating {
        color: #f1c40f;
        margin-bottom: 15px;
    }

    .bonus-info {
        background-color: #f8f9fa;
        padding: 10px;
        border-radius: 4px;
        font-size: 0.85rem;
        color: #555;
        margin-bottom: 20px;
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .disclaimer-note {
        text-align: center;
        font-size: 0.8rem;
        color: #999;
        margin-top: 30px;
        font-style: italic;
    }


    #galerie {
        background-color: var(--light-bg);
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

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

    .gallery-placeholder {
        width: 100%;
        height: 200px;
        margin-bottom: 10px;
    }


    #faq {
        background-color: var(--white);
    }

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

    .faq-item {
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .faq-item h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        color: var(--primary-color);
    }


    #contact {
        background-color: #f4f7f6;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .contact-info h4 {
        margin-bottom: 20px;
        font-size: 1.2rem;
    }

    .info-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
    }

    .info-item i {
        color: var(--secondary-color);
        margin-right: 15px;
        margin-top: 5px;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 12px;
        margin-bottom: 20px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-family: inherit;
    }

    .contact-form textarea {
        resize: vertical;
        height: 120px;
    }


    footer {
        background-color: var(--dark-bg);
        color: #aaa;
        padding-top: 60px;
        padding-bottom: 20px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
        max-width: var(--container-width);
        margin: 0 auto;
        padding: 0 20px;
        margin-bottom: 40px;
    }

    footer h3 {
        color: #fff;
    }

    .footer-col h4 {
        color: var(--white);
        margin-bottom: 20px;
    }

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

    .footer-col ul li a:hover {
        color: var(--secondary-color);
        text-decoration: underline;
    }

    .responsible-logos {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .res-logo-placeholder {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.6rem;
        text-align: center;
    }

    .responsible-logos img {
        height: 60px;
        padding: 5px;
        background: #fff;
        border-radius: 5px;
    }

    .disclaimer-box {
        background: #1e1e1e;
        padding: 20px;
        border-left: 4px solid #d32f2f;
        margin-top: 20px;
        font-size: 0.9rem;
    }

    .copyright {
        text-align: center;
        border-top: 1px solid #333;
        padding-top: 20px;
        font-size: 0.85rem;
    }


    @media (max-width: 992px) {

        .services-grid,
        .bookmakers-grid,
        .footer-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .hero-content h1 {
            font-size: 2.5rem;
        }
    }

    @media (max-width: 768px) {
        .nav-links {
            position: absolute;
            right: 0;
            height: 100vh;
            top: 70px;
            background-color: var(--white);
            flex-direction: column;
            align-items: center;
            width: 100%;
            transform: translateX(100%);
            transition: transform 0.3s ease-in;
            padding-top: 50px;
            box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        }

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

        .burger {
            display: block;
        }

        .hero-grid,
        .about-grid,
        .contact-grid,
        .features-grid {
            grid-template-columns: 1fr;
        }

        .services-grid,
        .bookmakers-grid,
        .footer-grid {
            grid-template-columns: 1fr;
        }

        .hero-image-placeholder,
        .about-img-placeholder {
            order: -1;
            height: 300px;
        }
    }

    .btn-primary {
        background-color: #c5a059;
        color: #111111;
        border: none;
        padding: 10px 18px;
        border-radius: 4px;
        font-weight: 600;
        cursor: pointer;
        font-size: 14px;
        transition: background-color 0.2s ease, transform 0.1s ease;
    }

    .btn-primary:hover {
        background-color: #b28f4f;
        transform: translateY(-1px);
    }

    .btn-ghost {
        background-color: #ffffff;
        color: #c5a059;
        border: 1px solid #c5a059;
        padding: 9px 16px;
        border-radius: 4px;
        font-weight: 500;
        cursor: pointer;
        font-size: 14px;
        transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
    }

    .btn-ghost:hover {
        background-color: #c5a059;
        color: #111111;
        transform: translateY(-1px);
    }


    .age-gate-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.85);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        padding: 16px;
    }

    .age-gate-box {
        max-width: 520px;
        width: 100%;
        background-color: #ffffff;
        border-radius: 10px;
        padding: 24px 24px 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        text-align: center;
        border: 2px solid #c5a059;
    }

    .age-gate-box h2 {
        margin: 0 0 12px;
        font-size: 22px;
        color: #111111;
    }

    .age-gate-box p {
        margin: 0 0 12px;
        color: #333333;
        line-height: 1.5;
        font-size: 14px;
    }

    .age-gate-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        margin: 10px 0 6px;
    }

    .age-gate-note {
        font-size: 12px;
        color: #666666;
    }


    .cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #ffffff;
        border-top: 2px solid #c5a059;
        box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.15);
        padding: 14px 20px;
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        align-items: center;
        justify-content: space-between;
        z-index: 9990;
        font-size: 14px;
    }

    .cookie-banner-text {
        flex: 1 1 260px;
    }

    .cookie-banner-text h3 {
        margin: 0 0 6px;
        font-size: 16px;
        color: #111111;
    }

    .cookie-banner-text p {
        margin: 0;
        color: #444444;
        line-height: 1.4;
    }

    .cookie-banner-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }


    .cookie-modal.hidden,
    .age-gate-overlay.hidden,
    .cookie-banner.hidden {
        display: none;
    }

    .cookie-modal {
        position: fixed;
        inset: 0;
        z-index: 9995;
    }

    .cookie-modal-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.65);
    }

    .cookie-modal-box {
        position: relative;
        max-width: 640px;
        margin: 60px auto;
        background-color: #ffffff;
        border-radius: 10px;
        padding: 20px 22px 18px;
        border: 2px solid #c5a059;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        z-index: 1;
    }

    .cookie-modal-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        margin-bottom: 10px;
    }

    .cookie-modal-header h3 {
        margin: 0;
        font-size: 18px;
        color: #111111;
    }

    .cookie-close-btn {
        background: transparent;
        border: none;
        font-size: 22px;
        line-height: 1;
        cursor: pointer;
        color: #777777;
    }

    .cookie-close-btn:hover {
        color: #c5a059;
    }

    .cookie-modal-intro {
        margin: 0 0 10px;
        color: #444444;
        font-size: 14px;
        line-height: 1.5;
    }

    .cookie-option {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 12px;
        padding: 10px 0;
        border-top: 1px solid #eeeeee;
    }

    .cookie-option:last-of-type {
        border-bottom: 1px solid #eeeeee;
    }

    .cookie-option h4 {
        margin: 0 0 4px;
        font-size: 15px;
        color: #111111;
    }

    .cookie-option p {
        margin: 0;
        font-size: 13px;
        color: #555555;
        line-height: 1.4;
    }

    .cookie-option-disabled {
        opacity: 0.7;
    }


    .cookie-switch {
        position: relative;
        display: inline-block;
        width: 44px;
        height: 22px;
    }

    .cookie-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .cookie-slider {
        position: absolute;
        cursor: pointer;
        inset: 0;
        background-color: #dddddd;
        border-radius: 22px;
        transition: 0.3s;
    }

    .cookie-slider:before {
        content: "";
        position: absolute;
        height: 16px;
        width: 16px;
        left: 3px;
        top: 3px;
        background-color: #ffffff;
        border-radius: 50%;
        transition: 0.3s;
    }

    .cookie-switch input:checked+.cookie-slider {
        background-color: #c5a059;
    }

    .cookie-switch input:checked+.cookie-slider:before {
        transform: translateX(20px);
    }

    .cookie-modal-actions {
        display: flex;
        justify-content: flex-end;
        gap: 10px;
        margin-top: 14px;
    }


    .cookie-manage-btn {
        position: fixed;
        right: 16px;
        bottom: 80px;
        background-color: #ffffff;
        border: 1px solid #c5a059;
        color: #c5a059;
        border-radius: 20px;
        padding: 8px 14px;
        font-size: 12px;
        font-weight: 500;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        z-index: 9980;
        display: none;
    }

    .cookie-manage-btn:hover {
        background-color: #c5a059;
        color: #111111;
    }


    @media (max-width: 600px) {
        .cookie-banner {
            flex-direction: column;
            align-items: flex-start;
        }

        .cookie-banner-actions {
            width: 100%;
            justify-content: flex-start;
        }

        .cookie-modal-box {
            margin: 40px 10px;
            padding: 16px;
        }
    }

    .policy-content {
        background-color: var(--white);
        padding: 60px 40px;
        margin: 40px auto;
        border-radius: var(--border-radius);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .policy-content h1 {
        font-size: 2.5rem;
        border-bottom: 2px solid var(--secondary-color);
        padding-bottom: 20px;
        margin-bottom: 40px;
    }

    .policy-content h2 {
        margin-top: 40px;
        font-size: 1.5rem;
    }

    .policy-content p,
    .policy-content li {
        margin-bottom: 15px;
        color: #444;
    }

    .policy-content ul {
        margin-left: 20px;
        margin-bottom: 20px;
    }

    .policy-content li {
        list-style-type: disc;
        padding-left: 10px;
    }

    .data-list {
        background: #f4f7f6;
        padding: 20px;
        border-radius: var(--border-radius);
        margin-bottom: 20px;
    }

    @media (max-width: 768px) {
        .policy-content {
            padding: 30px 20px;
        }

        .policy-content h1 {
            font-size: 2rem;
        }
    }

    .terms-content {
        background-color: var(--white);
        padding: 60px 40px;
        margin: 40px auto;
        border-radius: var(--border-radius);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .terms-content h1 {
        font-size: 2.5rem;
        border-bottom: 2px solid var(--secondary-color);
        padding-bottom: 20px;
        margin-bottom: 40px;
    }

    .terms-content h2 {
        margin-top: 40px;
        font-size: 1.4rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-left: 4px solid var(--secondary-color);
        padding-left: 15px;
    }

    .terms-content p {
        margin-bottom: 15px;
        color: #444;
        text-align: justify;
    }

    .terms-content ul {
        margin-left: 20px;
        margin-bottom: 20px;
    }

    .terms-content li {
        list-style-type: disc;
        padding-left: 10px;
        margin-bottom: 10px;
        color: #444;
    }

    .warning-box {
        background-color: #fff3cd;
        border: 1px solid #ffeeba;
        color: #856404;
        padding: 20px;
        border-radius: var(--border-radius);
        margin: 30px 0;
        font-weight: 600;
    }

    .usage-content {
        background-color: var(--white);
        padding: 60px 40px;
        margin: 40px auto;
        border-radius: var(--border-radius);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .usage-content h1 {
        font-size: 2.5rem;
        border-bottom: 2px solid var(--secondary-color);
        padding-bottom: 20px;
        margin-bottom: 40px;
    }

    .usage-content h2 {
        margin-top: 40px;
        font-size: 1.4rem;
        color: #333;
        border-left: 4px solid var(--primary-color);
        padding-left: 15px;
    }

    .usage-content p {
        margin-bottom: 15px;
        color: #444;
    }

    .usage-content ul {
        margin-left: 20px;
        margin-bottom: 20px;
    }

    .usage-content li {
        list-style-type: square;
        padding-left: 10px;
        margin-bottom: 8px;
        color: #444;
    }

    .prohibited-box {
        background-color: #fff5f5;
        border: 1px solid #ffc9c9;
        padding: 20px;
        border-radius: var(--border-radius);
        margin-bottom: 20px;
    }

    .prohibited-box h3 {
        color: #c0392b;
        font-size: 1.1rem;
    }

    @media (max-width: 768px) {
        .usage-content {
            padding: 30px 20px;
        }

        .usage-content h1 {
            font-size: 2rem;
        }
    }