/* ==========================================
   CSS RESET & VARIABLES
   ========================================== */
:root {
    --bg-deep: #0a0908;
    --bg-main: #12100e;
    --bg-card: #1c1815;
    --bg-card-hover: #26211d;
    --border-color: #352d27;
    --border-hover: #854d0e;
    
    --text-primary: #efe8de;
    --text-secondary: #c9bfae;
    --text-dark: #12100e;
    
    --accent: #d97706; /* Copper */
    --accent-glow: rgba(217, 119, 6, 0.3);
    --gold: #eab308;
    --red: #b91c1c;
    
    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-title: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: clip; /* empêche tout débordement horizontal (lueurs, grain) sans casser position:sticky */
}

body {
    background-color: var(--bg-deep);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ==========================================
   REUSABLE COMPONENTS
   ========================================== */
.accent {
    color: var(--accent);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #9a3412);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.6);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(28, 24, 21, 0.6);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(28, 24, 21, 0.9);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

.badge {
    display: inline-block;
    align-self: flex-start;
    background: rgba(217, 119, 6, 0.15);
    color: var(--accent);
    border: 1px solid rgba(217, 119, 6, 0.3);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge.font-danger {
    background: rgba(185, 28, 28, 0.15);
    color: #ef4444;
    border-color: rgba(185, 28, 28, 0.3);
}

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

.section-subtitle {
    font-family: var(--font-body);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #fff;
}

.title-divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    margin: 15px auto 0;
    position: relative;
}

.title-divider::before, .title-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent);
}

.title-divider::before { left: -12px; }
.title-divider::after { right: -12px; }

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(10, 9, 8, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(53, 45, 39, 0.5);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    height: 70px;
    background: rgba(10, 9, 8, 0.96);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
}

.logo-icon {
    font-size: 1.6rem;
    color: var(--accent);
}

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

.nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-link:hover, .nav-link.active {
    color: #fff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.btn-nav {
    padding: 8px 18px;
    font-size: 0.85rem;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scale(1.03);
    animation: slow-zoom 20s ease-in-out infinite alternate;
}

@keyframes slow-zoom {
    0% { transform: scale(1.03); }
    100% { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(10, 9, 8, 0.4) 0%, 
        rgba(10, 9, 8, 0.7) 60%, 
        var(--bg-deep) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    z-index: 10;
    transform: translateY(20px);
    animation: fade-up 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes fade-up {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-tagline {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-title {
    font-family: var(--font-title);
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.scroll-indicator:hover {
    color: #fff;
}

.scroll-text {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-arrow {
    font-size: 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats-section {
    position: relative;
    z-index: 20;
    margin-top: -60px;
    padding: 0 20px;
    margin-bottom: 60px;
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat-card {
    background: rgba(28, 24, 21, 0.75);
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--accent);
    padding: 30px;
    text-align: center;
    border-radius: 4px;
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(217, 119, 6, 0.5);
    box-shadow: 0 15px 35px rgba(217, 119, 6, 0.1);
}

.stat-icon {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.stat-number {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features-section {
    background-color: var(--bg-main);
    padding: 80px 20px;
    border-top: 1px solid rgba(53, 45, 39, 0.5);
}

.tabs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tabs-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(28, 24, 21, 0.5);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 14px 26px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-btn:hover {
    color: #fff;
    border-color: var(--accent);
    background: rgba(28, 24, 21, 0.8);
}

.tab-btn.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

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

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(217, 119, 6, 0.1);
}

.card-image-wrap {
    height: 180px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: var(--bg-deep);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.feature-card:hover .card-image {
    transform: scale(1.05);
}

.card-image-placeholder {
    height: 100%;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.8);
}


.card-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(28,24,21,0.9), rgba(12,11,10,0.6));
    z-index: 1;
}

/* Placer les fonds avec dégradés thématiques */
.legal-1 { background-image: radial-gradient(circle, #2b2319 0%, #15110c 100%); color: var(--accent); }
.legal-2 { background-image: radial-gradient(circle, #27261a 0%, #13120d 100%); color: var(--gold); }
.legal-3 { background-image: radial-gradient(circle, #2c2522 0%, #171312 100%); color: #e28743; }
.legal-4 { background-image: radial-gradient(circle, #1d2b1f 0%, #0e1610 100%); color: #4ade80; }

.illegal-1 { background-image: radial-gradient(circle, #2a1a1b 0%, #150d0e 100%); color: #ef4444; }
.illegal-2 { background-image: radial-gradient(circle, #2b211a 0%, #15100c 100%); color: #f59e0b; }
.illegal-3 { background-image: radial-gradient(circle, #252a1a 0%, #12150d 100%); color: #84cc16; }
.illegal-4 { background-image: radial-gradient(circle, #2f1d1d 0%, #180e0e 100%); color: #f43f5e; }

.survival-1 { background-image: radial-gradient(circle, #2e201b 0%, #17100d 100%); color: #f97316; }
.survival-2 { background-image: radial-gradient(circle, #2c251d 0%, #16120e 100%); color: #eab308; }
.survival-3 { background-image: radial-gradient(circle, #1a272b 0%, #0d1416 100%); color: #38bdf8; }
.survival-4 { background-image: radial-gradient(circle, #242220 0%, #121110 100%); color: #a1a1aa; }

.card-image-placeholder i {
    z-index: 2;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
    transition: var(--transition);
}

.feature-card:hover .card-image-placeholder i {
    transform: scale(1.15);
}

.card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.card-title {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.card-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ==========================================
   JOIN TIMELINE SECTION
   ========================================== */
.join-section {
    background-color: var(--bg-deep);
    padding: 80px 20px;
    border-top: 1px solid rgba(53, 45, 39, 0.5);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(53, 45, 39, 0.2) 0%, 
        var(--border-color) 15%, 
        var(--border-color) 85%, 
        rgba(53, 45, 39, 0.2) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 90px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease-out;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-badge {
    position: absolute;
    left: 16px;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
    z-index: 5;
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.timeline-item:hover .timeline-badge {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}

.timeline-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 28px;
    position: relative;
    transition: var(--transition);
}

.timeline-panel::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 20px;
    width: 14px;
    height: 14px;
    background: var(--bg-card);
    border-left: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    transform: rotate(45deg);
}

.timeline-item:hover .timeline-panel {
    border-color: var(--accent);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.timeline-title {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.timeline-panel p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.timeline-panel p:last-child {
    margin-bottom: 0;
}

.timeline-link {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.timeline-link:hover {
    color: #fff;
}

.timeline-link i {
    transition: var(--transition);
}

.timeline-link:hover i {
    transform: translateX(4px);
}

.btn-copy-footer {
    padding: 8px 18px;
    font-size: 0.85rem;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background-color: #080706;
    padding: 60px 20px 20px;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
}

.footer-about p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 400px;
}

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-body);
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 4px;
    background: rgba(28, 24, 21, 0.6);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-2px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 25px;
    border-top: 1px solid rgba(53, 45, 39, 0.3);
    text-align: center;
    color: rgba(201, 191, 174, 0.4);
    font-size: 0.8rem;
}

/* ==========================================
   TOAST NOTIFICATIONS
   ========================================== */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: rgba(28, 24, 21, 0.95);
    border-left: 4px solid var(--accent);
    border-right: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 22px;
    border-radius: 4px;
    color: var(--text-primary);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(8px);
    transform: translateX(120%);
    animation: toast-in 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    font-size: 0.9rem;
    font-weight: 500;
}

@keyframes toast-in {
    to { transform: translateX(0); }
}

.toast.fade-out {
    animation: toast-out 0.4s ease forwards;
}

@keyframes toast-out {
    to { transform: translateX(120%); opacity: 0; }
}

.toast-icon {
    color: var(--accent);
    font-size: 1.1rem;
}

/* ==========================================
   JOBS SECTION
   ========================================== */
.jobs-section {
    background-color: var(--bg-deep);
    padding: 80px 20px;
    border-top: 1px solid rgba(53, 45, 39, 0.5);
}

.jobs-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.job-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.job-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4), 0 0 15px rgba(217, 119, 6, 0.1);
}

.job-image-wrap {
    height: 160px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: var(--bg-deep);
}

.job-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.job-item:hover .job-image {
    transform: scale(1.05);
}

.job-icon-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(28,24,21,0.9), rgba(12,11,10,0.6));
}

.job-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(217, 119, 6, 0.1);
    border: 1px solid rgba(217, 119, 6, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.4rem;
    transition: var(--transition);
}

.job-item:hover .job-icon-wrap {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}

.job-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.job-item h4 {
    font-family: var(--font-title);
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 10px;
}

.job-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.job-badge {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--accent);
    text-transform: uppercase;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-section {
    background-color: var(--bg-main);
    padding: 80px 20px;
    border-top: 1px solid rgba(53, 45, 39, 0.5);
}

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

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(217, 119, 6, 0.4);
}

.faq-question {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(28, 24, 21, 0.5);
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.faq-question i {
    color: var(--accent);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 28px 24px 28px;
    border-top: 1px solid rgba(53, 45, 39, 0.3);
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================
   CUSTOM SCROLLBAR
   ========================================== */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--accent), #9a3412);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* ==========================================
   AMBIENT GLOWS
   ========================================== */
/* Lueurs d'ambiance : position FIXE (un élément fixe ne crée jamais de débordement
   horizontal, quelle que soit la largeur du viewport). pointer-events:none + z-index:0
   pour rester purement décoratives, derrière le contenu. */
body::before {
    content: '';
    position: fixed;
    width: 70vw;
    max-width: 1000px;
    aspect-ratio: 1 / 1;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.05) 0%, rgba(0,0,0,0) 70%);
    top: 15%;
    left: -15vw;
    pointer-events: none;
    z-index: 0;
}
body::after {
    content: '';
    position: fixed;
    width: 70vw;
    max-width: 1000px;
    aspect-ratio: 1 / 1;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.05) 0%, rgba(0,0,0,0) 70%);
    top: 55%;
    right: -15vw;
    pointer-events: none;
    z-index: 0;
}

/* ==========================================
   GALLERY SECTION
   ========================================== */
.gallery-section {
    background-color: var(--bg-deep);
    padding: 80px 20px;
    border-top: 1px solid rgba(53, 45, 39, 0.5);
    position: relative;
    z-index: 10;
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 9, 8, 0.9) 0%, rgba(10, 9, 8, 0.2) 60%, rgba(10, 9, 8, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.gallery-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.gallery-overlay h3 {
    font-family: var(--font-title);
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(217, 119, 6, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ==========================================
   CLIPS / VIDÉOS SECTION
   ========================================== */
.clips-section {
    background-color: var(--bg-main);
    padding: 80px 20px;
    border-top: 1px solid rgba(53, 45, 39, 0.5);
    position: relative;
    z-index: 10;
}

.clips-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.clip-item {
    position: relative;
    margin: 0;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.clip-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(217, 119, 6, 0.15);
}

.clip-media {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}

.clip-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Bouton de lecture central (style western / doré) */
.clip-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid rgba(234, 179, 8, 0.6);
    background: rgba(10, 9, 8, 0.55);
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(217, 119, 6, 0.25);
}

/* recentre l'icône triangle de lecture */
.clip-play i {
    margin-left: 4px;
}

.clip-item:hover .clip-play {
    transform: translate(-50%, -50%) scale(1.08);
    border-color: var(--accent);
    color: #fff;
    background: rgba(217, 119, 6, 0.85);
}

.clip-item.playing .clip-play,
.clip-item.playing .clip-badge {
    opacity: 0;
    pointer-events: none;
}

/* Badge durée du clip */
.clip-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #efe8de;
    background: rgba(10, 9, 8, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: var(--transition);
}

.clip-badge i {
    color: var(--accent);
}

/* Légende sous le clip */
.clip-info {
    padding: 16px 20px 18px;
    border-top: 1px solid rgba(53, 45, 39, 0.6);
}

.clip-tag {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.clip-info h3 {
    font-family: var(--font-title);
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
}

/* ==========================================
   LORE SECTION
   ========================================== */
.lore-section {
    background-color: var(--bg-main);
    padding: 80px 20px;
    border-top: 1px solid rgba(53, 45, 39, 0.5);
}

.lore-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(28, 24, 21, 0.4);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 4px;
    position: relative;
}

#lore-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
}

.lore-decor {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 25px;
    opacity: 0.6;
}

/* ==========================================
   FACTIONS SECTION
   ========================================== */
.factions-section {
    background-color: var(--bg-deep);
    padding: 80px 20px;
    border-top: 1px solid rgba(53, 45, 39, 0.5);
}

.factions-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faction-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.faction-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.faction-image-wrap {
    height: 180px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: var(--bg-deep);
}

.faction-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.faction-card:hover .faction-image {
    transform: scale(1.05);
}

.faction-icon-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--accent);
    background: linear-gradient(135deg, rgba(28,24,21,0.9), rgba(12,11,10,0.6));
}

.faction-icon {
    transition: var(--transition);
}

.faction-content h3 {
    font-family: var(--font-title);
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 10px;
}

.faction-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================
   WHY US SECTION
   ========================================== */
.why-us-section {
    background-color: var(--bg-main);
    padding: 80px 20px;
    border-top: 1px solid rgba(53, 45, 39, 0.5);
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    align-items: center;
}

.why-us-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-us-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.why-icon {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.why-text h4 {
    font-family: var(--font-body);
    font-weight: 700;
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.why-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.why-us-badge-card {
    background: radial-gradient(circle at top right, rgba(217, 119, 6, 0.15) 0%, rgba(28, 24, 21, 0.95) 70%);
    border: 1px solid var(--border-hover);
    padding: 40px;
    border-radius: 4px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.badge-card-icon {
    font-size: 3rem;
    color: var(--accent);
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

.why-us-badge-card h3 {
    font-family: var(--font-title);
    font-size: 1.6rem;
    color: #fff;
}

.why-us-badge-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================
   MUSIC PLAYER
   ========================================== */
.music-player {
    position: fixed;
    left: 35px;
    bottom: 35px;
    background: rgba(28, 24, 21, 0.85);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--accent);
    backdrop-filter: blur(12px);
    padding: 12px 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 999;
    transition: var(--transition);
}

.music-player:hover {
    border-color: var(--accent);
    box-shadow: 0 15px 35px rgba(217,119,6,0.15);
}

.player-disk {
    font-size: 1.6rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.disk-icon {
    transition: transform 0.1s linear;
}

.music-player.playing .disk-icon {
    animation: spin 5s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.player-info {
    display: flex;
    flex-direction: column;
    width: 140px;
}

.track-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-artist {
    font-size: 0.7rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.btn-control {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 0.9rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    transition: var(--transition);
}

.btn-control:hover {
    background: var(--accent);
    color: #fff;
}

/* Boutons précédent / suivant (playlist) — un peu plus petits */
.btn-control-sm {
    width: 26px;
    height: 26px;
    font-size: 0.72rem;
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.volume-icon {
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.volume-icon:hover {
    color: #fff;
}

#volume-slider {
    width: 60px;
    height: 3px;
    background: var(--border-color);
    outline: none;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    -webkit-appearance: none;
}

#volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    transition: var(--transition);
}

#volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* ==========================================
   MECHANICS SECTION
   ========================================== */
.mechanics-section {
    background-color: var(--bg-main);
    padding: 80px 20px;
    border-top: 1px solid rgba(53, 45, 39, 0.5);
    position: relative;
    z-index: 10;
}

.mechanics-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mechanic-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-bottom: 3px solid var(--accent);
    padding: 35px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.mechanic-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4), 0 0 15px rgba(217, 119, 6, 0.1);
}

.mechanic-image-wrap {
    width: 100%;
    height: 165px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 25px;
    background: var(--bg-deep);
    border: 1px solid var(--border-color);
}

.mechanic-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.mechanic-card:hover .mechanic-image {
    transform: scale(1.05);
}

.mechanic-icon-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mechanic-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(217, 119, 6, 0.1);
    border: 1px solid rgba(217, 119, 6, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.8rem;
    transition: var(--transition);
}

.mechanic-card:hover .mechanic-icon-wrap {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}

.mechanic-card h3 {
    font-family: var(--font-title);
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 15px;
}

.mechanic-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================
   SECTION INTRO (sous-texte de titre)
   ========================================== */
.section-intro {
    max-width: 640px;
    margin: 18px auto 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* ==========================================
   REGIONS SECTION (Univers / Explorez l'Ouest)
   ========================================== */
.regions-section {
    background-color: var(--bg-main);
    padding: 80px 20px;
    border-top: 1px solid rgba(53, 45, 39, 0.5);
}

.regions-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.region-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--accent);
    border-radius: 4px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition);
}

.region-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(217, 119, 6, 0.15);
}

.region-head {
    display: flex;
    align-items: center;
    gap: 16px;
}

.region-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(217, 119, 6, 0.1);
    border: 1px solid rgba(217, 119, 6, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.3rem;
    transition: var(--transition);
}

.region-card:hover .region-icon {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 15px var(--accent-glow);
}

.region-titles h3 {
    font-family: var(--font-title);
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.2;
}

.region-hub {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.region-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex-grow: 1;
}

.region-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.region-tag {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 4px 10px;
    border-radius: 20px;
    transition: var(--transition);
}

.region-card:hover .region-tag {
    border-color: rgba(217, 119, 6, 0.3);
    color: var(--text-primary);
}

/* ==========================================
   MODULES SECTION (Tout ce que propose RDU)
   ========================================== */
.modules-section {
    background-color: var(--bg-deep);
    padding: 80px 20px;
    border-top: 1px solid rgba(53, 45, 39, 0.5);
    position: relative;
    z-index: 10;
}

.modules-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.module-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: var(--transition);
}

.module-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    background-color: var(--bg-card-hover);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.module-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(217, 119, 6, 0.1);
    border: 1px solid rgba(217, 119, 6, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    transition: var(--transition);
}

.module-card:hover .module-icon {
    background: var(--accent);
    color: #fff;
}

.module-text h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 3px;
}

.module-text p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

/* ==========================================
   UPDATES / CHANGELOG SECTION (Dernières mises à jour)
   ========================================== */
.updates-section {
    background-color: var(--bg-main);
    padding: 80px 20px;
    border-top: 1px solid rgba(53, 45, 39, 0.5);
}

.updates-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 22px;
}

.update-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--accent);
    border-radius: 4px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: var(--transition);
}

.update-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(217, 119, 6, 0.15);
}

.update-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.update-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(217, 119, 6, 0.1);
    border: 1px solid rgba(217, 119, 6, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
    transition: var(--transition);
}

.update-card:hover .update-icon {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 15px var(--accent-glow);
}

.update-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.update-date {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.update-tag {
    align-self: flex-start;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--accent);
    background: rgba(217, 119, 6, 0.1);
    border: 1px solid rgba(217, 119, 6, 0.3);
    padding: 3px 9px;
    border-radius: 20px;
}

.update-title {
    font-family: var(--font-title);
    font-size: 1.12rem;
    color: #fff;
    line-height: 1.25;
}

.update-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================
   GETTING STARTED SECTION (Vos premiers pas)
   ========================================== */
.getting-started-section {
    background-color: var(--bg-main);
    padding: 80px 20px;
    border-top: 1px solid rgba(53, 45, 39, 0.5);
}

.gs-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    align-items: start;
}

.gs-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gs-step {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    transition: var(--transition);
}

.gs-step:hover {
    border-color: var(--accent);
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.gs-step-num {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    border: 2px solid var(--bg-main);
    box-shadow: 0 0 10px var(--accent-glow);
}

.gs-step-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(217, 119, 6, 0.08);
    border: 1px solid rgba(217, 119, 6, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.25rem;
}

.gs-step-body h4 {
    font-family: var(--font-title);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 4px;
}

.gs-step-body p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.gs-controls-card {
    background: radial-gradient(circle at top right, rgba(217, 119, 6, 0.12) 0%, rgba(28, 24, 21, 0.95) 70%);
    border: 1px solid var(--border-hover);
    border-radius: 4px;
    padding: 30px;
    position: sticky;
    top: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.gs-controls-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: var(--font-title);
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.gs-controls-header i {
    color: var(--accent);
}

.gs-controls-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 22px;
}

.gs-controls-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.gs-key {
    flex-shrink: 0;
    min-width: 54px;
    text-align: center;
    background: var(--bg-deep);
    border: 1px solid var(--border-color);
    border-bottom-width: 3px;
    border-radius: 5px;
    padding: 6px 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 0.03em;
}

.gs-controls-tip {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
    background: rgba(217, 119, 6, 0.05);
    border: 1px dashed rgba(217, 119, 6, 0.3);
    border-radius: 4px;
    padding: 12px 14px;
}

.gs-controls-tip i {
    color: var(--accent);
    margin-right: 4px;
}

.gs-controls-tip strong {
    color: var(--accent);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 900px) {
    .nav-links {
        display: none; /* Simplification mobile, menu principal caché */
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-desc {
        font-size: 1rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stats-section {
        margin-top: -30px;
    }
    
    .factions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mechanics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .clips-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .why-us-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .regions-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .modules-grid {
        grid-template-columns: 1fr;
    }

    .updates-grid {
        grid-template-columns: 1fr;
    }

    .gs-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .gs-controls-card {
        position: static;
    }

    .music-player {
        left: 20px;
        bottom: 20px;
        right: 20px;
        width: calc(100% - 40px);
        justify-content: space-between;
    }
    
    .player-info {
        width: auto;
        flex-grow: 1;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 55px;
    }
    
    .timeline-badge {
        left: 0;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .timeline-panel::before {
        display: none; /* Évite les décalages sur petits écrans */
    }
}

/* ==========================================
   AMÉLIORATIONS PREMIUM & EFFECTS GLOWS
   ========================================== */

/* Lueurs de survol de cartes améliorées */
.faction-card:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: var(--accent);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(217, 119, 6, 0.25);
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(234, 179, 8, 0.25);
}

.mechanic-card:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: var(--accent);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(217, 119, 6, 0.25);
}

.job-item:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: var(--accent);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(217, 119, 6, 0.25);
}

/* Overlay au survol des jobs */
.job-item {
    cursor: pointer;
    position: relative;
}

.job-image-wrap::after {
    content: 'Consulter le Guide RP  \f02d';
    font-family: var(--font-body), "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 9, 8, 0.82);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    opacity: 0;
    transition: var(--transition);
    z-index: 3;
    border-bottom: 2px solid var(--accent);
}

.job-item:hover .job-image-wrap::after {
    opacity: 1;
}

/* Pulsation active sur le lecteur de musique */
.music-player.playing {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(217, 119, 6, 0.25);
    animation: player-pulse 2s infinite alternate;
}

@keyframes player-pulse {
    0% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 10px rgba(217, 119, 6, 0.15);
    }
    100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(217, 119, 6, 0.35);
    }
}

/* Particules de braise / poussière */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(217,119,6,0.5) 0%, rgba(217,119,6,0) 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float-up 12s linear infinite;
}

@keyframes float-up {
    0% {
        transform: translateY(105vh) translateX(0) scale(0.6);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-5vh) translateX(80px) scale(0.2);
        opacity: 0;
    }
}

/* ==========================================
   MODAL DE TUTORIEL DE METIER
   ========================================== */

/* Arrière-plan flouté */
.job-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 5, 4, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 20px;
}

.job-modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

/* Fenêtre de dialogue */
.job-modal-window {
    background: rgba(20, 17, 14, 0.98);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--accent);
    width: 100%;
    max-width: 950px;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9), 0 0 40px rgba(217, 119, 6, 0.15);
    display: flex;
    flex-direction: column;
    position: relative;
    transform: scale(0.93) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

.job-modal-backdrop.active .job-modal-window {
    transform: scale(1) translateY(0);
}

/* Bouton de fermeture */
.btn-close-modal {
    position: absolute;
    top: 18px;
    right: 22px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.6rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.btn-close-modal:hover {
    color: #fff;
    transform: rotate(90deg);
}

/* Corps du modal */
.job-modal-body {
    display: grid;
    grid-template-columns: 320px 1fr;
    flex-grow: 1;
    overflow-y: auto;
    padding: 35px;
    gap: 35px;
}

/* Panneau gauche */
.job-modal-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.modal-job-image-wrap {
    width: 100%;
    height: 190px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
    background: var(--bg-deep);
}

.modal-job-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-job-icon-wrap {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border: 2px solid #14110e;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.modal-job-meta {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Encadré conseil de pro */
.modal-tip-card {
    background: rgba(217, 119, 6, 0.05);
    border: 1px dashed rgba(217, 119, 6, 0.3);
    padding: 20px;
    border-radius: 4px;
}

.modal-tip-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.modal-tip-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Panneau droit */
.job-modal-right {
    display: flex;
    flex-direction: column;
}

.modal-subtitle {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.15em;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.modal-title {
    font-family: var(--font-title);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.modal-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Ligne de temps (Timeline) */
.tutorial-timeline {
    position: relative;
    padding-left: 35px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 15px;
}

.tutorial-timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 5px;
    width: 2px;
    height: calc(100% - 20px);
    background: var(--border-color);
}

.timeline-step {
    position: relative;
}

.timeline-step-badge {
    position: absolute;
    left: -35px;
    top: 2px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #14110e;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-secondary);
    z-index: 5;
    transition: var(--transition);
}

.timeline-step:hover .timeline-step-badge {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 0 10px var(--accent-glow);
}

.timeline-step-content h5 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 4px;
}

.timeline-step-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Pied du modal */
.job-modal-footer {
    padding: 20px 35px;
    background: rgba(12, 11, 10, 0.9);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

/* Modal Responsive */
@media (max-width: 850px) {
    .job-modal-body {
        grid-template-columns: 1fr;
        padding: 25px;
        gap: 25px;
    }
    .modal-job-image-wrap {
        height: 150px;
    }
    .job-modal-footer {
        padding: 15px 25px;
    }
}

/* ==========================================================================
   ✦ FINITIONS ULTRA PREMIUM ✦
   Couche d'élégance cinématique posée par-dessus le thème de base.
   ========================================================================== */

/* --- Superposition cinématique : grain de pellicule + vignette --- */
.cinematic-overlay {
    position: fixed;
    inset: 0;
    z-index: 900;
    pointer-events: none;
    overflow: hidden;
}

.cinematic-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(125% 125% at 50% 28%, transparent 52%, rgba(0, 0, 0, 0.28) 78%, rgba(0, 0, 0, 0.6) 100%);
}

/* Quand un modal est ouvert, on masque l'overlay (grain + vignette) : son fond floute
   déjà toute la page, et superposer un backdrop-filter par-dessus un mix-blend-mode
   plein écran coûte très cher en composition. */
body:has(.job-modal-backdrop.active) .cinematic-overlay,
body:has(.system-modal-backdrop.active) .cinematic-overlay {
    display: none;
}

.cinematic-overlay::after {
    content: '';
    position: absolute;
    inset: -60%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.035;
    mix-blend-mode: overlay;
    animation: grain-shift 0.6s steps(3) infinite;
}

@keyframes grain-shift {
    0%   { transform: translate(0, 0); }
    33%  { transform: translate(-4%, 3%); }
    66%  { transform: translate(3%, -2%); }
    100% { transform: translate(-2%, -3%); }
}

/* --- Barre de progression de lecture --- */
.read-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 1001;
    pointer-events: none;
}

.read-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--accent) 60%, #9a3412);
    box-shadow: 0 0 12px var(--accent-glow);
    transition: width 0.1s linear;
}

/* --- Bouton « retour en haut » --- */
.back-to-top {
    position: fixed;
    right: 35px;
    bottom: 35px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-hover);
    background: rgba(28, 24, 21, 0.85);
    backdrop-filter: blur(10px);
    color: var(--accent);
    font-size: 1.05rem;
    cursor: pointer;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px) scale(0.85);
    pointer-events: none;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.back-to-top.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 28px rgba(217, 119, 6, 0.4);
}

/* --- Apparitions au défilement (reveal) --- */
.reveal-init {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.8, 0.25, 1),
                transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-in {
    opacity: 1;
    transform: none;
}

/* --- Titres de section : dégradé doré chaud + lueur --- */
.section-title {
    background: linear-gradient(180deg, #ffffff 0%, #f4e8cf 55%, #d9b78a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.45));
}

/* --- Accent en dégradé or → cuivre --- */
.accent {
    background: linear-gradient(180deg, var(--gold), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* --- Séparateur orné (diamant central) --- */
.title-divider {
    width: 160px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(217, 119, 6, 0.55) 18%, var(--accent) 50%, rgba(217, 119, 6, 0.55) 82%, transparent);
    margin: 22px auto 0;
}

.title-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 9px;
    background: var(--gold);
    border-radius: 1px;
    transform: translate(-50%, -50%) rotate(45deg);
    box-shadow: 0 0 14px var(--accent-glow);
}

.title-divider::after {
    display: none;
}

/* --- Hero : badge communautaire + titre à reflet doré --- */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 18px;
    margin-bottom: 24px;
    border: 1px solid rgba(217, 119, 6, 0.35);
    border-radius: 30px;
    background: rgba(28, 24, 21, 0.45);
    backdrop-filter: blur(8px);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-secondary);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.6);
    animation: pulse-dot 2.2s infinite;
}

@keyframes pulse-dot {
    0%   { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.55); }
    70%  { box-shadow: 0 0 0 8px rgba(217, 119, 6, 0); }
    100% { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0); }
}

.hero-tagline {
    position: relative;
    padding: 0 38px;
}

.hero-tagline::before,
.hero-tagline::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent));
}

.hero-tagline::before { left: 0; }
.hero-tagline::after  { right: 0; transform: scaleX(-1); }

.hero-title {
    background: linear-gradient(110deg, #ffffff 0%, #ffffff 38%, #ffe6bd 50%, #ffffff 62%, #ffffff 100%);
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 6px 26px rgba(0, 0, 0, 0.65));
    animation: hero-sheen 8s ease-in-out infinite;
}

@keyframes hero-sheen {
    0%, 100% { background-position: 120% 0; }
    50%      { background-position: -20% 0; }
}

/* --- Boutons primaires : reflet glissant au survol --- */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary > * {
    position: relative;
    z-index: 2;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -130%;
    width: 65%;
    height: 100%;
    background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.38), transparent);
    transform: skewX(-22deg);
    transition: left 0.65s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}

.btn-primary:hover::after {
    left: 150%;
}

/* --- Liseré supérieur doré qui se déploie au survol des cartes --- */
.job-item,
.feature-card,
.faction-card {
    position: relative;
}

.job-item::before,
.feature-card::before,
.faction-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--gold), var(--accent));
    box-shadow: 0 0 10px var(--accent-glow);
    transition: width 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 5;
}

.job-item:hover::before,
.feature-card:hover::before,
.faction-card:hover::before {
    width: 100%;
}

/* --- Cartes statistiques : chiffre lumineux --- */
.stat-number {
    text-shadow: 0 0 22px rgba(217, 119, 6, 0.25);
}

.stat-card {
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

/* --- Navbar : finition de luxe --- */
.navbar {
    box-shadow: inset 0 -1px 0 rgba(217, 119, 6, 0.06);
}

.logo-icon {
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

/* --- Lueur d'ambiance renforcée sur le lecteur audio en lecture --- */
.music-player {
    border-radius: 6px;
}

/* --- Accessibilité : respect de prefers-reduced-motion --- */
@media (prefers-reduced-motion: reduce) {
    .reveal-init {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .hero-title,
    .hero-badge-dot,
    .cinematic-overlay::after,
    .hero-bg,
    .scroll-arrow,
    .particle,
    .sys-section-badge,
    .job-badge,
    .server-status--online .status-dot {
        animation: none !important;
    }
}

/* --- Ajustements responsive premium --- */
@media (max-width: 900px) {
    .back-to-top {
        right: 20px;
        bottom: 92px;
        width: 44px;
        height: 44px;
    }
    .hero-badge {
        font-size: 0.65rem;
        letter-spacing: 0.16em;
        padding: 6px 14px;
    }
}

/* ==========================================================================
   ✦ CARTE MÉCANIQUE CLIQUABLE + MODAL SYSTÈME (guide détaillé)
   ========================================================================== */

/* --- Affordance de clic sur les cartes « systèmes » dotées d'un détail --- */
.mechanic-card--clickable {
    cursor: pointer;
}

.mechanic-cta {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    transition: var(--transition);
}

.mechanic-cta i {
    transition: transform 0.3s ease;
}

.mechanic-card--clickable:hover .mechanic-cta {
    color: var(--gold);
}

.mechanic-card--clickable:hover .mechanic-cta i {
    transform: translateX(5px);
}

.mechanic-card--clickable:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* Cartes Factions cliquables (réutilisent .mechanic-cta + le modal système) */
.faction-card--clickable { cursor: pointer; }
.faction-card--clickable:hover .mechanic-cta { color: var(--gold); }
.faction-card--clickable:hover .mechanic-cta i { transform: translateX(5px); }
.faction-card--clickable:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* --- Fond du modal --- */
.system-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(6, 5, 4, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.system-modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

/* --- Fenêtre --- */
.system-modal-window {
    background: rgba(20, 17, 14, 0.98);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--accent);
    width: 100%;
    max-width: 880px;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9), 0 0 40px rgba(217, 119, 6, 0.15);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transform: scale(0.93) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.system-modal-backdrop.active .system-modal-window {
    transform: scale(1) translateY(0);
}

/* --- En-tête --- */
.system-modal-head {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 35px 22px;
    border-bottom: 1px solid var(--border-color);
    background: radial-gradient(circle at top left, rgba(217, 119, 6, 0.1) 0%, rgba(28, 24, 21, 0) 60%);
}

.system-modal-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(217, 119, 6, 0.12);
    border: 1px solid rgba(217, 119, 6, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.7rem;
    box-shadow: 0 0 18px var(--accent-glow);
}

.system-modal-headtext { display: flex; flex-direction: column; }
.system-modal-headtext .modal-title { font-size: 1.7rem; margin-bottom: 8px; }
.system-modal-headtext .job-badge { align-self: flex-start; }

/* --- Corps défilant --- */
.system-modal-body {
    padding: 28px 35px;
    overflow-y: auto;
    flex-grow: 1;
}

.sys-intro {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 26px;
    padding-bottom: 22px;
    border-bottom: 1px dashed var(--border-color);
}

.sys-sections {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.sys-section {
    background: rgba(28, 24, 21, 0.45);
    border: 1px solid var(--border-color);
    border-left: 3px solid rgba(217, 119, 6, 0.5);
    border-radius: 4px;
    padding: 20px 22px;
}

.sys-section-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.sys-section-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(217, 119, 6, 0.1);
    border: 1px solid rgba(217, 119, 6, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1rem;
}

.sys-section-head h3 {
    font-family: var(--font-title);
    font-size: 1.15rem;
    color: #fff;
}

.sys-section-badge {
    margin-left: auto;
    align-self: flex-start;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #14110e;
    background: linear-gradient(180deg, var(--gold), var(--accent));
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 0 14px rgba(234, 179, 8, 0.35);
    animation: pulse-dot 2.2s infinite;
}

.sys-section-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.sys-list {
    list-style: none;
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.sys-list li {
    position: relative;
    padding-left: 22px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.sys-list li::before {
    content: '\f0a9'; /* arrow-circle-right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--accent);
    font-size: 0.8rem;
}

/* --- Tableau --- */
/* Conteneur scrollable : sur petit écran, SEUL le tableau défile
   horizontalement — jamais tout le corps du popup. */
.sys-table-wrap {
    margin-top: 14px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(217, 119, 6, 0.5) transparent;
}
.sys-table-wrap::-webkit-scrollbar { height: 6px; }
.sys-table-wrap::-webkit-scrollbar-track { background: transparent; }
.sys-table-wrap::-webkit-scrollbar-thumb {
    background: rgba(217, 119, 6, 0.5);
    border-radius: 3px;
}

.sys-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.86rem;
}

.sys-table th {
    background: rgba(217, 119, 6, 0.12);
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.72rem;
    padding: 9px 14px;
    text-align: left;
}

.sys-table td {
    padding: 9px 14px;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-color);
}

.sys-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.sys-table td:last-child,
.sys-table th:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--text-primary);
}

/* --- Commandes utiles --- */
.sys-commands {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid var(--border-color);
}

.sys-commands h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 14px;
}

.sys-commands h4 i { color: var(--accent); }

.sys-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sys-chip {
    font-size: 0.8rem;
    color: var(--text-secondary);
    background: var(--bg-deep);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 6px 12px;
}

/* --- Conseil --- */
.sys-tip {
    margin-top: 24px;
    background: rgba(217, 119, 6, 0.05);
    border: 1px dashed rgba(217, 119, 6, 0.3);
    border-radius: 4px;
    padding: 18px 20px;
}

.sys-tip-head {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.sys-tip p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Responsive modal système --- */
@media (max-width: 700px) {
    .system-modal-head {
        padding: 24px 22px 18px;
        gap: 14px;
    }
    .system-modal-icon { width: 50px; height: 50px; font-size: 1.4rem; }
    .system-modal-headtext .modal-title { font-size: 1.35rem; }
    .system-modal-body { padding: 22px; }
    .sys-section { padding: 16px 16px; }
    .sys-section-badge { margin-left: 0; }
    /* tableaux compacts : la plupart tiennent alors sans défilement */
    .sys-table { font-size: 0.78rem; }
    .sys-table th { padding: 8px 10px; font-size: 0.66rem; }
    .sys-table td { padding: 8px 10px; }
}

/* ==========================================
   CONVERSION — connexion directe & CTA final
   ========================================== */

/* Lien discret « copier l'IP » sous les boutons du hero */
.hero-copy-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 18px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    opacity: 0.8;
    transition: var(--transition);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.hero-copy-link i { color: var(--accent); }
.hero-copy-link:hover {
    opacity: 1;
    color: #fff;
    transform: translateY(-1px);
}

/* Badge « serveur en ligne » (preuve sociale temps réel) */
.server-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 auto 18px;
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    background: rgba(28, 24, 21, 0.6);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    backdrop-filter: blur(8px);
}
.server-status[hidden] { display: none; }
.server-status .status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--text-secondary);
    flex-shrink: 0;
}
.server-status--online {
    border-color: rgba(74, 158, 94, 0.5);
    color: #d7f0db;
}
.server-status--online .status-dot {
    background: #4ade80;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
    animation: status-pulse 2s infinite;
}
.server-status--offline {
    border-color: rgba(201, 145, 42, 0.5);
    color: #f0e0c0;
}
.server-status--offline .status-dot { background: var(--gold); }

@keyframes status-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
    70%  { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

/* Barre de points forts sous le hero (preuve de valeur immédiate) */
.hero-perks {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 22px;
    margin-top: 28px;
}
.hero-perks li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}
.hero-perks li i {
    color: var(--gold);
    font-size: 0.9rem;
}

/* Boutons d'action dans l'étape 3 « Connectez-vous » */
.timeline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

/* --- Bandeau final cinématique « L'OUEST N'ATTEND QUE VOUS » --- */
.final-cta-section {
    position: relative;
    overflow: hidden;
    padding: 110px 20px;
    text-align: center;
    isolation: isolate;
}

.final-cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/hero-bg.png');
    background-size: cover;
    background-position: center 35%;
    filter: saturate(0.85) brightness(0.55);
    transform: scale(1.05);
    z-index: -2;
}

.final-cta-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 50% 120%, rgba(217, 119, 6, 0.28) 0%, transparent 55%),
        linear-gradient(to bottom,
            var(--bg-deep) 0%,
            rgba(10, 9, 8, 0.72) 30%,
            rgba(10, 9, 8, 0.72) 70%,
            var(--bg-deep) 100%);
}

.final-cta-content {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
}

.final-cta-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(217, 119, 6, 0.1);
    border: 1px solid rgba(217, 119, 6, 0.3);
    padding: 7px 16px;
    border-radius: 30px;
    margin-bottom: 26px;
}

.final-cta-title {
    font-family: var(--font-title);
    font-size: clamp(2.1rem, 5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: #fff;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.7);
    background: linear-gradient(180deg, #fff 0%, #f3d8a8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.final-cta-desc {
    font-size: 1.12rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 20px auto 38px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.final-cta-hint {
    margin-top: 22px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    opacity: 0.78;
}
.final-cta-hint i { color: var(--accent); margin-right: 5px; }

@media (max-width: 600px) {
    .final-cta-section { padding: 80px 18px; }
    .final-cta-desc { font-size: 1rem; }
    .final-cta-section .hero-buttons .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .final-cta-bg { transform: none; }
}

/* ==========================================
   PACK DE BIENVENUE (argument de vente)
   ========================================== */
.welcome-kit-section {
    padding: 100px 20px;
    position: relative;
}

/* halo d'accent derrière la section pour la faire ressortir */
.welcome-kit-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 90vw);
    height: 320px;
    background: radial-gradient(ellipse at center, rgba(234, 179, 8, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.welcome-kit-section .section-header,
.wk-grid,
.wk-note { position: relative; z-index: 1; }

/* badge "GRATUIT" à côté du sous-titre, façon estampille */
.wk-free-badge {
    display: inline-block;
    margin-left: 10px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #14110e;
    background: linear-gradient(180deg, var(--gold), var(--accent));
    box-shadow: 0 0 16px rgba(234, 179, 8, 0.4);
    vertical-align: middle;
}

.wk-pickup {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(217, 119, 6, 0.1);
    border: 1px solid rgba(217, 119, 6, 0.3);
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 600;
}
.wk-pickup i { color: var(--accent); }

.wk-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.wk-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--bg-card) 0%, var(--bg-main) 100%);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 28px 26px;
    transition: var(--transition);
}

.wk-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(217, 119, 6, 0.25);
}

/* estampille "Offert" en coin */
.wk-ribbon {
    position: absolute;
    top: 16px;
    right: -34px;
    transform: rotate(45deg);
    width: 130px;
    text-align: center;
    padding: 5px 0;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #14110e;
    background: linear-gradient(180deg, var(--gold), var(--accent));
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.wk-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.wk-emoji { font-size: 2rem; line-height: 1; }

.wk-card-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
    background: rgba(217, 119, 6, 0.12);
    border: 1px solid rgba(217, 119, 6, 0.28);
}

.wk-card-title {
    font-family: var(--font-title);
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 8px;
}

.wk-card-tagline {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 18px;
    min-height: 2.8em;
}

.wk-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 18px;
    border-top: 1px dashed var(--border-color);
}

.wk-items li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.wk-items li i {
    color: var(--gold);
    font-size: 0.78rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.wk-note {
    max-width: 760px;
    margin: 36px auto 0;
    text-align: center;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.wk-note i { color: var(--accent); margin-right: 6px; }

@media (max-width: 900px) {
    .wk-grid { grid-template-columns: 1fr; max-width: 460px; }
    .welcome-kit-section { padding: 70px 18px; }
    .wk-card-tagline { min-height: 0; }
    .wk-free-badge { display: block; width: max-content; margin: 8px auto 0; }
}

/* ==========================================
   LIGHTBOX GALERIE
   ========================================== */
/* Indice de zoom sur les vignettes */
.gallery-item { cursor: pointer; }
.gallery-zoom {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: rgba(10, 9, 8, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0;
    transform: translateY(-6px);
    transition: var(--transition);
    pointer-events: none;
}
.gallery-item:hover .gallery-zoom,
.gallery-item:focus-visible .gallery-zoom {
    opacity: 1;
    transform: translateY(0);
}
.gallery-item:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* Fond plein écran */
.lightbox-backdrop {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: rgba(6, 5, 4, 0.92);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-figure {
    max-width: min(1100px, 92vw);
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin: 0;
    transform: scale(0.96);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.lightbox-backdrop.active .lightbox-figure { transform: scale(1); }

#lightbox-img {
    max-width: 100%;
    max-height: 76vh;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.7);
    object-fit: contain;
    background: var(--bg-card);
}

.lightbox-caption {
    text-align: center;
    color: #fff;
}
.lightbox-caption h3 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    margin-top: 4px;
}
.lightbox-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(217, 119, 6, 0.14);
    border: 1px solid rgba(217, 119, 6, 0.3);
    padding: 3px 12px;
    border-radius: 20px;
}
.lightbox-counter {
    display: block;
    margin-top: 8px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    letter-spacing: 0.08em;
}

/* Boutons (fermer / préc. / suiv.) */
.lightbox-btn {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    color: #fff;
    background: rgba(28, 24, 21, 0.7);
    border: 1px solid var(--border-color);
    font-size: 1.1rem;
    transition: var(--transition);
    z-index: 4001;
}
.lightbox-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.08);
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.08); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.08); }

@media (max-width: 700px) {
    .lightbox-backdrop { padding: 16px; }
    .lightbox-btn { width: 42px; height: 42px; font-size: 1rem; }
    .lightbox-close { top: 14px; right: 14px; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    #lightbox-img { max-height: 66vh; }
}

@media (prefers-reduced-motion: reduce) {
    .lightbox-backdrop, .lightbox-figure { transition: none; }
    .lightbox-figure { transform: none; }
}

/* ==========================================
   AIDE À L'INTÉGRATION DES IMAGES
   Badge « nom de fichier attendu » affiché sur chaque emplacement
   d'image VIDE (désactivable via ServerConfig.imageHints = false).
   ========================================== */
/* Sécurité : les conteneurs d'image servent d'ancrage au badge. */
.faction-image-wrap, .job-image-wrap, .mechanic-image-wrap,
.card-image-wrap, .gallery-item { position: relative; }

.img-filename-hint {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: calc(100% - 16px);
    font-family: 'Courier New', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(10, 9, 8, 0.88);
    border: 1px solid rgba(217, 119, 6, 0.45);
    padding: 4px 9px;
    border-radius: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
.img-filename-hint i { color: var(--accent); }
