/* Variables CSS */
:root {
    --shadow-neon: 0 0 10px rgba(0, 255, 0, 0.3), 0 0 20px rgba(0, 255, 0, 0.2), 0 0 30px rgba(0, 255, 0, 0.1);
    --shadow-neon-strong: 0 0 15px rgba(0, 255, 0, 0.5), 0 0 30px rgba(0, 255, 0, 0.3), 0 0 45px rgba(0, 255, 0, 0.2);
}

/* Grid Background */
.grid-bg {
    background-image: 
        linear-gradient(rgba(0, 255, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 0, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Scanline Effect */
.scanline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 255, 0, 0.03) 0px,
        transparent 1px,
        transparent 2px,
        rgba(0, 255, 0, 0.03) 3px
    );
    pointer-events: none;
    z-index: 10;
}

.scanline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to bottom, transparent, rgba(0, 255, 0, 0.3), transparent);
    animation: scan 8s linear infinite;
    pointer-events: none;
    z-index: 11;
}

@keyframes scan {
    0% { top: 0; }
    100% { top: 100%; }
}

/* Neon Glow Effects */
.neon-glow {
    text-shadow: var(--shadow-neon);
}

.neon-glow-strong {
    text-shadow: var(--shadow-neon-strong);
}

.neon-box-glow {
    box-shadow: var(--shadow-neon);
}

.neon-box-glow-strong {
    box-shadow: var(--shadow-neon-strong);
}

/* Typing Cursor */
.typing-cursor::after {
    content: '▊';
    animation: blink 1s infinite;
    color: #00FF00;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Terminal Box */
.terminal-box {
    background-color: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 0.5rem;
    padding: 1rem;
    font-family: 'JetBrains Mono', monospace;
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 255, 0, 0.2);
}

.terminal-dots {
    display: flex;
    gap: 0.375rem;
}

.terminal-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
}

.terminal-dot-red { background-color: #ef4444; }
.terminal-dot-yellow { background-color: #f59e0b; }
.terminal-dot-green { background-color: #10b981; }

/* Navigation Links */
.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s;
    color: #737373;
}

.nav-link:hover {
    color: #00FF00;
    background-color: rgba(0, 255, 0, 0.05);
}

.nav-link.active {
    color: #00FF00;
    background-color: rgba(0, 255, 0, 0.1);
    box-shadow: var(--shadow-neon);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
    color: #737373;
}

.mobile-nav-link:hover {
    color: #00FF00;
    background-color: rgba(0, 255, 0, 0.05);
}

/* Buttons */
.btn-primary {
    background-color: #00FF00;
    color: #000000;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    box-shadow: var(--shadow-neon);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #00FF41;
    box-shadow: var(--shadow-neon-strong);
    transform: translateY(-1px);
}

.btn-outline {
    border: 2px solid #00FF00;
    color: #00FF00;
    background: transparent;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-outline:hover {
    background-color: rgba(0, 255, 0, 0.1);
    box-shadow: var(--shadow-neon);
}

/* Cards */
.card {
    background-color: rgba(18, 18, 18, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s;
}

.card:hover {
    border-color: #00FF00;
    box-shadow: var(--shadow-neon);
    transform: scale(1.02);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: #0a0a0a;
    border: 1px solid rgba(0, 255, 0, 0.5);
    border-radius: 0.5rem;
    max-width: 48rem;
    max-height: 90vh;
    overflow-y: auto;
    width: 100%;
    position: relative;
}

/* Toast Notifications */
.toast {
    background-color: #121212;
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 0.5rem;
    padding: 1rem;
    min-width: 300px;
    animation: slideIn 0.3s ease-out;
}

.toast.success { border-color: #10b981; }
.toast.error { border-color: #ef4444; }
.toast.warning { border-color: #f59e0b; }

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid;
}

.badge-primary {
    background-color: rgba(0, 255, 0, 0.2);
    color: #00FF00;
    border-color: rgba(0, 255, 0, 0.3);
}

.badge-accent {
    background-color: rgba(0, 255, 255, 0.2);
    color: #00FFFF;
    border-color: rgba(0, 255, 255, 0.3);
}

.badge-warning {
    background-color: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.3);
}

.badge-success {
    background-color: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.3);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 0, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 255, 0, 0.5);
}

/* Selection */
::selection {
    background: rgba(0, 255, 0, 0.3);
    color: #ffffff;
}

/* Tabs */
.tabs {
    display: flex;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(0, 255, 0, 0.3);
    margin-bottom: 1rem;
}

.tab {
    padding: 0.75rem 1.5rem;
    border: none;
    background: transparent;
    color: #737373;
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

.tab:hover {
    color: #00FF00;
}

.tab.active {
    color: #00FF00;
    background-color: rgba(0, 255, 0, 0.1);
    border-bottom-color: #00FF00;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Utilities */
.text-gradient-neon {
    background: linear-gradient(135deg, #00FF41, #00FFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

}

/* ========================================
   HELP PAGE STYLES
======================================== */

/* Guide Cards Grid */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.guide-card {
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.guide-card:hover::before {
    left: 100%;
}

.guide-card:hover {
    border-color: rgba(0, 255, 0, 0.6);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
    transform: translateY(-5px);
}

.guide-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(0, 255, 0, 0.5));
}

.guide-card h3 {
    color: #00FF41;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-align: center;
}

.guide-card p {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
}

.guide-card a {
    color: #00FFFF;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.guide-card a:hover {
    color: #00FF41;
}

/* FAQ Styles */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.faq-category {
    background: rgba(18, 18, 18, 0.6);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.faq-category h3 {
    color: #00FF41;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 255, 0, 0.3);
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 255, 0, 0.4);
}

.faq-item.active {
    border-color: rgba(0, 255, 0, 0.6);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(38, 38, 38, 0.6);
    cursor: pointer;
    color: #e0e0e0;
    font-weight: 500;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: rgba(0, 255, 0, 0.05);
    color: #00FF41;
}

.faq-icon {
    color: #00FF41;
    font-size: 0.875rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(90deg);
}

.faq-answer {
    padding: 1.25rem;
    background: rgba(10, 10, 10, 0.8);
    color: #b0b0b0;
    line-height: 1.7;
    border-top: 1px solid rgba(0, 255, 0, 0.1);
}

.faq-answer p {
    margin-bottom: 0.75rem;
}

.faq-answer ul {
    list-style: none;
    padding-left: 1rem;
    margin: 0.5rem 0;
}

.faq-answer ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.faq-answer ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #00FF41;
}

.faq-answer code {
    background: rgba(0, 255, 0, 0.1);
    color: #00FF41;
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
}

.faq-answer a {
    color: #00FFFF;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.faq-answer a:hover {
    color: #00FF41;
}

/* Resources Grid */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.resource-card {
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.resource-card:hover {
    border-color: rgba(0, 255, 0, 0.6);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
    transform: translateY(-3px);
}

.resource-card h3 {
    color: #00FF41;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.resource-card ul {
    list-style: none;
    padding: 0;
}

.resource-card ul li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: #e0e0e0;
}

.resource-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00FF41;
}

.resource-card a {
    color: #00FFFF;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.resource-card a:hover {
    color: #00FF41;
    text-decoration: underline;
    transform: translateX(3px);
}

/* Help Section */
.help-section {
    margin: 3rem 0;
    padding: 2rem 0;
}

.help-section .section-title {
    font-size: 2rem;
    color: #00FF41;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.help-section .terminal-prompt {
    color: #00FFFF;
    font-size: 1.2rem;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .guide-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question {


/* ========================================
   PARCOURS DÉBUTANT STYLES
======================================== */

.stat-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 1rem 1.5rem;
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.stat-badge:hover {
    border-color: rgba(0, 255, 0, 0.6);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 1rem;
        font-size: 0.9rem;
    }
}
}