/* --- 1. BASE & RESET --- */
:root { --bg: #050505; --bg-alt: #0F0F0F; --surface: #0d0d0d; --accent: #5865F2; --text: #ffffff; --text-dim: #888; --spring: cubic-bezier(0.16, 1, 0.3, 1); --spring-bounce: cubic-bezier(0.68, -0.6, 0.32, 1.6); }
* { margin: 0; padding: 0; box-sizing: border-box; outline: none; } html { scroll-behavior: smooth; } body { font-family: 'Plus Jakarta Sans', sans-serif; background-color: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; } .container { max-width: 1600px; margin: 0 auto; padding: 0 100px; }

/* =========================================
   2. MOTEUR D'ANIMATION PREMIUM
   ========================================= */
[class*="reveal"] { opacity: 0; transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1); will-change: transform, opacity, filter; }
.reveal-bottom { transform: translateY(50px); } .reveal-left { transform: translateX(-60px); } .reveal-right { transform: translateX(60px); } .reveal-scale { transform: scale(0.9); } .reveal-blur { transform: translateY(30px); filter: blur(15px); }
[class*="reveal"].active { opacity: 1; transform: translate(0) scale(1); filter: blur(0); }
.delay-1 { transition-delay: 0.1s; } .delay-2 { transition-delay: 0.2s; } .delay-3 { transition-delay: 0.3s; } .delay-4 { transition-delay: 0.4s; } .delay-5 { transition-delay: 0.5s; } .delay-6 { transition-delay: 0.6s; }
.bouncy { transition: all 0.5s var(--spring-bounce); cursor: pointer; } .bouncy:hover { transform: scale(1.05) translateY(-2px); filter: brightness(1.2); } .bouncy:active { transform: scale(0.95); }
@keyframes slideFadeIn { from { opacity: 0; transform: translateX(30px); filter: blur(10px); } to { opacity: 1; transform: translateX(0); filter: blur(0); } } @keyframes slideFadeOut { from { opacity: 1; transform: translateX(0); filter: blur(0); } to { opacity: 0; transform: translateX(-30px); filter: blur(10px); } } .swapping { animation: slideFadeOut 0.35s var(--spring) forwards; } .swapped-in { animation: slideFadeIn 0.5s var(--spring) forwards; }

/* --- 3. NAVBAR --- */
.navbar { position: fixed; width: 100%; z-index: 1000; padding: 1.5rem 0; backdrop-filter: blur(15px); background: rgba(5, 5, 5, 0.8); border-bottom: 1px solid rgba(255,255,255,0.05); transform: translateY(-100%); transition: transform 1s var(--spring); } .navbar.loaded { transform: translateY(0); } .navbar .container { display: flex; justify-content: space-between; align-items: center; padding: 0 20px; } .logo { font-weight: 800; font-size: 1.2rem; text-decoration: none; color: white; letter-spacing: -1px; } .logo span { color: var(--accent); text-shadow: 0 0 10px rgba(88, 101, 242, 0.5); } .nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; transition: 0.4s var(--spring); } .nav-links a { text-decoration: none; color: var(--text-dim); font-size: 0.9rem; font-weight: 600; transition: 0.3s; } .nav-links a:hover { color: white; text-shadow: 0 0 10px rgba(255,255,255,0.5); } .nav-cta { background: white; color: black !important; padding: 0.6rem 1.2rem; border-radius: 6px; cursor: pointer; border: none; font-weight: 700; transition: var(--spring-bounce); } .menu-toggle { display: none; flex-direction: column; cursor: pointer; gap: 6px; z-index: 1001; } .menu-toggle .bar { width: 30px; height: 3px; background-color: white; transition: 0.3s ease; border-radius: 2px; } .menu-toggle.active .bar:nth-child(2) { opacity: 0; } .menu-toggle.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); } .menu-toggle.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-445deg); }

/* --- 4. HERO SECTION --- */
.hero { height: 100vh; width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; overflow: hidden; text-align: center; } .video-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; overflow: hidden; } .video-bg video { min-width: 100%; min-height: 100%; width: 100vw; height: 100vh; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); object-fit: cover; opacity: 0.35; } .hero-content { z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; margin-top: -10vh; padding: 0 20px; width: 100%; } .hero-title-modern { font-size: clamp(3rem, 6vw, 5.5rem); line-height: 1.1; margin-bottom: 10px; color: white; font-weight: 800; letter-spacing: -2px; text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8); } .text-gradient { background: linear-gradient(135deg, #5EE7FF 0%, #FF7BE5 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; filter: none; } .hero-subtitle-modern { font-size: 1.2rem; color: #ffef42; max-width: 600px; margin: 0 auto 5px auto; font-weight: 800; letter-spacing: 2px; text-shadow: 0 0 15px rgba(255, 239, 66, 0.4); } .hero-stats-premium { margin: 5px auto 20px auto; display: flex; flex-direction: column; align-items: center; } .stat-number-premium { font-size: clamp(3.5rem, 6vw, 4.5rem); font-weight: 900; color: white; line-height: 1; letter-spacing: -2px; text-shadow: 0 0 30px rgba(88, 101, 242, 0.4); } .stat-label-premium { font-size: 0.85rem; font-weight: 800; color: var(--accent); letter-spacing: 5px; text-transform: uppercase; margin-top: 5px; } .btn-premium { position: relative; background: rgba(10, 10, 10, 0.6); color: white; padding: 1.2rem 4rem; border-radius: 50px; font-weight: 800; font-size: 1.1rem; letter-spacing: 1px; border: 1px solid rgba(255, 255, 255, 0.15); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(88, 101, 242, 0.2); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); cursor: pointer; overflow: hidden; margin-bottom: 5px; transition: all 0.4s var(--spring-bounce); } .btn-premium::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(88, 101, 242, 0.4), transparent); transition: left 0.5s ease; } .btn-premium:hover::before { left: 100%; } .btn-premium:hover { border-color: rgba(88, 101, 242, 0.8); box-shadow: 0 15px 35px rgba(0,0,0,0.6), 0 0 30px rgba(88, 101, 242, 0.6); transform: translateY(-3px) scale(1.02); } .arrow { display: inline-block; transition: transform 0.3s var(--spring); margin-left: 8px; } .btn-premium:hover .arrow { transform: translateX(5px); } .status-badge { display: inline-flex; align-items: center; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 8px 18px; border-radius: 50px; margin-top: 10px; } .status-dot { width: 8px; height: 8px; background-color: #10b981; border-radius: 50%; margin-right: 12px; box-shadow: 0 0 12px rgba(16, 185, 129, 0.6); animation: pulseDot 2s infinite; } @keyframes pulseDot { 0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); } 70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); } 100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); } } .status-text { font-size: 0.85rem; font-weight: 600; color: #d4d4d8; letter-spacing: 0.5px; }

/* --- 5. CAROUSEL --- */
.clients-slider-section { padding: 30px 0 12vh 0; background: linear-gradient(to bottom, rgba(5,5,5,0) 0%, rgba(5,5,5,0.9) 15%, #050505 30%); border-top: none; overflow: hidden; position: relative; z-index: 10; margin-top: -25vh; display: flex; flex-direction: column; align-items: center; min-height: 26vh; } .clients-title { text-align: center; font-size: 0.75rem; font-weight: 800; letter-spacing: 3px; color: rgba(255, 255, 255, 0.8); margin-top: 25px; margin-bottom: 0; text-transform: uppercase; text-shadow: 0 0 10px rgba(255, 255, 255, 0.3); } .slider-container-limited { max-width: 1300px; width: 100%; margin: 0 auto; overflow: hidden; mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%); -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%); } .slider-track { display: flex; gap: 60px; width: max-content; animation: scrollLogos 100s linear infinite; padding: 10px 0; } .client-item { display: flex; flex-direction: column; align-items: center; text-align: center; width: 110px; flex-shrink: 0; } .client-avatar-large { width: 80px; height: 80px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.1); padding: 3px; overflow: hidden; background: #000; margin-bottom: 10px; transition: transform 0.3s ease; } .client-item:hover .client-avatar-large { border-color: var(--accent); transform: scale(1.1); box-shadow: 0 0 15px rgba(88, 101, 242, 0.4); } .client-avatar-large img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; } .client-name { font-weight: 700; color: white; font-size: 0.9rem; } .client-subs { font-size: 0.7rem; color: var(--text-dim); font-weight: 600; text-transform: uppercase; } @keyframes scrollLogos { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- 6. DASHBOARD --- */
.showcase { padding: 120px 0; } .section-header { width: 100%; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; margin-bottom: 2rem; } .section-header h2 { font-size: 2.5rem; font-weight: 800; text-transform: uppercase; letter-spacing: -1px; margin-bottom: 10px; color: white; text-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 0 0 40px rgba(88, 101, 242, 0.4); } .section-header p { color: var(--text-dim); font-size: 1.1rem; max-width: 600px; } .portfolio-filters { display: flex; justify-content: center; gap: 15px; margin-bottom: 40px; flex-wrap: wrap; } .filter-btn { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: var(--text-dim); padding: 10px 25px; border-radius: 50px; cursor: pointer; font-weight: 700; font-size: 0.8rem; letter-spacing: 1px; transition: all 0.3s var(--spring); text-transform: uppercase; } .filter-btn:hover { color: white; border-color: rgba(255,255,255,0.3); } .filter-btn.active { background: var(--accent); border-color: var(--accent); color: white; box-shadow: 0 0 20px rgba(88, 101, 242, 0.4); } .dashboard { display: grid; grid-template-columns: 1.6fr 1.4fr; gap: 120px; align-items: flex-start; transition: opacity 0.4s ease, transform 0.4s var(--spring); } .player-side { position: relative; width: 100%; } .video-frame { position: relative; background: #000; width: 100%; aspect-ratio: 16/9; border-radius: 28px; overflow: hidden; border: 1px solid #222; box-shadow: 0 40px 80px rgba(0,0,0,0.6); transition: transform 0.4s var(--spring); } .nav-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); color: white; width: 55px; height: 55px; border-radius: 50%; cursor: pointer; z-index: 100; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: var(--spring-bounce); backdrop-filter: blur(5px); } .nav-btn:hover { background: white; color: black; box-shadow: 0 0 15px white; transform: translateY(-55%) scale(1.1) !important; } .btn-prev { left: -75px; } .btn-next { right: -75px; } .data-side { background: var(--surface); border-radius: 40px; padding: 60px 50px; border: 1px solid #1a1a1a; min-height: 600px; display: flex !important; flex-direction: column !important; align-items: center !important; box-shadow: 0 25px 50px rgba(0,0,0,0.5); text-align: center; } .channel-name { color: var(--accent); font-size: 1rem; font-weight: 800; font-style: italic; margin-bottom: 30px; text-shadow: 0 0 10px rgba(88, 101, 242, 0.4); } .video-title { margin-bottom: 10px; font-size: 1.5rem; } .tab-nav { display: inline-flex; align-items: center; justify-content: center; gap: 15px; background: #111; padding: 10px 20px; border-radius: 50px; border: 1px solid #222; margin: 0 auto 40px auto; } .tab-arrow { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); color: white; cursor: pointer; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; padding: 0; } .tab-arrow:hover { background: var(--accent); } #tab-name { font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); font-weight: 800; min-width: 160px; text-align: center; line-height: 1; text-shadow: 0 0 10px rgba(88, 101, 242, 0.4); } .tab-content { width: 100%; position: relative; } .pane { display: none !important; width: 100%; } .pane.active { display: block !important; animation: springIn 0.8s var(--spring) forwards; } .feedback-box { border-left: 4px solid var(--accent); padding: 10px 0 10px 30px; text-align: left; } .feedback-box p { font-size: 1.3rem; font-style: italic; color: #eee; margin-bottom: 10px; } #val-author { color: var(--accent); font-weight: 800; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; } .has-tooltip { position: relative; cursor: help; } .tooltip { position: absolute; bottom: 120%; left: 50%; transform: translateX(-50%); background: #1a1a1a; color: white; padding: 12px 18px; border-radius: 12px; font-size: 0.75rem; width: 220px; text-align: center; z-index: 100; opacity: 0; visibility: hidden; pointer-events: none; transition: 0.3s var(--spring); border: 1px solid var(--accent); box-shadow: 0 10px 30px rgba(0,0,0,0.5); line-height: 1.4; } .has-tooltip:hover .tooltip { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(-10px); } .chart-tabs-container { width: 100%; display: flex; justify-content: center; margin-bottom: 25px; } .chart-tabs { display: flex; gap: 30px; border-bottom: 1px solid #1a1a1a; width: 100%; justify-content: space-around; } .tab-btn { background: none; border: none; color: var(--text-dim); padding: 12px 5px; cursor: pointer; font-weight: 700; font-size: 0.85rem; font-family: 'Plus Jakarta Sans', sans-serif; transition: all 0.3s var(--spring); border-bottom: 3px solid transparent; } .tab-btn.active { color: white; border-bottom: 3px solid var(--accent); } .stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; width: 100%; } .stat-card { background: #141414; padding: 30px 10px; border-radius: 20px; text-align: center; border: 1px solid #222; } .stat-card.highlight { background: var(--accent); border-color: var(--accent); box-shadow: 0 10px 20px rgba(88, 101, 242, 0.2); } .stat-label { display: block; font-size: 0.65rem; color: #fff; font-weight: 800; text-transform: uppercase; margin-bottom: 15px; } .stat-value { font-size: 1.8rem; font-weight: 900; } .chart-container { height: 320px; width: 100%; position: relative; margin-top: 10px; background: rgba(255, 255, 255, 0.02); border-radius: 12px; padding: 15px; border: 1px solid rgba(255, 255, 255, 0.05); }

/* --- 7. REVIEWS --- */
.section-alt { background-color: var(--bg-alt); border-top: 1px solid #1a1a1a; border-bottom: 1px solid #1a1a1a; padding: 60px 0; } .testimonials { padding: 50px 0; } .t-slider-container { display: flex; gap: 30px; justify-content: center; padding: 20px 0; flex-wrap: wrap; } .t-card-yt { width: 100%; max-width: 480px; background: var(--surface); padding: 45px; border-radius: 32px; border: 1px solid #1a1a1a; transition: var(--spring-bounce); text-align: left; } .t-card-yt:hover { border-color: var(--accent); transform: translateY(-10px); box-shadow: 0 10px 30px rgba(88, 101, 242, 0.1); } .t-header-yt { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; } .t-avatar-wrapper { width: 60px; height: 60px; border-radius: 50%; border: 2px solid var(--accent); padding: 3px; overflow: hidden; flex-shrink: 0; } .t-avatar-img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; } .t-comment-yt { font-size: 1.1rem; color: #eee; font-style: italic; line-height: 1.6; border-left: 4px solid #222; padding-left: 25px; }

/* =========================================
   8. EDITOR PROFILE & TIMELINE (ACTIVITY BOARD 2 COLONNES)
   ========================================= */
.profile-section { padding: 100px 0; }
.profile-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; }

.profile-card { background: var(--surface); border: 1px solid #1a1a1a; border-radius: 40px; padding: 50px 40px; text-align: center; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.profile-avatar-img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 3px solid var(--accent); padding: 4px; margin-bottom: 10px; }
.profile-story p { color: #ccc; font-size: 1rem; line-height: 1.7; text-align: justify; margin-bottom: 15px; }
.profile-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 30px; }
.tag { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 8px 16px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; color: white; letter-spacing: 1px; transition: 0.3s; }
.tag:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); }

.timeline-grid-wrapper { background: var(--surface); border: 1px solid #1a1a1a; border-radius: 30px; padding: 40px; overflow-x: auto; margin-bottom: 20px; }
.timeline-grid { display: flex; flex-direction: column; gap: 10px; min-width: 600px; }
.timeline-row { display: grid; grid-template-columns: 40px repeat(12, 1fr); gap: 10px; align-items: center; }
.timeline-year-label { font-size: 0.8rem; font-weight: 700; color: var(--text-dim); text-align: right; padding-right: 10px; }
.timeline-month-label { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; color: var(--text-dim); text-align: center; }
.timeline-box { aspect-ratio: 1; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 800; color: white; transition: 0.2s var(--spring-bounce); }
.timeline-box.clickable { cursor: pointer; }
.timeline-box.clickable:hover { transform: scale(1.15); box-shadow: 0 0 15px rgba(16, 185, 129, 0.4); border: 1px solid rgba(255,255,255,0.5); }

.level-0 { background-color: #1a1a1a; border: 1px solid #222; }
.level-1 { background-color: #064e3b; } 
.level-2 { background-color: #059669; } 
.level-3 { background-color: #10b981; } 

/* LE NOUVEAU PANNEAU D'ACTIVITÉ (INSPIRÉ YTJOBS) */
.activity-board { background: #111; border: 1px solid #222; border-radius: 20px; overflow: hidden; max-height: 0; opacity: 0; transition: all 0.6s var(--spring); }
.activity-board.active { max-height: 2000px; opacity: 1; padding: 30px; margin-top: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.6); }

.activity-board-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; padding-bottom: 15px; border-bottom: 1px solid #222; }
.activity-month-badge { background: var(--accent); color: white; padding: 8px 20px; border-radius: 50px; font-weight: 900; letter-spacing: 1px; }
.close-board { background: none; border: none; color: white; font-size: 2.5rem; line-height: 1; cursor: pointer; transition: 0.3s; }
.close-board:hover { color: var(--accent); transform: scale(1.1) rotate(90deg); }

.activity-board-content { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: start; }
.col-title { font-size: 1.1rem; color: white; margin-bottom: 20px; }

/* Colonne Clients (Gauche) */
.activity-clients-col { border-right: 1px solid #222; padding-right: 20px; height: 100%; }
.activity-clients-list { display: flex; flex-direction: column; gap: 15px; }
.activity-client-item { display: flex; align-items: center; gap: 15px; background: rgba(255,255,255,0.02); padding: 12px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); }
.activity-client-avatar { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent); }
.activity-client-info h5 { font-size: 0.95rem; color: white; margin-bottom: 2px; }
.activity-client-info p { font-size: 0.75rem; color: var(--text-dim); }
.vid-count { color: var(--accent); font-weight: 800; margin-left: 5px; }

/* Colonne Vidéos (Droite) */
.activity-video-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.activity-card { display: flex; gap: 15px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); padding: 15px; border-radius: 16px; transition: 0.3s; cursor: pointer; align-items: center; }
.activity-card:hover { background: rgba(255,255,255,0.08); border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.activity-thumb { width: 140px; height: 78px; border-radius: 8px; object-fit: cover; box-shadow: 0 5px 15px rgba(0,0,0,0.5); }
.activity-info h4 { font-size: 0.95rem; margin-bottom: 5px; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.activity-meta { font-size: 0.85rem; margin-bottom: 5px; }
.activity-meta-channel { font-size: 0.75rem; color: var(--text-dim); }

.video-modal-box { background: #000; width: 90%; max-width: 1000px; border-radius: 20px; padding: 20px; position: relative; border: 1px solid #333; }
.video-responsive { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 12px; }
.video-responsive iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

@media (max-width: 1300px) { .profile-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .activity-board-content { grid-template-columns: 1fr; } .activity-clients-col { border-right: none; border-bottom: 1px solid #222; padding-right: 0; padding-bottom: 20px; } .activity-video-list { grid-template-columns: 1fr; } }

/* --- 9. MODAL & FOOTER --- */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.92); backdrop-filter: blur(15px); z-index: 2000; display: none; align-items: center; justify-content: center; opacity: 0; transition: 0.4s ease; } .modal-overlay.active { display: flex; opacity: 1; } .contact-box { background: #0f0f0f; border: 1px solid #222; padding: 60px; border-radius: 48px; width: 95%; max-width: 600px; text-align: center; position: relative; } .discord-profile-card { background: #151515; border-radius: 28px; padding: 35px; margin-bottom: 20px; display: flex; flex-direction: column; align-items: center; border: 1px solid #222; color: white; transition: 0.3s; cursor: default !important; } .discord-avatar { width: 100px; height: 100px; border-radius: 50%; margin-bottom: 20px; border: 3px solid #5865F2; } .twitter-link { display: block; padding: 25px; border-radius: 20px; background: rgba(29, 161, 242, 0.1); border: 1px solid rgba(29, 161, 242, 0.2); color: white; text-decoration: none; font-weight: 800; transition: 0.3s; } .close-modal { position: absolute; top: 30px; right: 30px; background: none; border: none; color: white; font-size: 2rem; cursor: pointer; } .final-cta { padding: 180px 0; text-align: center; } .btn-main { display: inline-flex; align-items: center; gap: 10px; background: var(--accent); color: white; padding: 1.4rem 4.5rem; border-radius: 50px; font-weight: 800; text-decoration: none; cursor: pointer; border: none; transition: var(--spring-bounce); box-shadow: 0 10px 25px rgba(88, 101, 242, 0.4); } .btn-main:hover { transform: scale(1.05); box-shadow: 0 15px 35px rgba(88, 101, 242, 0.6); filter: brightness(1.1); } .footer { padding: 4rem; text-align: center; color: var(--text-dim); font-size: 0.8rem; border-top: 1px solid #111; }

/* --- RESPONSIVENESS --- */
@media (max-width: 1300px) { .container { padding: 0 40px; } .dashboard { grid-template-columns: 1fr; gap: 40px; } .btn-prev { left: -20px; } .btn-next { right: -20px; } .profile-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .menu-toggle { display: flex; } .nav-links { position: fixed; right: -100%; top: 0; flex-direction: column; background: rgba(5, 5, 5, 0.98); backdrop-filter: blur(20px); width: 100%; height: 100vh; justify-content: center; gap: 3rem; z-index: 1000; } .nav-links.active { right: 0; } .hero { height: auto; min-height: 100vh; padding: 100px 20px; } .hero-title-modern { font-size: 2.5rem; } .data-side { padding: 30px 20px; } .stats-grid { grid-template-columns: 1fr; } .activity-video-list { grid-template-columns: 1fr; } }

/* BARRE DE STATISTIQUES GLOBALES (TIMELINE) */
.timeline-global-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 15px 30px;
    margin-bottom: 25px;
}
.t-stat-block {
    flex: 1;
    text-align: center;
    font-size: 1.15rem;
    font-weight: 800;
    color: white;
}
.t-stat-block span {
    font-size: 1.15rem;
    font-weight: 800;
}
.t-stat-divider {
    width: 1px;
    height: 25px;
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .timeline-global-stats { flex-direction: column; gap: 15px; padding: 20px; }
    .t-stat-divider { width: 100%; height: 1px; }
}