/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --bg-input: #1e1e1e;
    --border-color: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #6b6b6b;
    --accent: #ffffff;
    --accent-hover: #cccccc;
    --neon-glow: 0 0 30px rgba(255, 255, 255, 0.05);
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --radius: 12px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* ============================================
   BACKGROUND CADRAGE
   ============================================ */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ============================================
   UTILITIES
   ============================================ */
.hidden {
    display: none !important;
}
.text-muted {
    color: var(--text-muted);
}
.text-secondary {
    color: var(--text-secondary);
}
.text-center {
    text-align: center;
}
.w-full {
    width: 100%;
}
.gap-1 { gap: 4px; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }

/* ============================================
   HOME PAGE
   ============================================ */
.home-page {
    position: relative;
    z-index: 1;
}

/* ============ NAVIGATION ============ */
.home-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 0 40px;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #ffffff;
}
.nav-logo svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
    opacity: 0.8;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: #ffffff;
}

.nav-btn {
    padding: 8px 20px;
    background: #ffffff;
    border-radius: 8px;
    color: #000000 !important;
    font-weight: 600 !important;
    transition: background 0.2s;
}
.nav-btn:hover {
    background: #cccccc !important;
    color: #000000 !important;
}

/* ============ HERO ============ */
.hero-section {
    padding: 140px 40px 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
}
.hero-container {
    max-width: 900px;
    margin: 0 auto;
}
.hero-logo {
    margin-bottom: 24px;
}
.hero-logo svg {
    width: 100px;
    height: 100px;
    color: #ffffff;
    opacity: 0.8;
    animation: pulseLogo 3s ease-in-out infinite;
}
@keyframes pulseLogo {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.98); }
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    letter-spacing: -2px;
    color: #ffffff;
    margin-bottom: 12px;
}
.hero-subtitle {
    font-size: 22px;
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 1px;
    min-height: 40px;
    margin-bottom: 32px;
}
.cursor {
    display: inline-block;
    width: 2px;
    height: 28px;
    background: #ffffff;
    margin-left: 4px;
    animation: blink 0.8s step-end infinite;
    vertical-align: text-bottom;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.btn-hero-primary {
    padding: 14px 32px;
    background: #ffffff;
    border: none;
    border-radius: 10px;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.btn-hero-primary:hover {
    background: #cccccc;
    transform: scale(1.02);
}
.btn-hero-primary svg {
    width: 20px;
    height: 20px;
    color: #000000;
}
.btn-hero-secondary {
    padding: 14px 32px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}
.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* ============ SECTIONS ============ */
.section-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 12px;
}
.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 40px;
}

/* ============ CRITERIA ============ */
.criteria-section {
    padding: 80px 40px;
    background: var(--bg-secondary);
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.criteria-container {
    max-width: 1100px;
    margin: 0 auto;
}
.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}
.criteria-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    cursor: default;
}
.criteria-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    transform: translateY(-2px);
}
.criteria-item.highlight {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}
.criteria-item.highlight:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
}
.criteria-icon {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 300;
}

/* ============ HOW IT WORKS ============ */
.how-section {
    padding: 80px 40px;
    background: var(--bg-primary);
    position: relative;
    z-index: 1;
}
.how-container {
    max-width: 1100px;
    margin: 0 auto;
}
.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}
.how-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}
.how-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}
.how-number {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 auto 16px;
}
.how-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}
.how-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============ FEATURES ============ */
.features-section {
    padding: 80px 40px;
    background: var(--bg-secondary);
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.features-container {
    max-width: 1100px;
    margin: 0 auto;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}
.feature-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: all 0.3s ease;
}
.feature-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.02);
}
.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--text-secondary);
}
.feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}
.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============ FOOTER ============ */
.home-footer {
    padding: 40px 40px 24px;
    background: var(--bg-primary);
    position: relative;
    z-index: 1;
    text-align: center;
}
.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}
.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}
.footer-logo svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
    opacity: 0.6;
}
.footer-text {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.footer-copy {
    font-size: 12px;
    color: var(--text-muted);
    opacity: 0.5;
}

/* ============================================
   LOGIN PAGE
   ============================================ */
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    z-index: 1;
    padding: 20px;
}
.login-container {
    width: 100%;
    max-width: 420px;
}
.login-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow), var(--neon-glow);
    position: relative;
    transition: box-shadow 0.3s ease;
}
.login-box:hover {
    box-shadow: var(--shadow), 0 0 50px rgba(255, 255, 255, 0.03);
}
.login-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: var(--radius);
    background: linear-gradient(45deg, rgba(255,255,255,0.1), transparent, rgba(255,255,255,0.1));
    background-size: 300% 300%;
    animation: neonBorder 4s ease-in-out infinite;
    z-index: -1;
    opacity: 0.5;
}
@keyframes neonBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.login-header {
    text-align: center;
    margin-bottom: 32px;
}
.login-header .logo {
    width: 48px;
    height: 48px;
    color: #ffffff;
    margin-bottom: 12px;
    opacity: 0.8;
}
.login-header h1 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #ffffff;
}
.login-header p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 4px;
}

/* ============================================
   FORM ELEMENTS
   ============================================ */
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}
.input-wrapper {
    position: relative;
}
.input-wrapper .input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    pointer-events: none;
}

input, select, textarea {
    width: 100%;
    padding: 12px 14px 12px 42px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary) !important;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
input:focus, select:focus, textarea:focus {
    border-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05), 0 0 30px rgba(255, 255, 255, 0.02);
}
input::placeholder, textarea::placeholder {
    color: var(--text-muted);
}

.btn-primary {
    width: 100%;
    padding: 14px;
    background: #ffffff;
    border: none;
    border-radius: 8px;
    color: #000000;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-primary:hover {
    background: #cccccc;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.05);
}
.btn-primary:active {
    transform: scale(0.98);
}
.btn-primary svg {
    width: 20px;
    height: 20px;
    color: #000000;
}

.btn-secondary {
    padding: 10px 28px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-secondary:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

.register-link {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-secondary);
}
.register-link a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}
.register-link a:hover {
    opacity: 0.7;
}

.error-message {
    margin-top: 16px;
    padding: 12px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    color: var(--danger);
    font-size: 14px;
    display: none;
}

/* ============================================
   DASHBOARD
   ============================================ */
.dashboard-page {
    display: flex;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* ============ SIDEBAR ============ */
.sidebar {
    width: 260px;
    background: var(--bg-secondary);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 100;
}
.sidebar-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 20px;
    border-bottom: 1px solid var(--border-color);
}
.sidebar-header .logo {
    width: 32px;
    height: 32px;
    color: #ffffff;
    opacity: 0.8;
}
.sidebar-header span {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #ffffff;
}
.sidebar-nav {
    list-style: none;
    padding: 16px 12px;
    flex: 1;
}
.sidebar-nav li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}
.sidebar-nav li:hover {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
}
.sidebar-nav li.active {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}
.sidebar-nav li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.sidebar-footer {
    padding: 16px 12px;
    border-top: 1px solid var(--border-color);
}
.sidebar-footer button {
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
}
.sidebar-footer button:hover {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    border-color: rgba(239, 68, 68, 0.2);
}
.sidebar-footer button svg {
    width: 20px;
    height: 20px;
}

/* ============ SUPPORT TOGGLE ============ */
.support-toggle {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 12px 16px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    color: var(--text-secondary) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: background 0.2s, color 0.2s !important;
    margin-top: 4px !important;
}
.support-toggle:hover {
    background: rgba(255, 255, 255, 0.03) !important;
    color: var(--text-primary) !important;
}
.support-toggle svg {
    flex-shrink: 0 !important;
}
.support-arrow {
    transition: transform 0.3s ease !important;
}
.support-submenu li {
    transition: background 0.2s, color 0.2s !important;
}
.support-submenu li:hover {
    background: rgba(255, 255, 255, 0.03) !important;
    color: var(--text-primary) !important;
}
.support-submenu li.active {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
}

/* ============ MAIN CONTENT ============ */
.main-content {
    margin-left: 260px;
    flex: 1;
    padding: 32px 40px;
    min-height: 100vh;
}
.page {
    display: none;
    animation: fadeIn 0.3s ease;
}
.page.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}
.page-header h2 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #ffffff;
}
.user-info {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ============================================
   SECTIONS DÉPLIABLES
   ============================================ */
.section {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.section:hover {
    border-color: rgba(255, 255, 255, 0.1);
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
}
.section-header:hover {
    background: rgba(255, 255, 255, 0.02);
}
.section-header h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}
.section-header .toggle-icon {
    color: var(--text-muted);
    transition: transform 0.3s ease;
}
.section-header .toggle-icon.open {
    transform: rotate(180deg);
}
.section-body {
    padding: 0 20px 20px 20px;
    display: none;
}
.section-body.open {
    display: block;
    animation: slideDown 0.3s ease;
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   RECHERCHE
   ============================================ */
.search-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    background: var(--bg-input);
    padding: 4px;
    border-radius: 10px;
}
.search-tab {
    flex: 1;
    padding: 10px 16px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
}
.search-tab:hover {
    color: var(--text-primary);
}
.search-tab.active {
    background: #ffffff;
    color: #000000;
}
.search-tab-content {
    display: none;
}
.search-tab-content.active {
    display: block;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}
.form-grid .form-group {
    margin-bottom: 0;
}
.form-grid input, .form-grid select {
    padding-left: 14px;
}

.search-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}
.search-actions .btn-primary {
    width: auto;
    padding: 10px 28px;
}

/* ============================================
   RÉSULTATS
   ============================================ */
.results-counter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    margin-bottom: 16px;
}
.results-counter .count {
    font-size: 14px;
    color: var(--text-secondary);
}
.results-counter .count strong {
    color: #ffffff;
    font-weight: 700;
}
.results-counter .badge {
    font-size: 12px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.result-card-full {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 12px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.result-card-full:hover {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.02);
}
.result-header-full {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}
.result-name-full {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    transition: opacity 0.2s;
}
.result-name-full:hover {
    opacity: 0.7;
}
.result-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}
.result-sources-badge {
    font-size: 12px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    padding: 2px 10px;
    border-radius: 12px;
}
.result-fields {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 8px 16px;
    margin-bottom: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}
.result-fields.open {
    display: grid;
    animation: slideDown 0.3s ease;
}
.result-field {
    display: flex;
    flex-direction: column;
    padding: 4px 0;
}
.result-field .field-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.result-field .field-value {
    font-size: 14px;
    color: var(--text-secondary);
    word-break: break-all;
}
.result-field .field-value.highlight {
    color: #ffffff;
}
.result-sources-full {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}
.result-sources-full .source-tag {
    font-size: 11px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    padding: 2px 10px;
    border-radius: 12px;
}
.result-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}
.btn-deep {
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.btn-deep:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}
.btn-deep svg {
    width: 14px;
    height: 14px;
}
.deep-panel {
    display: none;
    margin-top: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}
.deep-panel.open {
    display: block;
    animation: slideDown 0.3s ease;
}
.deep-panel h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

/* ============================================
   FAMILLE TREE
   ============================================ */
.family-tree {
    margin-top: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 6px;
}
.family-tree .tree-title {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.family-tree .tree-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    font-size: 13px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.family-tree .tree-item .relation {
    font-size: 10px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    padding: 2px 10px;
    border-radius: 4px;
}
.family-tree .tree-sub {
    font-size: 11px;
    color: var(--text-muted);
    padding-left: 12px;
}

.confidence-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--border-color);
}
.confidence-high {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border-color: rgba(16, 185, 129, 0.2);
}
.confidence-medium {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
    border-color: rgba(245, 158, 11, 0.2);
}
.confidence-low {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    border-color: rgba(239, 68, 68, 0.2);
}

/* ============================================
   LOOKUP
   ============================================ */
.lookup-form {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: end;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.lookup-form .form-group {
    flex: 1;
    min-width: 180px;
    margin-bottom: 0;
}
.lookup-form select {
    padding-left: 14px;
}
.lookup-form .btn-primary {
    width: auto;
    padding: 12px 28px;
}

/* ============================================
   PROFIL
   ============================================ */
.profile-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 32px;
    max-width: 500px;
}
.profile-card .profile-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}
.profile-card .profile-row:last-child {
    border-bottom: none;
}
.profile-card .label {
    color: var(--text-muted);
}
.profile-card .value {
    color: var(--text-primary);
    font-weight: 500;
}

/* ============================================
   FICHES
   ============================================ */
.fiche-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 12px;
    transition: border-color 0.2s;
}
.fiche-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}
.fiche-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.fiche-name {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}
.fiche-count {
    font-size: 12px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    padding: 2px 10px;
    border-radius: 12px;
}
.fiche-persons {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}
.fiche-person {
    font-size: 13px;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 2px 10px;
    border-radius: 4px;
}
.fiche-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
}
.fiche-btn {
    padding: 4px 12px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
}
.fiche-btn:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}
.fiche-btn.danger:hover {
    border-color: rgba(239, 68, 68, 0.3);
    color: var(--danger);
}

/* ============================================
   GRAPHE
   ============================================ */
#grapheContainer {
    width: 100%;
    height: 600px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: grab;
    user-select: none;
}
#grapheContainer:active {
    cursor: grabbing;
}
#grapheCanvas {
    width: 100%;
    height: 100%;
    display: block;
}
.graphe-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}
.graphe-context-menu {
    position: fixed;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 6px;
    min-width: 200px;
    z-index: 1000;
    box-shadow: var(--shadow);
    display: none;
}
.graphe-context-menu .menu-item {
    padding: 8px 14px;
    color: var(--text-secondary);
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}
.graphe-context-menu .menu-item:hover {
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
}
.graphe-context-menu .menu-item.danger:hover {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}
.graphe-context-menu .menu-divider {
    height: 1px;
    background: var(--border-color);
    margin: 4px 8px;
}
.graphe-context-menu .menu-item[data-action="link"]:hover {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
}

/* ============================================
   HISTORIQUE
   ============================================ */
.history-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 12px;
    transition: border-color 0.2s;
}
.history-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}
.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.history-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}
.history-date svg {
    opacity: 0.5;
}
.history-time {
    color: var(--text-muted);
    font-size: 12px;
}
.history-result-count {
    font-size: 13px;
    font-weight: 600;
    color: var(--success);
    padding: 2px 12px;
    border-radius: 12px;
    background: rgba(16, 185, 129, 0.1);
}
.history-result-count.empty {
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
}
.history-footer {
    display: flex;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--border-color);
}
.history-replay {
    padding: 4px 12px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.history-replay:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* ============================================
   TICKETS
   ============================================ */
.ticket-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: border-color 0.2s;
}
.ticket-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}
.ticket-item .ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ticket-item .ticket-subject {
    font-weight: 600;
    color: #ffffff;
}
.ticket-item .ticket-meta {
    font-size: 12px;
    color: var(--text-muted);
}
.ticket-item .ticket-status {
    padding: 2px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}
.ticket-status.open {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning);
}
.ticket-status.in_progress {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}
.ticket-status.closed {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
}
.ticket-detail {
    display: none;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}
.ticket-detail.open {
    display: block;
}
.ticket-message {
    padding: 10px 14px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}
.ticket-message.admin {
    background: rgba(255, 255, 255, 0.05);
    border-left: 2px solid #3b82f6;
}
.ticket-message .msg-meta {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.ticket-reply {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}
.ticket-reply input {
    flex: 1;
    padding: 8px 14px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    outline: none;
}
.ticket-reply input:focus {
    border-color: #ffffff;
}
.ticket-reply button {
    padding: 8px 20px;
    background: #ffffff;
    border: none;
    border-radius: 6px;
    color: #000000;
    font-weight: 600;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
}
.ticket-reply button:hover {
    background: #cccccc;
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}
.modal-overlay.active {
    display: flex;
}
.modal {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 32px;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--shadow);
    max-height: 80vh;
    overflow-y: auto;
}
.modal h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}
.modal .form-group {
    margin-bottom: 16px;
}
.modal .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 4px;
}
.modal .form-group input,
.modal .form-group select {
    padding-left: 14px;
}
.modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.modal-actions .btn-primary {
    width: auto;
    padding: 10px 24px;
}
.modal-actions .btn-secondary {
    padding: 10px 24px;
}

/* ============================================
   TOAST
   ============================================ */
.toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}
.toast {
    padding: 14px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    animation: slideInRight 0.3s ease;
    box-shadow: var(--shadow);
    min-width: 200px;
}
.toast.success {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.05);
}
.toast.error {
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.05);
}
.toast.warning {
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(245, 158, 11, 0.05);
}
.toast.info {
    border-color: rgba(255, 255, 255, 0.1);
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
.toast-close {
    float: right;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    padding: 0 4px;
}
.toast-close:hover {
    color: #ffffff;
}

/* ============================================
   EMPTY STATE
   ============================================ */
.empty-state {
    text-align: center;
    padding: 48px 24px;
    color: var(--text-muted);
}
.empty-state svg {
    width: 48px;
    height: 48px;
    color: var(--border-color);
    margin-bottom: 12px;
}

/* ============================================
   SEARCH LOADING
   ============================================ */
.search-loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    flex-direction: column;
    gap: 30px;
}
.search-loading.active {
    display: flex;
    animation: fadeInBlur 0.4s ease;
}
@keyframes fadeInBlur {
    from { opacity: 0; backdrop-filter: blur(0px); -webkit-backdrop-filter: blur(0px); }
    to { opacity: 1; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
}
.loading-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: pulseThink 1.5s ease-in-out infinite;
}
.loading-logo svg {
    width: 64px;
    height: 64px;
    color: #ffffff;
    opacity: 0.9;
}
.loading-logo span {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
}
@keyframes pulseThink {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}
.thinking-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 3px;
}
.thinking-icon {
    width: 24px;
    height: 24px;
    color: var(--text-secondary);
    animation: spinThink 3s linear infinite;
}
@keyframes spinThink {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.thinking-text .dot {
    display: inline-block;
    animation: dotBounce 1.4s ease-in-out infinite;
}
.thinking-text .dot:nth-child(2) { animation-delay: 0.2s; }
.thinking-text .dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotBounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.3; }
    40% { transform: scale(1); opacity: 1; }
}
.neon-bar-container {
    width: 400px;
    max-width: 80%;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
.neon-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    border-radius: 4px;
    animation: neonSlide 1.8s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3), 0 0 60px rgba(255, 255, 255, 0.1);
}
@keyframes neonSlide {
    0% { width: 0%; transform: translateX(-100%); }
    50% { width: 60%; transform: translateX(0%); }
    100% { width: 0%; transform: translateX(100%); }
}
.loading-text {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    animation: fadeText 2s ease-in-out infinite;
}
@keyframes fadeText {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ============================================
   INVESTIGATION OVERLAY
   ============================================ */
.investigation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: 9999;
    display: none;
    overflow-y: auto;
}
.investigation-overlay.active {
    display: block;
    animation: fadeIn 0.3s ease;
}
.investigation-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 32px 40px;
    min-height: 100vh;
}
.investigation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 28px;
}
.investigation-back {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
}
.investigation-back:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}
.investigation-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}
.investigation-title svg {
    color: var(--text-secondary);
}
.investigation-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.investigation-map-col {
    display: flex;
    flex-direction: column;
}
.investigation-map-wrapper {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 20px;
    position: relative;
    flex: 1;
}
.investigation-city-label {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}
.investigation-map-container {
    width: 100%;
    aspect-ratio: 600/700;
    position: relative;
    background: #151515;
    border-radius: 8px;
    overflow: hidden;
}
.investigation-map-container .france-map {
    width: 100%;
    height: 100%;
    display: block;
}
.investigation-info-col {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    max-height: 700px;
}
.investigation-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 16px;
}
.investigation-info-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}
.investigation-confidence {
    font-size: 14px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}
.investigation-confidence.high {
    color: var(--success);
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.05);
}
.investigation-confidence.medium {
    color: var(--warning);
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(245, 158, 11, 0.05);
}
.investigation-confidence.low {
    color: var(--danger);
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.05);
}
.investigation-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    flex: 1;
    overflow-y: auto;
    padding-right: 4px;
}
.investigation-info-grid::-webkit-scrollbar {
    width: 4px;
}
.investigation-info-grid::-webkit-scrollbar-track {
    background: transparent;
}
.investigation-info-grid::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}
.investigation-info-item {
    display: flex;
    flex-direction: column;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.investigation-info-item.important {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    padding: 6px 10px;
    margin: 0 -6px;
}
.investigation-info-label {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.investigation-info-value {
    font-size: 14px;
    color: var(--text-secondary);
    word-break: break-all;
}
.investigation-info-item.important .investigation-info-value {
    color: #ffffff;
    font-weight: 500;
}
.investigation-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}

/* ============================================
   ADMIN
   ============================================ */
.admin-page {
    background: var(--bg-primary);
    min-height: 100vh;
    padding: 80px 40px 40px;
    position: relative;
    z-index: 1;
}
.admin-container {
    max-width: 1400px;
    margin: 0 auto;
}
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}
.admin-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
}
.admin-back {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: all 0.2s;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.admin-back:hover {
    border-color: rgba(255,255,255,0.2);
    color: #ffffff;
}
.admin-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    background: var(--bg-secondary);
    padding: 4px;
    border-radius: 10px;
    flex-wrap: wrap;
}
.admin-tab {
    padding: 10px 20px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
}
.admin-tab:hover {
    color: var(--text-primary);
}
.admin-tab.active {
    background: #ffffff;
    color: #000000;
}
.admin-tab-content {
    display: none;
}
.admin-tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}
.stat-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
}
.stat-card .stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
}
.stat-card .stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}
.admin-table-wrap {
    overflow-x: auto;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 16px;
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.admin-table th {
    text-align: left;
    padding: 10px 12px;
    color: var(--text-muted);
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.admin-table td {
    padding: 10px 12px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.admin-table .clickable {
    cursor: pointer;
    color: #ffffff;
}
.admin-table .clickable:hover {
    text-decoration: underline;
}
.badge-role {
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}
.badge-role.admin {
    background: rgba(255,255,255,0.1);
    color: #ffffff;
}
.badge-role.user {
    background: rgba(255,255,255,0.05);
    color: var(--text-secondary);
}
.badge-status {
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}
.badge-status.banned {
    background: rgba(239,68,68,0.15);
    color: var(--danger);
}
.badge-status.active {
    background: rgba(16,185,129,0.15);
    color: var(--success);
}
.admin-actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.admin-actions button {
    padding: 4px 10px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-secondary);
    font-size: 11px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
}
.admin-actions button:hover {
    border-color: rgba(255,255,255,0.2);
    color: #ffffff;
}
.admin-actions button.danger:hover {
    border-color: rgba(239,68,68,0.3);
    color: var(--danger);
}
.admin-actions button.success:hover {
    border-color: rgba(16,185,129,0.3);
    color: var(--success);
}
.admin-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-muted);
}
.admin-pagination button {
    padding: 6px 16px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-secondary);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}
.admin-pagination button:hover:not(:disabled) {
    border-color: rgba(255,255,255,0.2);
    color: #ffffff;
}
.admin-pagination button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.admin-search {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}
.admin-search input {
    flex: 1;
    padding: 10px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    outline: none;
    min-width: 200px;
}
.admin-search input:focus {
    border-color: #ffffff;
}
.admin-search button {
    padding: 10px 24px;
    background: #ffffff;
    border: none;
    border-radius: 8px;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
}
.admin-search button:hover {
    background: #cccccc;
}
.admin-blocklist-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    padding: 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
}
.admin-blocklist-form select,
.admin-blocklist-form input {
    padding: 8px 14px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    outline: none;
}
.admin-blocklist-form select:focus,
.admin-blocklist-form input:focus {
    border-color: #ffffff;
}
.admin-blocklist-form button {
    padding: 8px 20px;
    background: #ffffff;
    border: none;
    border-radius: 6px;
    color: #000000;
    font-weight: 600;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
}
.admin-blocklist-form button:hover {
    background: #cccccc;
}

/* ============================================
   MOBILE RESPONSIVE - GLOBAL
   ============================================ */
.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1001;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: #ffffff;
    padding: 8px 10px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}
.sidebar-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999;
}
.sidebar-backdrop.active {
    display: block;
}

/* ============================================
   MOBILE - Max 768px
   ============================================ */
@media screen and (max-width: 768px) {
    /* Global */
    .mobile-menu-btn {
        display: flex !important;
    }
    .main-content {
        margin-left: 0 !important;
        padding: 16px 12px !important;
        padding-top: 16px !important;
        overflow-x: hidden !important;
    }
    .sidebar {
        transform: translateX(-100%) !important;
        transition: transform 0.3s ease !important;
        position: fixed !important;
        z-index: 1000 !important;
        width: 280px !important;
        height: 100vh !important;
    }
    .sidebar.open {
        transform: translateX(0) !important;
    }
    .page-header {
        padding-left: 48px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }
    .page-header h2 {
        font-size: 22px !important;
    }

    /* Home */
    .home-nav {
        padding: 0 16px !important;
    }
    .nav-links a:not(.nav-btn) {
        display: none !important;
    }
    .nav-links {
        display: none !important;
        flex-direction: column !important;
        position: absolute !important;
        top: 64px !important;
        left: 0 !important;
        right: 0 !important;
        background: rgba(10,10,10,0.95) !important;
        padding: 20px !important;
        gap: 16px !important;
        border-bottom: 1px solid var(--border-color) !important;
    }
    .nav-links.open {
        display: flex !important;
    }
    .nav-links .nav-btn {
        width: 100% !important;
        text-align: center !important;
    }
    .hero-title {
        font-size: 40px !important;
    }
    .hero-subtitle {
        font-size: 16px !important;
    }
    .hero-stats {
        flex-direction: column !important;
        gap: 16px !important;
    }
    .stat-divider {
        width: 60px !important;
        height: 1px !important;
    }
    .hero-section {
        padding: 120px 20px 40px !important;
    }
    .criteria-section,
    .how-section,
    .features-section {
        padding: 60px 20px !important;
    }
    .criteria-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)) !important;
    }
    .features-grid {
        grid-template-columns: 1fr !important;
    }
    .how-grid {
        grid-template-columns: 1fr !important;
    }
    .section-title {
        font-size: 28px !important;
    }
    .section-subtitle {
        font-size: 16px !important;
    }

    /* Login */
    .login-page {
        padding: 20px !important;
    }
    .login-box {
        padding: 28px 20px !important;
        border-radius: 14px !important;
    }
    .login-header .logo {
        width: 44px !important;
        height: 44px !important;
    }
    .login-header h1 {
        font-size: 22px !important;
    }
    .login-header p {
        font-size: 13px !important;
    }
    input {
        font-size: 16px !important;
        padding: 10px 12px 10px 38px !important;
    }
    .input-wrapper .input-icon {
        width: 16px !important;
        height: 16px !important;
        left: 12px !important;
    }
    .btn-primary {
        padding: 12px !important;
        font-size: 14px !important;
    }

    /* Recherche */
    .search-tabs {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 4px !important;
        padding: 4px !important;
        border-radius: 10px !important;
        margin-bottom: 16px !important;
    }
    .search-tab {
        flex: 0 0 auto !important;
        padding: 8px 14px !important;
        font-size: 12px !important;
        white-space: nowrap !important;
    }
    .form-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    .search-actions {
        flex-direction: column !important;
    }
    .search-actions .btn-primary,
    .search-actions .btn-secondary {
        width: 100% !important;
        justify-content: center !important;
    }
    .results-counter {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }
    .result-card-full {
        padding: 14px 16px !important;
    }
    .result-header-full {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }
    .result-name-full {
        font-size: 16px !important;
    }
    .result-fields.open {
        grid-template-columns: 1fr !important;
    }
    .result-actions {
        flex-wrap: wrap !important;
        gap: 6px !important;
    }
    .result-actions .btn-deep {
        font-size: 11px !important;
        padding: 4px 10px !important;
    }

    /* Lookup */
    .lookup-form {
        flex-direction: column !important;
        gap: 10px !important;
        padding: 16px !important;
        align-items: stretch !important;
    }
    .lookup-form .form-group {
        min-width: unset !important;
        width: 100% !important;
    }
    .lookup-form .btn-primary {
        width: 100% !important;
        justify-content: center !important;
    }

    /* Fiches */
    .fiche-item {
        padding: 12px 16px !important;
    }
    .fiche-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 4px !important;
    }
    .fiche-actions {
        flex-wrap: wrap !important;
    }
    .fiche-btn {
        font-size: 11px !important;
        padding: 4px 10px !important;
    }

    /* Graphe */
    #grapheContainer {
        height: 350px !important;
    }

    /* Tickets */
    .ticket-item {
        padding: 12px 16px !important;
    }
    .ticket-item .ticket-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 6px !important;
    }

    /* Historique */
    .history-item {
        padding: 12px 16px !important;
    }
    .history-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 6px !important;
    }

    /* Investigation */
    .investigation-container {
        padding: 16px !important;
    }
    .investigation-body {
        grid-template-columns: 1fr !important;
    }
    .investigation-info-col {
        max-height: none !important;
    }
    .investigation-info-grid {
        grid-template-columns: 1fr !important;
    }
    .investigation-actions {
        flex-direction: column !important;
    }
    .investigation-actions .btn-primary,
    .investigation-actions .btn-secondary {
        width: 100% !important;
        justify-content: center !important;
    }

    /* Admin */
    .admin-page {
        padding: 70px 16px 20px !important;
    }
    .admin-header {
        flex-direction: column !important;
        gap: 12px !important;
        align-items: flex-start !important;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .admin-blocklist-form {
        flex-direction: column !important;
    }
    .admin-search {
        flex-direction: column !important;
    }
    .admin-table {
        font-size: 12px !important;
    }
    .admin-table th,
    .admin-table td {
        padding: 6px 8px !important;
    }
}

/* ============================================
   MOBILE - Max 480px
   ============================================ */
@media screen and (max-width: 480px) {
    .sidebar {
        width: 240px !important;
    }
    .hero-title {
        font-size: 32px !important;
    }
    .hero-logo svg {
        width: 60px !important;
        height: 60px !important;
    }
    .hero-subtitle {
        font-size: 14px !important;
        min-height: 30px !important;
    }
    .hero-buttons {
        flex-direction: column !important;
        align-items: center !important;
    }
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100% !important;
        justify-content: center !important;
    }
    .criteria-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    .section-title {
        font-size: 24px !important;
    }
    .stats-grid {
        grid-template-columns: 1fr !important;
    }
    .login-box {
        padding: 20px 16px !important;
    }
    .login-header .logo {
        width: 36px !important;
        height: 36px !important;
    }
    .login-header h1 {
        font-size: 18px !important;
    }
    input {
        font-size: 15px !important;
        padding: 8px 10px 8px 34px !important;
    }
    .input-wrapper .input-icon {
        width: 14px !important;
        height: 14px !important;
        left: 10px !important;
    }
    .search-tab {
        font-size: 11px !important;
        padding: 6px 10px !important;
    }
    .section-header h3 {
        font-size: 13px !important;
    }
    .result-name-full {
        font-size: 14px !important;
    }
    .investigation-title {
        font-size: 16px !important;
    }
    .investigation-city-label {
        font-size: 18px !important;
    }
}

/* ============================================
   MOBILE - Max 380px
   ============================================ */
@media screen and (max-width: 380px) {
    .login-box {
        padding: 16px 12px !important;
        border-radius: 12px !important;
    }
    .login-header .logo {
        width: 32px !important;
        height: 32px !important;
    }
    .login-header h1 {
        font-size: 16px !important;
    }
    input {
        font-size: 14px !important;
        padding: 6px 8px 6px 30px !important;
    }
    .input-wrapper .input-icon {
        width: 12px !important;
        height: 12px !important;
        left: 8px !important;
    }
    .btn-primary {
        padding: 8px !important;
        font-size: 12px !important;
    }
    .btn-primary svg {
        width: 16px !important;
        height: 16px !important;
    }
}

/* ============================================
   FIX DASHBOARD - SUPPRESSION CADRILLAGE
   ============================================ */

/* Supprimer le cadrillage de fond sur le dashboard */
.dashboard-page::before,
.dashboard-page::after {
    display: none !important;
}

.dashboard-page {
    background: var(--bg-primary) !important;
}

/* ============================================
   FIX SIDEBAR - ICONES A GAUCHE + REDUCTION
   ============================================ */

.sidebar {
    width: 220px !important;
    background: var(--bg-secondary) !important;
    border-right: 1px solid var(--border-color) !important;
    padding: 0 !important;
}

.sidebar-header {
    padding: 16px 16px !important;
    justify-content: flex-start !important;
    gap: 10px !important;
}

.sidebar-header .logo {
    width: 28px !important;
    height: 28px !important;
}

.sidebar-header span {
    font-size: 18px !important;
}

.sidebar-nav {
    padding: 8px 8px !important;
}

.sidebar-nav li {
    padding: 10px 12px !important;
    gap: 12px !important;
    font-size: 13px !important;
    border-radius: 6px !important;
    justify-content: flex-start !important;
}

.sidebar-nav li svg {
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0 !important;
}

.sidebar-nav li span {
    font-size: 13px !important;
}

.sidebar-footer {
    padding: 12px 8px !important;
}

.sidebar-footer button {
    padding: 10px 12px !important;
    font-size: 13px !important;
    gap: 12px !important;
    justify-content: flex-start !important;
}

.sidebar-footer button svg {
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0 !important;
}

/* Support toggle dans sidebar */
.support-toggle {
    padding: 10px 12px !important;
    gap: 12px !important;
    font-size: 13px !important;
}

.support-toggle svg {
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0 !important;
}

.support-arrow {
    width: 14px !important;
    height: 14px !important;
}

.support-submenu {
    padding-left: 32px !important;
}

.support-submenu li {
    padding: 8px 12px !important;
    gap: 12px !important;
    font-size: 13px !important;
}

.support-submenu li svg {
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0 !important;
}

/* ============================================
   MOBILE SIDEBAR
   ============================================ */
@media screen and (max-width: 768px) {
    .sidebar {
        width: 260px !important;
    }
    
    .main-content {
        margin-left: 0 !important;
    }
    
    .mobile-menu-btn {
        display: flex !important;
    }
}

/* ============================================
   FIX : SUPPRESSION DU BLOC NOIR SUR RECHERCHE
   ============================================ */

/* Supprimer tout fond noir supplémentaire sur la zone de recherche */
#page-search .section,
#page-search .section-body,
#page-search .search-tabs,
#page-search .form-grid,
#page-search .form-group,
#page-search .search-actions,
#page-search .results-container,
#page-search .results-counter,
#page-search .result-card-full,
#tab-french,
#tab-pro,
#tab-french .section,
#tab-pro .section,
#tab-french .section-body,
#tab-pro .section-body {
    background: transparent !important;
}

/* Garder le fond des sections seulement */
#page-search .section {
    background: var(--bg-secondary) !important;
    border: 1px solid var(--border-color) !important;
}

/* Le contenu des sections en transparent */
#page-search .section-body {
    background: transparent !important;
}

/* Forcer le fond de la page à être celui du dashboard */
#page-search {
    background: transparent !important;
}

/* Supprimer tout overlay noir */
.search-loading {
    background: rgba(0, 0, 0, 0.9) !important;
}

/* S'assurer que le contenu principal n'a pas de fond noir */
.main-content {
    background: transparent !important;
}

.dashboard-page .main-content {
    background: transparent !important;
}

/* Si le bloc noir est sur la page elle-même */
.dashboard-page {
    background: var(--bg-primary) !important;
}

/* Supprimer le cadrillage sur le dashboard */
.dashboard-page::before,
.dashboard-page::after {
    display: none !important;
}

/* SUPPRESSION TOTALE DES FONDS NOIRS SUR LA RECHERCHE */
#page-search,
#page-search * {
    background: transparent !important;
}

#page-search .section {
    background: var(--bg-secondary) !important;
}

#page-search .section-body {
    background: transparent !important;
}

#page-search .section-header {
    background: var(--bg-secondary) !important;
}

/* ============================================
   SUPPRESSION TOTALE CADRILLAGE SUR DASHBOARD
   ============================================ */

/* 1. Supprimer le cadrillage et le glow sur le dashboard */
.dashboard-page::before,
.dashboard-page::after {
    display: none !important;
    content: none !important;
    background: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* 2. Forcer un fond propre sur le dashboard */
.dashboard-page {
    background: var(--bg-primary) !important;
}

/* 3. Supprimer TOUS les fonds qui pourraient être noirs sur la recherche */
#page-search,
#page-search .page,
#page-search .page.active,
#page-search .section,
#page-search .section-body,
#page-search .section-header,
#page-search .form-grid,
#page-search .search-tabs,
#page-search .search-tab-content,
#page-search .search-tab-content.active,
#page-search .search-actions,
#page-search .results-container,
#page-search .results-counter,
#tab-french,
#tab-pro,
#tab-french.active,
#tab-pro.active {
    background: transparent !important;
}

/* 4. Mais garder un fond pour les sections */
#page-search .section {
    background: var(--bg-secondary) !important;
    border: 1px solid var(--border-color) !important;
}

/* 5. Forcer le fond du main-content */
.main-content {
    background: transparent !important;
}

/* 6. Si le cadrillage s'affiche via un autre élément */
.dashboard-page .main-content::before,
.dashboard-page .main-content::after,
.dashboard-page .main-content *::before,
.dashboard-page .main-content *::after {
    display: none !important;
}

/* 7. Suppression du fond noir sur les inputs */
#page-search input,
#page-search select,
#page-search textarea {
    background: var(--bg-input) !important;
}

/* 8. S'assurer que le body n'a pas de cadrillage sur dashboard */
body.dashboard-page::before,
body.dashboard-page::after {
    display: none !important;
}

/* ============================================
   FIX - PANEL DE RECHERCHE AU-DESSUS DU FOND NOIR
   ============================================ */

/* Le fond noir (cadrillage) doit être en arrière-plan */
body.dashboard-page::before,
body.dashboard-page::after,
.dashboard-page::before,
.dashboard-page::after {
    display: none !important;
    content: none !important;
    background: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    z-index: -9999 !important;
}

/* Forcer le panel de recherche à être au-dessus de tout */
#page-search {
    position: relative !important;
    z-index: 10 !important;
    background: transparent !important;
}

#page-search .section {
    position: relative !important;
    z-index: 11 !important;
    background: #111111 !important;
    border: 1px solid #2a2a2a !important;
}

#page-search .section-header {
    background: #111111 !important;
    position: relative !important;
    z-index: 12 !important;
}

#page-search .section-body {
    background: transparent !important;
    position: relative !important;
    z-index: 13 !important;
}

/* Supprimer tout overlay noir */
.search-loading {
    z-index: 9999 !important;
}

/* Supprimer le fond noir du main-content */
.main-content {
    position: relative !important;
    z-index: 5 !important;
    background: transparent !important;
}

/* S'assurer que le body n'a pas de fond noir qui bloque */
body.dashboard-page {
    background: #0a0a0a !important;
}

/* Supprimer les pseudo-elements partout */
*::before,
*::after {
    display: none !important;
    content: none !important;
}