:root {
    --bg-dark: #090d16;
    --bg-darker: #04060b;
    --bg-card: rgba(255, 255, 255, 0.06);
    --bg-card-border: rgba(0, 242, 254, 0.6);
    --cyan-primary: #00f2fe;
    --cyan-secondary: #0072ff;
    --cyan-gradient: linear-gradient(180deg, #00f2fe 0%, #0072ff 100%);
    --cyan-shadow: 3px 3px 0px 0px #ffffff;
    --violet-accent: #a855f7;
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.85);
    --text-dim: rgba(255, 255, 255, 0.65);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --font-heading: 'Outfit', 'Inter', -apple-system, sans-serif;
    --font-body: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(0, 242, 254, 0.22) 0%, transparent 60%),
        radial-gradient(circle at 85% 30%, rgba(168, 85, 247, 0.18) 0%, transparent 50%),
        linear-gradient(180deg, #090d16 0%, #030509 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

*:focus-visible {
    outline: 3px solid var(--cyan-primary) !important;
    outline-offset: 3px !important;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    background: var(--cyan-primary);
    color: #000000;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-weight: 800;
    z-index: 10000;
    transition: top 0.2s ease;
    text-decoration: none;
    font-family: var(--font-heading);
}

.skip-link:focus {
    top: 20px;
}

.top-notice-bar {
    background: #ffffff;
    color: #000000;
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    position: relative;
    z-index: 50;
}

.top-notice-bar img {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.top-notice-bar p, .top-notice-bar span {
    color: #000000;
    font-size: 0.8rem;
    margin: 0;
}

.top-notice-bar strong {
    color: #d32f2f;
    font-weight: 700;
}

.navbar {
    width: 100%;
    border-bottom: 1px solid rgba(0, 242, 254, 0.2);
    background: rgba(9, 13, 22, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 242, 254, 0.4));
    transition: transform 0.2s ease;
}

.brand-logo-img:hover {
    transform: scale(1.03);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--cyan-primary);
    text-decoration: underline;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 6px;
}

.mobile-menu-btn svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(4, 6, 11, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-overlay.active {
    left: 0;
}

.mobile-nav-overlay .nav-link {
    font-size: 1.3rem;
}

.close-mobile-menu {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.3rem;
    transition: background 0.2s ease;
}

.close-mobile-menu:hover {
    background: rgba(255, 255, 255, 0.25);
}

.hero-section {
    padding: 36px 20px 24px 20px;
    text-align: center;
}

.hero-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-badge {
    align-self: center;
    background: rgba(0, 242, 254, 0.12);
    border: 1px solid rgba(0, 242, 254, 0.4);
    color: var(--cyan-primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    color: #ffffff;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    color: #ffffff;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

.hero-divider {
    width: 100%;
    max-width: 1280px;
    margin: 24px auto 0 auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(0,242,254,0.35) 50%, rgba(255,255,255,0) 100%);
}

.main-content {
    padding: 40px 24px 80px 24px;
    flex: 1;
}

.section-heading {
    max-width: 1280px;
    margin: 0 auto 28px auto;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    text-align: center;
}

.cards-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 384px));
    justify-content: center;
    gap: 32px;
    align-items: stretch;
    list-style: none;
    padding: 0;
}

.exact-casino-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(0, 242, 254, 0.6);
    background: linear-gradient(180deg, rgba(0, 242, 254, 0.12) 0%, rgba(9, 13, 22, 0.6) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    gap: 16px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    cursor: pointer;
}

.exact-casino-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 242, 254, 0.95);
    box-shadow: 0 12px 30px rgba(0, 242, 254, 0.25);
}

.card-number-badge {
    position: absolute;
    top: -12px;
    left: -12px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.95);
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    z-index: 5;
}

.card-number-badge p {
    color: #000000;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    margin: 0;
}

.card-header-flex {
    padding: 0 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

.brand-icon-box {
    display: flex;
    align-items: center;
    margin: 0;
}

.brand-icon-box img {
    height: 64px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.4));
}

.card-score-box {
    display: flex;
    align-items: center;
    gap: 6px;
}

.star-icon {
    width: 28px;
    height: 28px;
    fill: #ffec3c;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.score-text {
    color: #ffffff;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    margin: 0;
}

.score-text span {
    color: #d1d1d1;
    font-size: 20px;
    font-weight: 400;
}

.card-body-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 60px;
    padding: 4px 0;
}

.card-body-text p {
    color: #ffffff;
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.card-action-box {
    width: 100%;
    margin-top: auto;
}

.btn-accéder {
    position: relative;
    display: block;
    width: 100%;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
    transition: transform 0.15s ease, filter 0.15s ease;
}

.btn-accéder p {
    position: relative;
    z-index: 2;
    margin: 0;
    border-radius: 12px;
    background: linear-gradient(180deg, #00f2fe 0%, #0072ff 100%);
    box-shadow: 3px 3px 0 0 #ffffff;
    text-wrap: nowrap;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 19px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: -0.38px;
    text-transform: uppercase;
    text-align: center;
    padding: 14px 0;
}

.shdewenrhwer {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -5;
}

.btn-accéder:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
}

.partner-badges-section {
    margin-top: 48px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.partner-badges-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.85;
}

.badge-item:hover {
    transform: scale(1.06);
    opacity: 1;
}

.badge-img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.editorial-section {
    max-width: 960px;
    margin: 40px auto 0 auto;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.editorial-section h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--cyan-primary);
    text-align: center;
}

.editorial-section h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 24px 0 12px 0;
    color: #ffffff;
}

.editorial-section p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 14px;
    line-height: 1.65;
}

.editorial-section ul {
    margin-left: 20px;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.editorial-section li {
    margin-bottom: 8px;
}

.footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(0, 242, 254, 0.3);
    padding: 48px 24px 32px 24px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.footer-warning-line {
    background: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #fca5a5;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    font-size: 0.92rem;
    text-align: center;
    line-height: 1.5;
}

.footer-warning-line strong {
    color: #ffffff;
}

.footer-transparency-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.transparency-title {
    font-family: var(--font-heading);
    color: var(--cyan-primary);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.transparency-item h3 {
    font-family: var(--font-heading);
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.transparency-item p {
    color: var(--text-dim);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}

.footer-help-links {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.footer-help-links a {
    color: var(--cyan-primary);
    text-decoration: underline;
    font-size: 0.88rem;
}

.footer-help-links a:hover {
    color: #ffffff;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright-text {
    color: var(--text-dim);
    font-size: 0.88rem;
    margin: 0;
}

.footer-nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
    flex-wrap: wrap;
    padding: 0;
}

.footer-nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s ease;
}

.footer-nav-links a:hover {
    color: var(--cyan-primary);
    text-decoration: underline;
}

.age-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(9, 13, 22, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.age-modal-overlay.show {
    display: flex;
}

.age-modal-box {
    width: 100%;
    max-width: 480px;
    border-radius: 12px;
    border: 1px solid var(--cyan-primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 30px rgba(0, 242, 254, 0.25);
    overflow: hidden;
    text-align: center;
}

.age-modal-body {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.age-modal-body h2 {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 8px;
}

.age-modal-body p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 12px;
}

.age-modal-help-links {
    font-size: 14px;
    color: #ffffff;
    margin-top: 6px;
}

.age-modal-help-links a {
    color: var(--cyan-primary);
    text-decoration: underline;
}

.age-modal-actions {
    display: flex;
    align-items: center;
    width: 100%;
}

.age-btn {
    width: 50%;
    height: 48px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    font-size: 15px;
    font-weight: 700;
}

.age-btn-reject {
    border: 1px solid #ffffff;
    background: #111827;
    color: #ffffff;
    border-bottom-left-radius: 12px;
}

.age-btn-accept {
    background: var(--cyan-gradient);
    color: #ffffff;
    border-bottom-right-radius: 12px;
}

.underage-screen {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 32px 24px;
    gap: 20px;
}

.underage-screen.active {
    display: flex;
}

.underage-screen h3 {
    color: #ff5252;
    font-size: 22px;
    font-weight: 700;
}

.underage-screen p {
    color: #ffffff;
    font-size: 15px;
}

.cookie-banner {
    position: fixed;
    bottom: -300px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 1000px;
    background: rgba(9, 13, 22, 0.96);
    border: 1px solid var(--cyan-primary);
    border-radius: 16px;
    padding: 20px 28px;
    z-index: 9999;
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: bottom 0.4s ease;
}

.cookie-banner.show {
    bottom: 24px;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cookie-title {
    font-family: var(--font-heading);
    color: var(--cyan-primary);
    font-weight: 800;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-title::before {
    content: '🍪';
    font-size: 1.2rem;
}

.cookie-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.cookie-btn-settings {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-settings:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.cookie-btn-accept {
    background: var(--cyan-gradient);
    color: #ffffff;
}

.cookie-btn-accept:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .cards-container {
        grid-template-columns: repeat(2, 340px);
    }
}

@media (max-width: 768px) {
    .top-notice-bar {
        padding: 5px 10px;
        font-size: 0.72rem;
        gap: 6px;
    }

    .top-notice-bar img {
        width: 18px;
        height: 18px;
    }

    .top-notice-bar p, .top-notice-bar span {
        font-size: 0.72rem;
        line-height: 1.25;
    }

    .nav-container {
        padding: 8px 16px;
    }

    .brand-logo-img {
        height: 34px;
        width: auto;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-section {
        padding: 14px 14px 10px 14px;
    }

    .hero-container {
        gap: 6px;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 3px 10px;
    }

    .hero-title {
        font-size: 1.25rem;
        line-height: 1.2;
        letter-spacing: -0.3px;
    }

    .hero-subtitle {
        font-size: 0.82rem;
        line-height: 1.3;
    }

    .hero-divider {
        margin: 10px auto 0 auto;
    }

    .section-heading {
        font-size: 1.15rem;
        margin-bottom: 12px;
    }

    .main-content {
        padding: 14px 14px 40px 14px;
    }

    .cards-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 440px;
        margin: 0 auto;
        padding: 0;
        width: 100%;
    }

    .exact-casino-card {
        width: 100%;
        box-sizing: border-box;
        padding: 12px 14px;
        gap: 10px;
    }

    .card-number-badge {
        top: -8px;
        left: -8px;
        width: 22px;
        height: 22px;
    }

    .card-number-badge p {
        font-size: 13px;
    }

    .card-header-flex {
        min-height: 44px;
        gap: 6px;
    }

    .brand-icon-box img {
        height: 40px;
        max-width: 90px;
    }

    .card-score-box {
        gap: 4px;
    }

    .star-icon {
        width: 20px;
        height: 20px;
    }

    .score-text {
        font-size: 22px;
    }

    .score-text span {
        font-size: 14px;
    }

    .card-body-text {
        min-height: auto;
        padding: 2px 0;
    }

    .card-body-text p {
        font-size: 13px;
        line-height: 1.35;
    }

    .btn-accéder p {
        font-size: 13.5px;
        padding: 9px 4px;
        border-radius: 8px;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
        width: calc(100% - 24px);
    }

    .cookie-banner.show {
        bottom: 12px;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}
