/* ============================================================
   RESPONSIBLE.CSS — Page Jeu Responsable Luvreizel
   ============================================================ */

/* Hero ────────────────────────────────────────────────────*/
body.theme-luv .resp-hero {
    position: relative;
    isolation: isolate;
    padding: 80px 24px 50px;
    text-align: center;
    overflow: hidden;
}
body.theme-luv .resp-hero::before {
    content: '';
    position: absolute;
    top: -240px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(20, 196, 106, 0.20) 0%, rgba(20, 196, 106, 0.04) 35%, transparent 70%);
    filter: blur(90px);
    z-index: 0;
}
body.theme-luv .resp-hero-content {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: callsFadeUp 0.5s ease both;
}

body.theme-luv .resp-title {
    font-family: var(--luv-font-display);
    font-size: clamp(40px, 6.5vw, 60px);
    line-height: 1;
    letter-spacing: 0.5px;
    font-weight: 400;
    color: var(--luv-text);
    margin: 0 0 16px;
}
body.theme-luv .resp-title .text-accent {
    color: var(--luv-green);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: var(--luv-green);
}

body.theme-luv .resp-subtitle {
    color: var(--luv-text-dim);
    font-size: 17px;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 620px;
}

/* Section title (réutilisable) ──────────────────────────*/
body.theme-luv .resp-section-title {
    font-family: var(--luv-font-display);
    font-size: clamp(28px, 4.2vw, 40px);
    line-height: 1.05;
    font-weight: 400;
    color: var(--luv-text);
    text-align: center;
    margin: 0 0 18px;
    letter-spacing: 0.3px;
}
body.theme-luv .resp-section-sub {
    text-align: center;
    color: var(--luv-text-dim);
    font-size: 15px;
    margin: 0 auto 36px;
    max-width: 580px;
    line-height: 1.55;
}

/* Engagement ─────────────────────────────────────────────*/
body.theme-luv .resp-engagement {
    max-width: 1180px;
    margin: 40px auto 0;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
body.theme-luv .resp-engagement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}
body.theme-luv .resp-card {
    background: var(--luv-card);
    border: 1px solid var(--luv-line);
    border-radius: var(--luv-r-lg);
    padding: 30px 26px;
    text-align: center;
    transition: var(--transition);
}
body.theme-luv .resp-card:hover {
    border-color: var(--luv-line-strong);
}
body.theme-luv .resp-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 138, 31, 0.10);
    border: 1px solid rgba(255, 138, 31, 0.35);
    color: var(--luv-orange);
}
body.theme-luv .resp-card h3 {
    font-family: var(--luv-font-heading);
    font-size: 22px;
    font-weight: 400;
    color: var(--luv-text);
    margin: 0 0 10px;
    letter-spacing: 0.3px;
}
body.theme-luv .resp-card p {
    color: var(--luv-text-dim);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Prevention ─────────────────────────────────────────────*/
body.theme-luv .resp-prevention {
    padding: 70px 24px 40px;
    position: relative;
    z-index: 1;
}
body.theme-luv .resp-prevention-inner {
    max-width: 1180px;
    margin: 0 auto;
}
body.theme-luv .resp-warning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 18px;
}
body.theme-luv .resp-warning-card {
    background: var(--luv-card);
    border: 1px solid var(--luv-line);
    border-radius: var(--luv-r-lg);
    padding: 28px 28px 24px;
    transition: var(--transition);
}
body.theme-luv .resp-warning-card--alert {
    border-color: rgba(230, 57, 70, 0.32);
    background:
        linear-gradient(180deg, rgba(230, 57, 70, 0.06) 0%, transparent 60%),
        var(--luv-card);
}
body.theme-luv .resp-warning-card--ok {
    border-color: rgba(20, 196, 106, 0.32);
    background:
        linear-gradient(180deg, rgba(20, 196, 106, 0.06) 0%, transparent 60%),
        var(--luv-card);
}
body.theme-luv .resp-warning-card h4 {
    font-family: var(--luv-font-body);
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 16px;
    letter-spacing: 0.04em;
}
body.theme-luv .resp-warning-card--alert h4 { color: var(--luv-red); }
body.theme-luv .resp-warning-card--ok h4    { color: var(--luv-green); }
body.theme-luv .resp-warning-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
body.theme-luv .resp-warning-card li {
    padding: 10px 0;
    border-bottom: 1px solid var(--luv-line);
    color: var(--luv-text-dim);
    font-size: 14px;
    line-height: 1.5;
}
body.theme-luv .resp-warning-card li:last-child {
    border-bottom: none;
}

/* Tools ──────────────────────────────────────────────────*/
body.theme-luv .resp-tools {
    padding: 60px 24px 40px;
    position: relative;
    z-index: 1;
}
body.theme-luv .resp-tools-inner {
    max-width: 1180px;
    margin: 0 auto;
}
body.theme-luv .resp-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}
body.theme-luv .resp-tool-card {
    background: var(--luv-card);
    border: 1px solid var(--luv-line);
    border-radius: var(--luv-r-lg);
    padding: 26px 22px;
    text-align: center;
    transition: var(--transition);
}
body.theme-luv .resp-tool-card:hover {
    border-color: var(--luv-orange);
    background:
        linear-gradient(180deg, rgba(255, 138, 31, 0.06) 0%, transparent 60%),
        var(--luv-card);
}
body.theme-luv .resp-tool-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 138, 31, 0.08);
    border: 1px solid rgba(255, 138, 31, 0.30);
    color: var(--luv-orange);
}
body.theme-luv .resp-tool-card h3 {
    font-family: var(--luv-font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--luv-text);
    margin: 0 0 10px;
}
body.theme-luv .resp-tool-card p {
    color: var(--luv-text-dim);
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
}

/* Resources ──────────────────────────────────────────────*/
body.theme-luv .resp-resources {
    padding: 60px 24px;
    position: relative;
    z-index: 1;
}
body.theme-luv .resp-resources-inner {
    max-width: 1180px;
    margin: 0 auto;
}
body.theme-luv .resp-resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}
body.theme-luv .resp-resource-card {
    background: var(--luv-card);
    border: 1.5px solid rgba(255, 138, 31, 0.30);
    border-radius: var(--luv-r-lg);
    padding: 30px 26px;
    transition: var(--transition);
}
body.theme-luv .resp-resource-card:hover {
    border-color: var(--luv-orange);
}
body.theme-luv .resp-resource-card h3 {
    font-family: var(--luv-font-heading);
    font-size: 22px;
    font-weight: 400;
    color: var(--luv-orange);
    margin: 0 0 12px;
    letter-spacing: 0.3px;
}
body.theme-luv .resp-resource-card p {
    color: var(--luv-text-dim);
    font-size: 14px;
    line-height: 1.55;
    margin: 6px 0;
}
body.theme-luv .resp-resource-card strong {
    color: var(--luv-text);
}
body.theme-luv .resp-resource-info {
    font-family: var(--luv-font-mono) !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: var(--luv-orange) !important;
    margin: 12px 0 !important;
    letter-spacing: 0.08em;
}
body.theme-luv .resp-resource-link {
    color: var(--luv-orange);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}
body.theme-luv .resp-resource-link:hover {
    color: var(--luv-orange-2);
    text-decoration: underline;
}

/* CTA ────────────────────────────────────────────────────*/
body.theme-luv .resp-cta {
    max-width: 1080px;
    margin: 30px auto 80px;
    padding: 60px 24px;
    text-align: center;
    background:
        radial-gradient(ellipse at center, rgba(255, 138, 31, 0.12) 0%, transparent 70%),
        var(--luv-card);
    border: 1.5px solid rgba(255, 138, 31, 0.40);
    border-radius: var(--luv-r-lg);
    position: relative;
    z-index: 1;
}
body.theme-luv .resp-cta-content {
    max-width: 720px;
    margin: 0 auto;
}
body.theme-luv .resp-cta-content h2 {
    font-family: var(--luv-font-display);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 400;
    color: var(--luv-text);
    margin: 0 0 16px;
    letter-spacing: 0.3px;
}
body.theme-luv .resp-cta-content p {
    color: var(--luv-text-dim);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 10px;
}
body.theme-luv .resp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 14px 28px;
    background: var(--luv-orange);
    color: #1a0a00;
    border-radius: var(--luv-r-md);
    font-family: var(--luv-font-body);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: filter .15s, transform .12s;
}
body.theme-luv .resp-cta-btn:hover {
    color: #1a0a00;
    background: var(--luv-orange-2);
}

/* Bandeau région courante : wrapper centré sous le hero ─*/
body.theme-luv .resp-region-bar-wrap {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 28px;
    text-align: center;
    position: relative;
    z-index: 1;
}

body.theme-luv .resp-region-bar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 26px auto 0;
    padding: 10px 16px;
    background: rgba(255, 138, 31, 0.08);
    border: 1px solid rgba(255, 138, 31, 0.35);
    border-radius: 999px;
    font-size: 13px;
    color: var(--luv-text-dim);
}
body.theme-luv .resp-region-bar-label {
    letter-spacing: 0.02em;
}
body.theme-luv .resp-region-bar-flag {
    font-size: 18px;
    line-height: 1;
}
body.theme-luv .resp-region-bar-name {
    color: var(--luv-text);
    font-weight: 700;
    font-size: 14px;
}
body.theme-luv .resp-region-bar-regulator {
    width: 100%;
    display: block;
    text-align: center;
    font-size: 11.5px;
    color: var(--luv-text-dim);
    opacity: 0.75;
    margin-top: 2px;
}
body.theme-luv .resp-region-bar-btn {
    margin-left: 4px;
    padding: 6px 12px;
    background: transparent;
    color: var(--luv-orange);
    border: 1px solid rgba(255, 138, 31, 0.45);
    border-radius: 999px;
    font-family: var(--luv-font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}
body.theme-luv .resp-region-bar-btn:hover {
    background: var(--luv-orange);
    color: #1a0a00;
    border-color: var(--luv-orange);
}

/* Modal sélection région ────────────────────────────────*/
body.theme-luv .resp-region-overlay {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(5, 10, 22, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
body.theme-luv .resp-region-overlay[hidden] {
    display: none;
}
body.theme-luv .resp-region-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

body.theme-luv .resp-region-modal {
    position: relative;
    width: 100%;
    max-width: 560px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 32px 28px 24px;
    background: linear-gradient(180deg, var(--luv-card) 0%, #0a1428 100%);
    border: 1px solid rgba(255, 138, 31, 0.35);
    border-radius: var(--luv-r-lg);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 40px rgba(255, 138, 31, 0.18);
    color: var(--luv-text);
    text-align: center;
    transform: translateY(14px) scale(0.97);
    transition: transform 0.28s cubic-bezier(0.2, 0.7, 0.3, 1);
}
body.theme-luv .resp-region-overlay.is-visible .resp-region-modal {
    transform: translateY(0) scale(1);
}

body.theme-luv .resp-region-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 50%;
    color: var(--luv-text-mute);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
}
body.theme-luv .resp-region-close:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--luv-text);
}

body.theme-luv .resp-region-modal-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 138, 31, 0.10);
    border: 1px solid rgba(255, 138, 31, 0.35);
    color: var(--luv-orange);
}

body.theme-luv .resp-region-title {
    font-family: var(--luv-font-display);
    font-size: clamp(24px, 3.4vw, 30px);
    font-weight: 400;
    color: var(--luv-text);
    margin: 0 0 10px;
    letter-spacing: 0.3px;
}
body.theme-luv .resp-region-title .text-accent {
    color: var(--luv-green);
}

body.theme-luv .resp-region-text {
    color: var(--luv-text-dim);
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 22px;
}

body.theme-luv .resp-region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}

body.theme-luv .resp-region-pick {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--luv-line);
    border-radius: var(--luv-r-md);
    color: var(--luv-text);
    font-family: var(--luv-font-body);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
body.theme-luv .resp-region-pick:hover {
    background: rgba(255, 138, 31, 0.08);
    border-color: var(--luv-orange);
    transform: translateY(-1px);
}
body.theme-luv .resp-region-pick-flag {
    font-size: 26px;
    line-height: 1;
}
body.theme-luv .resp-region-pick-name {
    color: var(--luv-text);
}

body.theme-luv .resp-region-hint {
    color: var(--luv-text-mute);
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}

/* Responsive ────────────────────────────────────────────*/
@media (max-width: 600px) {
    body.theme-luv .resp-hero { padding: 60px 16px 32px; }
    body.theme-luv .resp-engagement,
    body.theme-luv .resp-prevention,
    body.theme-luv .resp-tools,
    body.theme-luv .resp-resources { padding: 40px 16px; }
    body.theme-luv .resp-cta { padding: 40px 20px; margin: 20px 16px 60px; }

    body.theme-luv .resp-region-modal { padding: 24px 20px 18px; }
    body.theme-luv .resp-region-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
    body.theme-luv .resp-region-bar {
        flex-direction: column;
        border-radius: var(--luv-r-md);
        padding: 12px 16px;
    }
    body.theme-luv .resp-region-bar-btn { margin-left: 0; }
}

/* ── Cibles tactiles ≥44px sur mobile (audit UI/UX 06/2026) ── */
@media (max-width: 768px) {
    body.theme-luv .resp-region-bar-btn {
        min-height: 44px;
    }
    body.theme-luv .resp-region-close {
        width: 44px;
        height: 44px;
    }
}
