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

:root {
    --red: #E63946;
    --red-dark: #C1121F;
    --red-light: #FF6B6B;
    --red-glow: rgba(230, 57, 70, .12);
    --red-glow-strong: rgba(230, 57, 70, .25);
    --accent: #FF4D4D;
    --black: #09090B;
    --black-soft: #121215;
    --gray-900: #18181B;
    --gray-800: #27272A;
    --gray-700: #3F3F46;
    --gray-600: #52525B;
    --gray-500: #71717A;
    --gray-400: #A1A1AA;
    --gray-300: #D4D4D8;
    --gray-200: #E4E4E7;
    --gray-100: #F4F4F5;
    --gray-50: #FAFAFA;
    --white: #FFFFFF;
    --cream: #FFFBF5;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.04), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,.06), 0 2px 4px rgba(0,0,0,.04);
    --shadow-lg: 0 10px 40px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.04);
    --shadow-xl: 0 25px 60px rgba(0,0,0,.1), 0 8px 20px rgba(0,0,0,.06);
    --shadow-red: 0 4px 20px rgba(230, 57, 70, .2);
    --shadow-card-hover: 0 16px 48px rgba(0,0,0,.1), 0 6px 16px rgba(0,0,0,.06);
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: .3s cubic-bezier(.4,0,.2,1);
    --transition-slow: .5s cubic-bezier(.4,0,.2,1);
}

/* ===== READING PROGRESS BAR ===== */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--red-light), #FF8C42);
    z-index: 9998;
    transition: width 50ms linear;
    box-shadow: 0 0 10px rgba(230, 57, 70, .5);
}

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

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    --bg: var(--gray-50);
    --bg-alt: var(--cream);
    --bg-card: var(--white);
    --text: var(--gray-900);
    --text-secondary: var(--gray-600);
    --border: var(--gray-200);
    --border-light: var(--gray-100);
    --card-shadow: var(--shadow-sm);
    --placeholder-bg: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
    --placeholder-color: var(--gray-400);
    transition: background .4s ease, color .4s ease;
}

/* ===== DARK MODE ===== */
body.dark-mode {
    --bg: #0F0F12;
    --bg-alt: #161619;
    --bg-card: #1C1C21;
    --text: var(--gray-100);
    --text-secondary: var(--gray-400);
    --border: var(--gray-700);
    --border-light: var(--gray-800);
    --card-shadow: 0 2px 10px rgba(0,0,0,.3);
    --placeholder-bg: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-700) 100%);
    --placeholder-color: var(--gray-500);
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; display: block; }

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== LOADER ===== */
.loader {
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at center, #151515, var(--black));
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transition: opacity .5s, visibility .5s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    animation: pulse-logo 1.2s ease infinite;
}

@keyframes pulse-logo {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: .7; }
}

.loader-bar {
    width: 180px;
    height: 3px;
    background: var(--gray-800);
    border-radius: 3px;
    overflow: hidden;
}

.loader-fill {
    width: 100%;
    height: 100%;
    background: var(--red);
    border-radius: 3px;
    animation: loader-progress 1.2s ease forwards;
}

@keyframes loader-progress {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--black);
    color: var(--gray-400);
    font-size: .78rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-links a:hover { color: var(--red); }

.lang-switch {
    background: rgba(255,255,255,.08);
    padding: 4px 12px !important;
    border-radius: 6px;
    font-weight: 600;
    transition: all var(--transition);
}

.lang-switch:hover {
    background: var(--red) !important;
    color: var(--white) !important;
}

.top-social {
    display: flex;
    gap: 10px;
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid var(--gray-800);
}

.top-social a {
    opacity: .6;
    transition: opacity var(--transition);
}

.top-social a:hover { opacity: 1; color: var(--red); }

/* ===== HEADER ===== */
.header {
    background: linear-gradient(180deg, var(--black) 0%, var(--black-soft) 100%);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow var(--transition), padding var(--transition), background var(--transition);
}

.header.scrolled {
    padding: 8px 0;
    background: rgba(9, 9, 11, .95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,.5), 0 0 60px rgba(230, 57, 70, .04);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform var(--transition);
}

.logo:hover .logo-img { transform: rotate(10deg) scale(1.05); }

.logo-img-footer {
    width: 56px;
    height: 56px;
}

.logo-text {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    align-items: center;
}

.logo-tchad { color: var(--white); }
.logo-echo { color: var(--red); text-shadow: 0 0 20px rgba(230, 57, 70, .3); }

.logo-slogan {
    display: block;
    width: 100%;
    font-family: var(--font-sans);
    font-size: .6rem;
    font-weight: 500;
    color: var(--gray-500);
    letter-spacing: .1em;
    text-transform: uppercase;
    font-style: italic;
}

.nav {
    display: flex;
    gap: 4px;
}

.nav-link {
    color: var(--gray-400);
    padding: 8px 14px;
    border-radius: var(--radius);
    font-size: .85rem;
    font-weight: 500;
    transition: all var(--transition);
    position: relative;
}

.nav-link:hover { color: var(--white); background: rgba(255,255,255,.05); }

.nav-link.active {
    color: var(--white);
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    box-shadow: var(--shadow-red);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,.08);
    border: 1px solid var(--gray-700);
    border-radius: 20px;
    padding: 4px 10px;
}

.lang-btn {
    color: var(--gray-500);
    font-size: .75rem;
    font-weight: 800;
    text-decoration: none;
    transition: color var(--transition);
    cursor: pointer;
}

.lang-btn:hover { color: var(--white); }

.lang-btn.lang-active {
    color: var(--red);
    cursor: default;
}

.lang-sep {
    color: var(--gray-700);
    font-size: .7rem;
    font-weight: 400;
}

.search-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: none;
    color: var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}

.search-toggle svg { width: 18px; height: 18px; }
.search-toggle:hover { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: var(--white); box-shadow: var(--shadow-red); }

/* Search Bar */
.search-bar {
    background: var(--black-soft);
    border-top: 1px solid var(--gray-800);
    padding: 16px 0;
    display: none;
}

.search-bar.open { display: block; animation: slideDown .3s ease; }

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.search-form {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--gray-800);
    border-radius: var(--radius);
    padding: 12px 20px;
}

.search-form svg { width: 20px; height: 20px; color: var(--gray-500); flex-shrink: 0; }

.search-form input {
    flex: 1;
    background: none;
    border: none;
    color: var(--white);
    font-size: .95rem;
    outline: none;
}

.search-form input::placeholder { color: var(--gray-600); }

.search-close {
    background: none;
    border: none;
    color: var(--gray-500);
    cursor: pointer;
    font-size: .85rem;
    font-weight: 600;
}

.search-close:hover { color: var(--red); }

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== THEME TOGGLE ===== */
.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: none;
    color: var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
}

.theme-toggle svg { width: 18px; height: 18px; transition: transform .4s ease, opacity .3s ease; position: absolute; }
.theme-toggle .icon-moon { opacity: 1; transform: rotate(0deg); }
.theme-toggle .icon-sun { opacity: 0; transform: rotate(-90deg); }

body.dark-mode .theme-toggle .icon-moon { opacity: 0; transform: rotate(90deg); }
body.dark-mode .theme-toggle .icon-sun { opacity: 1; transform: rotate(0deg); }

.theme-toggle:hover { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: var(--white); box-shadow: var(--shadow-red); }

/* ===== FACEBOOK LIVE PLAYER ===== */
.fb-live-section {
    padding: 20px 0 0;
}
.fb-live-card {
    background: var(--black);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(230,57,70,.3);
    box-shadow: 0 0 30px rgba(230,57,70,.08);
    animation: liveCardAppear .6s ease forwards;
}
@keyframes liveCardAppear {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.fb-live-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: linear-gradient(135deg, rgba(230,57,70,.1), transparent);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.fb-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: var(--red);
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
    border-radius: 4px;
    text-transform: uppercase;
    flex-shrink: 0;
}
.fb-live-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #fff;
    animation: fbLivePulse 1s ease-in-out infinite;
}
@keyframes fbLivePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .3; }
}
.fb-live-title {
    flex: 1;
    color: #fff;
    font-size: .92rem;
    font-weight: 600;
}
.fb-live-close {
    background: none;
    border: none;
    color: var(--gray-500);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all .2s;
}
.fb-live-close:hover { color: #fff; background: rgba(255,255,255,.08); }
.fb-live-player {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
}
.fb-live-player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.fb-live-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border-top: 1px solid rgba(255,255,255,.06);
}
.fb-live-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #4267B2;
    font-size: .8rem;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s;
}
.fb-live-link:hover { color: #5b7bd5; }
.fb-live-viewers {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--gray-500);
    font-size: .75rem;
}
.fb-live-viewers svg { color: var(--red); }

@media (max-width: 480px) {
    .fb-live-header { padding: 10px 14px; }
    .fb-live-title { font-size: .82rem; }
    .fb-live-footer { padding: 8px 14px; flex-wrap: wrap; gap: 6px; }
}

/* ===== WEATHER WIDGET ===== */
.weather-section {
    padding: 40px 0;
    background: var(--bg);
}

.weather-section .section-title {
    margin-bottom: 20px;
}

.weather-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.weather-box-header {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.weather-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-secondary);
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.weather-toggle:hover {
    border-color: var(--red);
    color: var(--red);
}

.weather-toggle-icon {
    transition: transform .3s ease;
}

.weather-toggle.open .weather-toggle-icon {
    transform: rotate(180deg);
}

.weather-box-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height .4s ease, padding .4s ease;
    padding: 0 24px;
}

.weather-box-body.open {
    max-height: 800px;
    padding: 24px;
}

@media (max-width: 768px) {
    .weather-box-header { flex-wrap: wrap; gap: 12px; }
    .weather-box-body { padding: 0 16px; }
    .weather-box-body.open { padding: 16px; }
}

.weather-tabs {
    display: flex;
    gap: 8px;
}

.weather-tab {
    padding: 10px 24px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-secondary);
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.weather-tab:hover {
    border-color: var(--red);
    color: var(--red);
}

.weather-tab.active {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-color: var(--red);
    color: var(--white);
    box-shadow: var(--shadow-red);
}

.weather-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.weather-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 16px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.weather-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--red-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.weather-card:hover::before { transform: scaleX(1); }
.weather-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }

.weather-card-city {
    font-size: .9rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}

.weather-card-country {
    font-size: .72rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.weather-card-icon {
    font-size: 2.5rem;
    margin-bottom: 6px;
    line-height: 1;
}

.weather-card-temp {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
    margin-bottom: 4px;
}

.weather-card-desc {
    font-size: .78rem;
    color: var(--text-secondary);
    text-transform: capitalize;
    margin-bottom: 10px;
}

.weather-card-details {
    display: flex;
    justify-content: center;
    gap: 14px;
    font-size: .72rem;
    color: var(--text-secondary);
    padding-top: 10px;
    border-top: 1px solid var(--border-light);
}

.weather-card-details span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.weather-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 50px 20px;
    color: var(--text-secondary);
    font-size: .9rem;
}

.weather-loading .press-spinner {
    width: 24px;
    height: 24px;
}

.weather-error {
    text-align: center;
    padding: 50px 20px;
    color: var(--text-secondary);
    font-size: .85rem;
}

@media (max-width: 1024px) {
    .weather-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .weather-grid { grid-template-columns: repeat(2, 1fr); }
    .weather-box-header { padding: 14px 16px; }
    .weather-box-body { padding: 16px; }
}

@media (max-width: 480px) {
    .weather-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .weather-card { padding: 14px 10px; }
    .weather-card-temp { font-size: 1.5rem; }
    .weather-card-icon { font-size: 2rem; }
    .weather-tab { padding: 8px 16px; font-size: .8rem; }
}

/* ===== TICKER ===== */
.ticker {
    background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-light));
    background-size: 200% 100%;
    animation: ticker-bg 8s ease infinite;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
}

.ticker::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.15), transparent 20%, transparent 80%, rgba(0,0,0,.15));
    pointer-events: none;
}

@keyframes ticker-bg {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.ticker .container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ticker-label {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    color: var(--red);
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: 800;
    font-size: .7rem;
    letter-spacing: .05em;
    white-space: nowrap;
    animation: pulse-label 2s infinite;
}

@keyframes pulse-label {
    0%, 100% { opacity: 1; }
    50% { opacity: .75; }
}

.ticker-wrapper {
    flex: 1;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.ticker-content {
    display: flex;
    gap: 80px;
    animation: ticker-scroll 30s linear infinite;
    white-space: nowrap;
    color: var(--white);
    font-weight: 500;
    font-size: .85rem;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== HERO ===== */
.hero {
    padding: 32px 0;
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--gray-50) 100%);
}

body.dark-mode .hero { background: linear-gradient(180deg, #141417, var(--bg)); }

.hero-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 20px;
    min-height: 480px;
}

.hero-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.hero-main-image {
    position: relative;
    height: 100%;
    min-height: 480px;
}

.hero-main-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 32px 32px;
    background: linear-gradient(transparent, rgba(0,0,0,.5) 20%, rgba(0,0,0,.9) 60%);
    color: var(--white);
}

.hero-main-overlay h1 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.25;
    margin: 14px 0 12px;
}

.hero-main-overlay p {
    color: var(--gray-300);
    font-size: .9rem;
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 14px;
}

.badge-lg { padding: 6px 16px; font-size: .75rem; }

.meta-light { color: var(--gray-400); }
.meta-separator { opacity: .4; }

.hero-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-side-card {
    flex: 1;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.hero-side-card .placeholder-img {
    height: 100%;
    min-height: 230px;
}

.hero-side-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,.85) 30%);
    color: var(--white);
}

.hero-side-overlay h3 {
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 8px 0 4px;
}

.hero-side-overlay .meta-date,
.hero-main-overlay .meta-date {
    font-size: .78rem;
}

.hero-main:hover .placeholder-img,
.hero-side-card:hover .placeholder-img {
    filter: brightness(1.1);
}

/* ===== TRENDING BAR ===== */
.trending {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
}

.trending-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trending-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: .85rem;
    color: var(--text);
    white-space: nowrap;
}

.trending-label svg { color: var(--red); }

.trending-tags {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
}

.trending-tags::-webkit-scrollbar { display: none; }

.trending-tag {
    padding: 6px 16px;
    border-radius: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    font-size: .8rem;
    font-weight: 600;
    color: var(--gray-700);
    white-space: nowrap;
    transition: all var(--transition);
}

.trending-tag:hover {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-color: var(--red);
    color: var(--white);
    box-shadow: var(--shadow-red);
    transform: translateY(-2px);
}

/* ===== CATEGORY BADGES ===== */
.category-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    padding: 5px 14px;
    border-radius: 6px;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    box-shadow: 0 2px 8px rgba(230, 57, 70, .25);
}

.badge-politique { background: #2563EB; }
.badge-societe { background: #059669; }
.badge-culture { background: #D97706; }

/* ===== ARTICLE META ===== */
.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .78rem;
    color: var(--gray-500);
}

.meta-author { font-weight: 600; color: var(--red); }

/* ===== SECTIONS ===== */
.section { padding: 60px 0; background: var(--bg); }
.section-alt { background: var(--bg-alt); }
.section-dark {
    background: linear-gradient(135deg, var(--black) 0%, #111114 50%, var(--black-soft) 100%);
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230, 57, 70, .06), transparent 70%);
    pointer-events: none;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 800;
    position: relative;
    padding-left: 18px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background: linear-gradient(180deg, var(--red), var(--red-light));
    border-radius: 4px;
    box-shadow: 0 0 12px rgba(230, 57, 70, .25);
}

.title-light { color: var(--white); }

.see-all {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--red);
    font-weight: 600;
    font-size: .85rem;
}

.see-all:hover { gap: 10px; }
.see-all-light { color: var(--gray-400); }
.see-all-light:hover { color: var(--white); }

/* ===== CONTENT LAYOUT (articles + sidebar) ===== */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
}

/* ===== ARTICLES GRID ===== */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.article-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
    transition: all var(--transition);
    cursor: pointer;
    position: relative;
}

.article-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--red-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.article-card:hover::after {
    transform: scaleX(1);
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
}

.article-card-image {
    height: 190px;
    overflow: hidden;
    position: relative;
}

.article-card-image .category-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
}

.article-card-body { padding: 20px; }

.article-card-body h3 {
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 8px;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-body p {
    color: var(--text-secondary);
    font-size: .83rem;
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== SIDEBAR ===== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-widget {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border);
}

.widget-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border-light);
    color: var(--text);
}

.widget-title svg { color: var(--red); }

.widget-title-light { color: var(--white); border-bottom-color: rgba(255,255,255,.1); }
.widget-title-light svg { color: var(--white); }

.popular-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.popular-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition);
}

.popular-item:last-child { border-bottom: none; }

.popular-item:hover { padding-left: 6px; }

.popular-rank {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--border);
    line-height: 1;
    min-width: 32px;
    transition: color var(--transition);
}

.popular-item:hover .popular-rank { color: var(--red); }

.popular-item h4 {
    font-size: .85rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 4px;
    color: var(--text);
}

.popular-item .meta-date { font-size: .75rem; color: var(--gray-500); }

/* Sidebar Newsletter */
.sidebar-newsletter {
    background: var(--black);
    border-color: var(--gray-800);
    color: var(--gray-300);
}

.sidebar-newsletter p {
    font-size: .85rem;
    margin-bottom: 16px;
    color: var(--gray-400);
}

.sidebar-form {
    display: flex;
    gap: 8px;
}

.sidebar-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--gray-700);
    border-radius: var(--radius);
    background: var(--gray-800);
    color: var(--white);
    font-size: .85rem;
    outline: none;
}

.sidebar-form input:focus { border-color: var(--red); }
.sidebar-form input::placeholder { color: var(--gray-600); }

.sidebar-form button {
    padding: 10px 18px;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition);
}

.sidebar-form button:hover { background: var(--red-dark); }

/* ===== REVUE DE PRESSE ===== */
.press-tabs {
    display: flex;
    gap: 8px;
}

.press-tab {
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-secondary);
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.press-tab:hover {
    border-color: var(--red);
    color: var(--red);
}

.press-tab.active {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.press-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 60px 0;
    color: var(--gray-500);
    font-size: .9rem;
}

.press-loading.hidden { display: none; }

.press-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--red);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

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

.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.press-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.press-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--red-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.press-card:hover::after {
    transform: scaleX(1);
}

.press-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
}

.press-card-image {
    height: 160px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
    position: relative;
}

.press-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.press-source-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,0,0,.75);
    backdrop-filter: blur(8px);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: .7rem;
    font-weight: 700;
}

.press-source-badge img {
    width: 14px;
    height: 14px;
    border-radius: 2px;
}

.press-card-body {
    padding: 16px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.press-card-body h3 {
    font-size: .88rem;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 8px;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.press-card-body p {
    color: var(--text-secondary);
    font-size: .8rem;
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.press-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid var(--border-light);
}

.press-card-footer .meta-date {
    font-size: .75rem;
    color: var(--gray-500);
}

.press-read-link {
    font-size: .78rem;
    font-weight: 700;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 4px;
}

.press-read-link:hover { gap: 8px; }

.press-credit {
    text-align: center;
    font-size: .78rem;
    color: var(--gray-500);
    margin-top: 24px;
    font-style: italic;
}

.press-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
}

.press-no-image svg { width: 32px; height: 32px; opacity: .4; }

@media (max-width: 1024px) {
    .press-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .press-grid { grid-template-columns: 1fr; }
    .section-header { flex-wrap: wrap; }
    .press-tabs { width: 100%; }
}

/* ===== STATS ===== */
.stats {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--black) 0%, #1a0a0a 50%, var(--black-soft) 100%);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--red-glow-strong), transparent 70%);
    pointer-events: none;
}

.stats::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(230, 57, 70, .08), transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item { position: relative; }

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number::after { content: '+'; color: var(--red); }

.stat-label {
    font-size: .85rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* ===== VIDEOS ===== */
.videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.video-featured { grid-row: span 3; }

.video-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    cursor: pointer;
    transition: transform var(--transition);
    border: 1px solid var(--border);
}

.video-card:hover { transform: translateY(-3px); }

.video-featured .placeholder-img { height: 100%; min-height: 420px; }

.video-card:not(.video-featured) {
    display: flex;
    gap: 0;
}

.video-card:not(.video-featured) .placeholder-img {
    width: 180px;
    min-height: 110px;
    flex-shrink: 0;
}

.video-info { padding: 16px 20px; display: flex; flex-direction: column; justify-content: center; gap: 8px; }

.video-featured .video-info { padding: 20px 24px; }
.video-featured .video-info h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); }

.video-info h4 { font-size: .88rem; font-weight: 600; line-height: 1.4; color: var(--text); }
.video-info .meta-date { color: var(--text-secondary); }

.play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: transform var(--transition), background var(--transition);
    box-shadow: 0 4px 24px rgba(230, 57, 70, .45);
}

.play-btn-sm { width: 44px; height: 44px; }

.video-card:hover .play-btn { transform: scale(1.1); background: var(--red-dark); }

.placeholder-video,
.placeholder-video-sm {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-video span {
    position: absolute;
    bottom: 16px;
    left: 16px;
    color: var(--gray-500);
    font-size: .8rem;
}

/* ===== PLACEHOLDER IMAGES ===== */
.placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-700) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    gap: 8px;
    font-size: .8rem;
    transition: filter var(--transition), transform .6s cubic-bezier(.4,0,.2,1);
}

.placeholder-img svg { width: 40px; height: 40px; opacity: .3; }

.placeholder-card {
    background: var(--placeholder-bg);
    color: var(--placeholder-color);
}

.article-card:hover .placeholder-card { transform: scale(1.05); }

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 12px;
}

.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item .placeholder-img { transition: transform .6s cubic-bezier(.4,0,.2,1); }
.gallery-item:hover .placeholder-img { transform: scale(1.08); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, .85), rgba(193, 18, 31, .9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--white);
    opacity: 0;
    transition: opacity var(--transition);
    backdrop-filter: blur(4px);
}

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

.gallery-icon { opacity: .8; }

.gallery-overlay h4 { font-size: .85rem; font-weight: 600; text-align: center; padding: 0 16px; }

/* ===== ABOUT ===== */
.about {
    padding: 80px 0;
    background: var(--bg-card);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-label {
    display: inline-block;
    color: var(--red);
    font-weight: 700;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 12px;
}

.about-content h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
    color: var(--text);
}

.about-content p {
    color: var(--text-secondary);
    font-size: .92rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--red-glow), var(--red-glow-strong));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
}

.about-feature:hover .about-feature-icon {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    box-shadow: var(--shadow-red);
}

.about-feature:hover .about-feature-icon svg {
    color: var(--white);
}

.about-feature-icon svg { width: 22px; height: 22px; color: var(--red); }

.about-feature h4 { font-size: .9rem; font-weight: 700; margin-bottom: 2px; color: var(--text); }
.about-feature p { font-size: .82rem; color: var(--text-secondary); margin: 0; }

.about-visual { position: relative; }

.about-img-wrapper {
    position: relative;
    z-index: 1;
}

.placeholder-about {
    border-radius: var(--radius-xl);
    height: 400px;
    background: var(--black);
}

.about-logo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    opacity: .9;
}

.about-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--red-glow);
    border-radius: 50%;
    z-index: 0;
    filter: blur(40px);
}

/* ===== NEWSLETTER ===== */
.newsletter {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 40%, var(--red-light) 100%);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,.06);
    border-radius: 50%;
}

.newsletter::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: rgba(0,0,0,.08);
    border-radius: 50%;
}

.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.newsletter-text h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 8px;
}

.newsletter-text p { color: rgba(255,255,255,.85); font-size: .92rem; }

.newsletter-form { display: flex; gap: 12px; flex-shrink: 0; }

.newsletter-form input {
    padding: 14px 20px;
    border: 2px solid rgba(255,255,255,.2);
    border-radius: var(--radius);
    background: rgba(255,255,255,.1);
    color: var(--white);
    font-size: .92rem;
    width: 300px;
    backdrop-filter: blur(10px);
    transition: all var(--transition);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form input:focus { outline: none; border-color: var(--white); background: rgba(255,255,255,.2); }

.newsletter-form button {
    padding: 14px 28px;
    background: var(--white);
    color: var(--red);
    border: none;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: .92rem;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, var(--black-soft), var(--black));
    color: var(--gray-400);
    padding: 60px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gray-800);
}

.footer-brand p { margin-top: 16px; font-size: .88rem; line-height: 1.7; }

.social-links { display: flex; gap: 10px; margin-top: 20px; }

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.social-links a svg { width: 16px; height: 16px; }
.social-links a:hover { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: var(--white); transform: translateY(-3px); box-shadow: 0 4px 16px rgba(230, 57, 70, .3); }

.footer-links h4 {
    color: var(--white);
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 20px;
}

.footer-links a,
.footer-links p {
    display: block;
    font-size: .84rem;
    margin-bottom: 10px;
}

.footer-links a:hover { color: var(--red); }

.footer-contact-info {
    display: flex !important;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: .78rem;
    color: var(--gray-600);
}

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a:hover { color: var(--gray-300); }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(230, 57, 70, .35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    z-index: 50;
}

.scroll-top svg { width: 22px; height: 22px; }
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--black); transform: translateY(-3px); box-shadow: 0 6px 30px rgba(0,0,0,.3); }

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    backdrop-filter: blur(12px);
}

.lightbox.active { opacity: 1; visibility: visible; }

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: color var(--transition);
    line-height: 1;
}

.lightbox-close:hover { color: var(--red); }

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--black);
    border-top: 1px solid var(--gray-800);
    padding: 18px 0;
    z-index: 999;
    transform: translateY(100%);
    transition: transform .4s ease;
    backdrop-filter: blur(20px);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-300);
    font-size: .84rem;
    line-height: 1.5;
}

.cookie-text svg { flex-shrink: 0; color: var(--red); }
.cookie-text a { color: var(--red); text-decoration: underline; }

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

.cookie-btn {
    padding: 10px 22px;
    border-radius: var(--radius);
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}

.cookie-decline {
    background: var(--gray-800);
    color: var(--gray-300);
}

.cookie-decline:hover { background: var(--gray-700); }

.cookie-accept {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    box-shadow: var(--shadow-red);
}

.cookie-accept:hover { transform: translateY(-2px); }

@media (max-width: 768px) {
    .cookie-content { flex-direction: column; text-align: center; }
    .cookie-text { flex-direction: column; }
}

/* ===== SHARE BAR ===== */
.share-bar {
    position: fixed;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.share-bar.visible { opacity: 1; visibility: visible; }

.share-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,.2);
}

.share-btn:hover { transform: scale(1.15); }
.share-facebook { background: #1877F2; }
.share-x { background: #000; }
.share-whatsapp { background: #25D366; }
.share-copy { background: var(--gray-700); }

@media (max-width: 768px) {
    .share-bar {
        left: auto;
        right: 0;
        top: auto;
        bottom: 90px;
        transform: none;
        flex-direction: column;
    }
    .share-btn { width: 36px; height: 36px; border-radius: 50% 0 0 50%; }
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    z-index: 90;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
    transition: all var(--transition);
    animation: wa-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, .5);
}

@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, .4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, .6), 0 0 0 8px rgba(37, 211, 102, .1); }
}

.whatsapp-tooltip {
    position: absolute;
    left: 64px;
    background: var(--black);
    color: var(--white);
    padding: 8px 14px;
    border-radius: var(--radius);
    font-size: .78rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

@media (max-width: 768px) {
    .whatsapp-float { bottom: 90px; left: 16px; width: 48px; height: 48px; }
    .whatsapp-tooltip { display: none; }
}

/* ===== TOAST ===== */
.toast-container {
    position: fixed;
    top: 80px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--black);
    color: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius);
    font-size: .85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,.3);
    animation: toastIn .3s ease;
    border-left: 4px solid var(--red);
    max-width: 360px;
}

.toast.toast-success { border-left-color: #059669; }
.toast.toast-info { border-left-color: #2563EB; }

.toast-exit { animation: toastOut .3s ease forwards; }

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

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

/* ===== FONT SIZE CONTROLS ===== */
.font-size-controls {
    display: none;
}

.font-btn {
    padding: 4px 10px;
    background: none;
    border: none;
    color: var(--gray-400);
    font-size: .72rem;
    font-weight: 800;
    cursor: pointer;
    transition: all var(--transition);
}

.font-btn:hover { color: var(--white); background: rgba(255,255,255,.1); }
.font-btn:first-child { border-right: 1px solid var(--gray-700); }

/* ===== LIVE CLOCK ===== */
.top-clock {
    margin-left: 12px;
    padding-left: 12px;
    border-left: 1px solid var(--gray-700);
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    color: var(--red);
    font-size: .78rem;
}

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

.animate-in { animation: fadeInUp .6s ease forwards; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-main-image { min-height: 380px; }
    .hero-side { flex-direction: row; }
    .hero-side-card .placeholder-img { min-height: 200px; }
    .content-layout { grid-template-columns: 1fr; }
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
    .videos-grid { grid-template-columns: 1fr; }
    .video-featured { grid-row: span 1; }
    .video-featured .placeholder-img { min-height: 300px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 180px); }
    .gallery-large { grid-column: span 2; grid-row: span 1; }
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { order: -1; }
    .placeholder-about { height: 280px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--black-soft);
        flex-direction: column;
        padding: 16px;
        border-top: 1px solid var(--gray-800);
        box-shadow: var(--shadow-lg);
    }

    .nav.open { display: flex; }
    .menu-toggle { display: flex; }

    .hero-main-image { min-height: 320px; }
    .hero-main-overlay h1 { font-size: 1.4rem; }
    .hero-side { flex-direction: column; }
    .articles-grid { grid-template-columns: 1fr; }

    .video-card:not(.video-featured) { flex-direction: column; }
    .video-card:not(.video-featured) .placeholder-img { width: 100%; min-height: 180px; }

    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 150px); }
    .gallery-large { grid-column: span 2; }

    .newsletter-inner { flex-direction: column; text-align: center; }
    .newsletter-form { flex-direction: column; width: 100%; }
    .newsletter-form input { width: 100%; }

    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
    .footer-contact-info { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 12px; }

    .section-header { flex-direction: column; gap: 12px; align-items: flex-start; }
    .trending-inner { flex-wrap: wrap; }
}

@media (max-width: 480px) {
    .logo { font-size: 1.1rem; gap: 6px; }
    .logo-img { width: 34px; height: 34px; }
    .logo-text { align-items: center; flex-wrap: nowrap; white-space: nowrap; }
    .logo-tchad, .logo-echo { line-height: 1; }
    .logo-slogan { display: none; }
    .top-bar { font-size: .7rem; padding: 4px 0; }
    .top-bar-inner { flex-wrap: wrap; justify-content: center; gap: 4px 12px; }
    .top-links { display: none; }

    .hero-main-image { min-height: 280px; }
    .hero-main-overlay { padding: 24px 20px 20px; }
    .hero-main-overlay h1 { font-size: 1.2rem; }
    .hero-main-overlay p { display: none; }

    .stat-number { font-size: 2rem; }

    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .gallery-large { grid-column: span 1; grid-row: span 1; }
    .gallery-item { height: 180px; }

    .about-content h2 { font-size: 1.5rem; }
    .newsletter-text h2 { font-size: 1.5rem; }
}

/* ===== DROPDOWN NAVIGATION ===== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-arrow {
    transition: transform var(--transition);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--black-soft);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--gray-300);
    font-size: .85rem;
    font-weight: 500;
    transition: all var(--transition);
}

.nav-dropdown-menu a:hover {
    background: rgba(230, 57, 70, .1);
    color: var(--white);
    padding-left: 24px;
}

/* Dropdown responsive mobile */
@media (max-width: 768px) {
    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0,0,0,.2);
        border: none;
        border-radius: 0;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height .3s ease, padding .3s ease;
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown.open .nav-dropdown-menu {
        max-height: 400px;
        padding: 8px 0;
    }

    .nav-dropdown-menu a {
        padding-left: 32px;
    }
}

/* ===== EN DIRECT / LIVE BANNER ===== */
.live-banner {
    background: #1a1a2e;
    border-bottom: 1px solid rgba(230, 57, 70, .3);
    padding: 10px 0;
    overflow: hidden;
}

.live-banner-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    animation: live-pulse 1.5s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .4; transform: scale(.8); }
}

.live-text-wrapper {
    overflow: hidden;
    flex: 1;
}

.live-text {
    color: var(--gray-300);
    font-size: .85rem;
    white-space: nowrap;
    animation: live-scroll 25s linear infinite;
}

@keyframes live-scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* ===== A NE PAS MANQUER ===== */
.must-see {
    padding: 60px 0;
    background: var(--bg-alt);
}

.must-see-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.must-see-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all var(--transition);
    border: 1px solid var(--border-light);
}

.must-see-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.must-see-img {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.placeholder-must-see {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--placeholder-bg);
}

.placeholder-must-see svg {
    width: 40px;
    height: 40px;
    color: var(--placeholder-color);
}

.must-see-img .category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
}

.must-see-content {
    padding: 16px;
}

.must-see-content h3 {
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.must-see-meta {
    font-size: .78rem;
    color: var(--text-secondary);
}

.badge-economie {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-sport {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .must-see-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .must-see-grid {
        grid-template-columns: 1fr;
    }

    .must-see-card {
        display: grid;
        grid-template-columns: 120px 1fr;
    }

    .must-see-img {
        height: 100%;
        min-height: 100px;
    }

    .must-see-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* ===== FOOTER PROFESSIONNEL ===== */
.footer-pro {
    background: #0d0d12;
    color: var(--gray-300);
    padding-top: 60px;
}

.footer-pro-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gray-800);
}

.footer-pro-brand p {
    margin-top: 16px;
    font-size: .88rem;
    line-height: 1.7;
    color: var(--gray-400);
}

.footer-pro-contact {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-pro-contact p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: var(--gray-400);
    margin: 0;
}

.footer-pro-links {
    display: flex;
    flex-direction: column;
}

.footer-pro-links h4 {
    color: var(--white);
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.footer-pro-links a {
    color: var(--gray-400);
    font-size: .85rem;
    padding: 6px 0;
    transition: all var(--transition);
}

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

.footer-pro-app h4 {
    color: var(--white);
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.footer-pro-app > p {
    font-size: .85rem;
    color: var(--gray-400);
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-app-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius);
    padding: 10px 16px;
    color: var(--white);
    transition: all var(--transition);
}

.app-store-btn:hover {
    background: var(--gray-700);
    border-color: var(--gray-600);
    transform: translateY(-2px);
}

.app-store-btn span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.app-store-btn small {
    font-size: .65rem;
    color: var(--gray-400);
}

.app-store-btn strong {
    font-size: .85rem;
    font-weight: 600;
}

/* Barre réseaux sociaux footer */
.footer-social-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-800);
}

.footer-social-bar > span {
    font-size: .7rem;
    color: var(--gray-400);
    font-weight: 600;
    white-space: nowrap;
}

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

.footer-social-icons a svg {
    width: 10px;
    height: 10px;
}

.footer-social-icons a {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: var(--gray-800);
    color: var(--gray-400);
    transition: all var(--transition);
}


.footer-social-icons a:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-social-icons svg {
    width: 18px;
    height: 18px;
}

/* Liens légaux footer */
.footer-legal {
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
}

.footer-legal-links a {
    font-size: .78rem;
    color: var(--gray-500);
    transition: color var(--transition);
}

.footer-legal-links a:hover {
    color: var(--white);
}

.footer-copyright {
    font-size: .78rem;
    color: var(--gray-600);
}

/* Footer responsive */
@media (max-width: 1024px) {
    .footer-pro-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 32px;
    }

    .footer-pro-brand {
        grid-column: span 3;
    }

    .footer-pro-app {
        grid-column: span 3;
    }

    .footer-app-buttons {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .footer-pro-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .footer-pro-brand {
        grid-column: span 2;
    }

    .footer-pro-app {
        grid-column: span 2;
    }

    .footer-social-bar {
        flex-direction: column;
        gap: 12px;
    }

    .footer-legal-links {
        gap: 6px 16px;
    }
}

@media (max-width: 480px) {
    .footer-pro-grid {
        grid-template-columns: 1fr;
    }

    .footer-pro-brand {
        grid-column: span 1;
    }

    .footer-pro-app {
        grid-column: span 1;
    }

    .footer-app-buttons {
        flex-direction: column;
    }

    .live-text {
        font-size: .78rem;
    }
}

/* ===== PWA INSTALL BANNER ===== */
.pwa-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9997;
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    border-top: 2px solid var(--red);
    padding: 14px 20px;
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 -4px 30px rgba(0,0,0,.4);
}

.pwa-banner.visible {
    transform: translateY(0);
}

.pwa-banner-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 14px;
}

.pwa-banner-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    flex-shrink: 0;
}

.pwa-banner-text {
    flex: 1;
    min-width: 0;
}

.pwa-banner-text strong {
    display: block;
    color: var(--white);
    font-size: .9rem;
}

.pwa-banner-text span {
    color: var(--gray-400);
    font-size: .75rem;
}

.pwa-banner-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.pwa-btn-install {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: .8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
}

.pwa-btn-install:hover {
    background: var(--red-dark);
}

.pwa-btn-close {
    background: none;
    border: none;
    color: var(--gray-500);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
}

.pwa-btn-close:hover {
    color: var(--white);
}

@media (max-width: 480px) {
    .pwa-banner-icon { width: 36px; height: 36px; }
    .pwa-banner-text strong { font-size: .8rem; }
    .pwa-banner-text span { font-size: .7rem; }
    .pwa-btn-install { padding: 6px 14px; font-size: .75rem; }
}
