/* ============================================================
   KOL PROFILE — Public Page Styles
   Sử dụng trong _Layout.cshtml (KHÔNG standalone)
   Tailwind + Roboto đã load sẵn từ _Layout
   ============================================================ */



/* ============================================
   SECTION A: HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* BG Layers */
.bg-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(#ffffff02 1px, transparent 1px),
        linear-gradient(90deg, #ffffff02 1px, transparent 1px);
    background-size: 80px 80px;
}
.bg-radial {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 50% 50% at 50% 50%, #facc1505 0%, transparent 60%);
}
.bg-vignette {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 70% at 50% 50%, transparent 40%, #030305 100%);
}

/* Floating particles */
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.p-dot {
    position: absolute;
    background: #facc15;
    border-radius: 50%;
    opacity: 0;
    animation: pFloat linear infinite;
}
@keyframes pFloat {
    0%   { transform: translateY(0) scale(0); opacity: 0; }
    15%  { opacity: 0.4; transform: scale(1); }
    85%  { opacity: 0.15; }
    100% { transform: translateY(-900px) translateX(30px) scale(0); opacity: 0; }
}

/* Main Content */
.hero-inner {
    text-align: center;
    position: relative;
    z-index: 5;
    max-width: 900px;
    padding: 0 24px;
}

/* Giant name */
.hero-name-wrapper {
    margin-bottom: 10px;
    animation: fadeIn 0.8s ease 0.15s both;
}
.hero-name-sub {
    font-size: 14px;
    color: #333;
    letter-spacing: 12px;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-weight: 400;
}
.hero-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 96px;
    font-weight: 900;
    letter-spacing: 8px;
    line-height: 1;
    position: relative;
    display: inline-block;
}
.hero-name .fill {
    background: linear-gradient(180deg, #fff 0%, #facc15 60%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-name .stroke-outline {
    position: absolute; inset: 0;
    -webkit-text-stroke: 1px #facc1515;
    -webkit-text-fill-color: transparent;
}
.hero-name .glow {
    position: absolute; inset: 0;
    color: #facc15;
    filter: blur(30px);
    opacity: 0.15;
}

/* Tagline */
.hero-tagline {
    font-size: 13px;
    color: #555;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 40px;
    animation: fadeIn 0.8s ease 0.3s both;
}
.hero-tagline .sep { color: #facc1540; margin: 0 8px; }

/* Divider */
.hero-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #facc15, transparent);
    margin: 0 auto 40px;
    animation: fadeIn 0.8s ease 0.35s both;
}

/* Bio */
.hero-bio {
    font-size: 15px;
    color: #666;
    line-height: 1.9;
    max-width: 600px;
    margin: 0 auto 48px;
    animation: fadeIn 0.8s ease 0.4s both;
}
.hero-bio strong { color: #facc15; font-weight: 700; }

/* Stats row */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
    animation: fadeIn 0.8s ease 0.5s both;
}
.h-stat { text-align: center; position: relative; }
.h-stat::after {
    content: '';
    position: absolute;
    right: -24px; top: 50%;
    transform: translateY(-50%);
    width: 1px; height: 30px;
    background: #1a1a1a;
}
.h-stat:last-child::after { display: none; }
.h-stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px; font-weight: 900; color: #fff;
}
.h-stat-value .unit { color: #facc15; font-size: 18px; }
.h-stat-label {
    font-size: 9px; color: #444;
    text-transform: uppercase; letter-spacing: 2.5px; margin-top: 6px;
}

/* CTA */
.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 16px;
    animation: fadeIn 0.8s ease 0.6s both;
}
.btn {
    padding: 14px 40px;
    border-radius: 12px;
    font-family: 'Roboto', sans-serif;
    font-size: 11px; font-weight: 900;
    text-transform: uppercase; letter-spacing: 2px;
    cursor: pointer; transition: all 0.4s;
    position: relative; overflow: hidden;
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-gold {
    background: linear-gradient(135deg, #facc15, #f59e0b);
    color: #000; border: none;
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px #facc1530;
}
.btn-gold::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(105deg, transparent 30%, #ffffff40 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}
.btn-gold:hover::before { transform: translateX(100%); }
.btn-ghost {
    background: transparent;
    color: #facc15;
    border: 1px solid #facc1525;
}
.btn-ghost:hover {
    border-color: #facc15;
    background: #facc1508;
    transform: translateY(-3px);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
.section {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 24px;
}
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid #facc1540;
    border-radius: 6px;
    background: #facc1510;
    font-size: 10px; font-weight: 900;
    color: #facc15;
    text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 16px;
}
/* Icon inside badge — replaces old emoji ::before */
.section-badge .badge-icon {
    width: 14px; height: 14px;
    flex-shrink: 0;
}
.section-title {
    font-size: 42px; font-weight: 900;
    line-height: 1.1; margin-bottom: 8px;
}
.section-subtitle {
    font-size: 14px; color: #666; margin-bottom: 48px;
}

/* ============================================
   SECTION B: TIMELINE
   ============================================ */
.timeline-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}
.timeline-left { flex: 1; }
.bio-text {
    font-size: 14px; color: #999; line-height: 2; margin-bottom: 48px;
}
.bio-text strong { color: #facc15; }

/* Timeline */
.timeline {
    position: relative;
    padding-left: 40px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 14px; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #facc1560, #facc1510);
}
.tl-item {
    position: relative;
    margin-bottom: 36px;
    padding-left: 20px;
    opacity: 0;
    transform: translateX(-20px);
}
.tl-item.visible {
    animation: fadeInLeft 0.6s ease forwards;
}
@keyframes fadeInLeft {
    to { opacity: 1; transform: translateX(0); }
}
/* Dot */
.tl-item::before {
    content: '';
    position: absolute;
    left: -33px; top: 6px;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: #facc15;
    border: 3px solid #0a0a0a;
    box-shadow: 0 0 12px #facc1540;
    z-index: 2;
}
.tl-year {
    font-size: 12px; font-weight: 900;
    color: #facc15; letter-spacing: 2px; margin-bottom: 6px;
}
.tl-title {
    font-size: 16px; font-weight: 900; margin-bottom: 6px;
    display: flex; align-items: center; gap: 8px;
}
.tl-title .tl-icon {
    width: 18px; height: 18px; color: #facc15; flex-shrink: 0;
}
.tl-desc {
    font-size: 13px; color: #888; line-height: 1.7;
}

/* Right: Info Card */
.timeline-right {
    flex-shrink: 0;
    width: 320px;
    position: sticky;
    top: 100px;
}
.info-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}
.info-card-header {
    padding: 16px 20px;
    border-bottom: 1px solid #1a1a1a;
    font-size: 10px; font-weight: 900;
    color: #facc15;
    text-transform: uppercase; letter-spacing: 2px;
    display: flex; align-items: center; gap: 8px;
}
.info-card-header .header-icon {
    width: 14px; height: 14px; flex-shrink: 0;
}
.info-card-body { padding: 20px; }
.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #0f0f0f;
}
.info-row:last-child { border-bottom: none; }
.info-row-label {
    font-size: 11px; color: #555;
    text-transform: uppercase; letter-spacing: 1px;
}
.info-row-value {
    font-size: 13px; font-weight: 700; color: #facc15;
    display: flex; align-items: center; gap: 4px;
}
.info-row-value .value-icon {
    width: 14px; height: 14px;
}

/* Quote card */
.quote-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 16px;
    padding: 24px;
    position: relative;
}
.quote-card::before {
    content: '';
    position: absolute;
    top: -1px; left: 30px; right: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #facc15, transparent);
}
.quote-icon {
    font-size: 28px; color: #facc15; margin-bottom: 12px;
    display: flex; align-items: center;
}
.quote-icon .qi { width: 28px; height: 28px; }
.quote-text {
    font-size: 16px; font-weight: 700;
    line-height: 1.6; margin-bottom: 12px; color: #ddd;
}
.quote-author {
    font-size: 11px; color: #555;
    text-transform: uppercase; letter-spacing: 1.5px;
}

/* Skills */
.skill-bar { margin-bottom: 14px; }
.skill-label {
    display: flex; justify-content: space-between;
    font-size: 11px; font-weight: 700; color: #888;
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px;
}
.skill-track {
    height: 4px; background: #111;
    border-radius: 4px; overflow: hidden;
}
.skill-fill {
    height: 100%;
    background: linear-gradient(90deg, #facc15, #fde047);
    border-radius: 4px; width: 0;
    transition: width 1.2s cubic-bezier(0.2, 0.8, 0.3, 1);
}

/* ============================================
   SECTION C: NEWS 3D CAROUSEL
   ============================================ */
.section-c { max-width: 1200px; }
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
}
.section-header .section-subtitle { margin-bottom: 0; }
.btn-view-all {
    padding: 10px 24px;
    background: transparent;
    color: #facc15;
    border: 1px solid #facc1540;
    border-radius: 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 11px; font-weight: 900;
    text-transform: uppercase; letter-spacing: 1.5px;
    cursor: pointer; transition: all 0.3s;
    white-space: nowrap;
}
.btn-view-all:hover {
    border-color: #facc15;
    background: #facc1510;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px #facc1515;
}

/* 3D Carousel */
.carousel-3d {
    position: relative;
    height: 480px;
    perspective: 1200px;
    overflow: visible;
}
.carousel-track {
    position: relative;
    width: 100%; height: 100%;
    transform-style: preserve-3d;
}
.news-card {
    position: absolute;
    width: 380px;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.7s cubic-bezier(0.2, 0.8, 0.3, 1);
    background: #0c0c0c;
    border: 1px solid #1a1a1a;
    opacity: 0;
    pointer-events: none;
}
.news-card[data-pos="0"] {
    transform: translate(-50%, -50%) translateZ(0) scale(1);
    opacity: 1; z-index: 10; pointer-events: all;
    border-color: #facc1530;
    box-shadow: 0 20px 60px #00000060, 0 0 60px #facc1508;
}
.news-card[data-pos="-1"] {
    transform: translate(-50%, -50%) translateX(-360px) translateZ(-120px) rotateY(8deg) scale(0.88);
    opacity: 0.6; z-index: 5; pointer-events: all; filter: brightness(0.6);
}
.news-card[data-pos="1"] {
    transform: translate(-50%, -50%) translateX(360px) translateZ(-120px) rotateY(-8deg) scale(0.88);
    opacity: 0.6; z-index: 5; pointer-events: all; filter: brightness(0.6);
}
.news-card[data-pos="-2"] {
    transform: translate(-50%, -50%) translateX(-620px) translateZ(-250px) rotateY(14deg) scale(0.72);
    opacity: 0.25; z-index: 2; filter: brightness(0.3) blur(1px);
}
.news-card[data-pos="2"] {
    transform: translate(-50%, -50%) translateX(620px) translateZ(-250px) rotateY(-14deg) scale(0.72);
    opacity: 0.25; z-index: 2; filter: brightness(0.3) blur(1px);
}
.news-card[data-pos="0"]::before {
    content: '';
    position: absolute; inset: -1px;
    border-radius: 21px;
    background: linear-gradient(135deg, #facc1530, transparent 40%, transparent 60%, #facc1520);
    z-index: -1;
}

/* Card inner */
.card-thumb {
    width: 100%; height: 220px;
    overflow: hidden; position: relative;
}
.card-thumb img {
    width: 100%; height: 100%;
    object-fit: cover; transition: transform 0.6s;
}
.news-card[data-pos="0"]:hover .card-thumb img { transform: scale(1.08); }
.card-thumb::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to top, #0c0c0c, transparent);
}
.card-badge {
    position: absolute;
    top: 14px; left: 14px; z-index: 2;
    padding: 5px 14px; border-radius: 8px;
    font-size: 9px; font-weight: 900;
    text-transform: uppercase; letter-spacing: 1.5px;
    display: flex; align-items: center; gap: 4px;
}
.card-badge .badge-ico { width: 12px; height: 12px; }
.card-badge.hot { background: linear-gradient(135deg, #f97316, #ef4444); color: #fff; }
.card-badge.recruit { background: linear-gradient(135deg, #facc15, #f59e0b); color: #000; }
.card-badge.recap { background: linear-gradient(135deg, #3b82f6, #8b5cf6); color: #fff; }
.card-badge.tournament { background: linear-gradient(135deg, #22c55e, #10b981); color: #000; }
.card-badge.collab { background: linear-gradient(135deg, #ec4899, #8b5cf6); color: #fff; }

.card-body { padding: 20px 24px 24px; }
.card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.card-date { font-size: 10px; color: #555; letter-spacing: 1px; }
.card-reading-time { font-size: 10px; color: #444; letter-spacing: 0.5px; }
.card-title {
    font-size: 17px; font-weight: 900; line-height: 1.4; margin-bottom: 10px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card-excerpt {
    font-size: 13px; color: #666; line-height: 1.7; margin-bottom: 20px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card-footer { display: flex; justify-content: space-between; align-items: center; }
.card-read-more {
    font-size: 11px; font-weight: 900; color: #facc15;
    text-transform: uppercase; letter-spacing: 1.5px;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px;
    transition: all 0.3s;
}
.card-read-more:hover { gap: 12px; text-shadow: 0 0 12px #facc1540; }
.card-views {
    font-size: 10px; color: #444; display: flex; align-items: center; gap: 4px;
}
.card-views .views-icon { width: 12px; height: 12px; }

/* Carousel Nav */
.carousel-nav-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; margin-top: 40px;
}
.c-nav-btn {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1px solid #1a1a1a;
    background: #0a0a0a;
    color: #666; font-size: 20px;
    cursor: pointer; transition: all 0.3s;
    display: flex; align-items: center; justify-content: center;
}
.c-nav-btn:hover {
    border-color: #facc15; color: #facc15;
    background: #facc1508;
    box-shadow: 0 0 20px #facc1510;
}
.carousel-progress { display: flex; align-items: center; gap: 6px; }
.c-progress-bar {
    width: 120px; height: 3px;
    background: #1a1a1a; border-radius: 3px; overflow: hidden;
}
.c-progress-fill {
    height: 100%; background: #facc15;
    border-radius: 3px;
    transition: width 0.6s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.c-progress-text {
    font-size: 11px; font-weight: 700; color: #555;
    letter-spacing: 1px; min-width: 40px;
}

/* ============================================
   SECTION D: ESPORTS CAROUSEL
   ============================================ */
.carousel-wrapper {
    position: relative;
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 24px;
    overflow: hidden;
    min-height: 500px;
}
.carousel-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 24px 24px 0;
    position: relative; z-index: 10;
}
.carousel-tab {
    padding: 10px 28px;
    border: 1px solid #222;
    border-radius: 10px;
    background: transparent;
    color: #555;
    font-family: 'Roboto', sans-serif;
    font-size: 12px; font-weight: 900;
    text-transform: uppercase; letter-spacing: 1.5px;
    cursor: pointer; transition: all 0.4s;
    position: relative;
}
.carousel-tab:hover { border-color: #444; color: #aaa; }
.carousel-tab.active {
    border-color: #facc15;
    background: #facc1512;
    color: #facc15;
    box-shadow: 0 0 30px #facc1510;
}

/* Stage */
.carousel-stage {
    display: flex;
    align-items: flex-start;
    padding: 40px; gap: 40px;
    position: relative;
}

/* Logo Area */
.logo-area {
    flex-shrink: 0;
    width: 280px; height: 280px;
    position: relative;
    display: flex; align-items: center; justify-content: center;
}
.logo-glow {
    position: absolute;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, #facc1512, transparent 70%);
    border: 1px solid #facc1510;
    animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.08); opacity: 1; }
}
.logo-orbit {
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    border: 1px solid #facc1515;
    animation: orbitSpin 20s linear infinite;
}
.logo-orbit::before {
    content: '';
    position: absolute;
    top: -3px; left: 50%;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #facc15;
    box-shadow: 0 0 12px #facc15;
}
@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.logo-img {
    width: 220px; height: 220px;
    object-fit: contain;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    filter: drop-shadow(0 0 25px #facc1520);
    will-change: transform, opacity;
}
.logo-img.hidden { opacity: 0; pointer-events: none; }
.logo-img.exit-left { animation: logoExitLeft 0.65s cubic-bezier(0.5, 0, 0.75, 0) forwards; }
.logo-img.exit-right { animation: logoExitRight 0.65s cubic-bezier(0.5, 0, 0.75, 0) forwards; }
.logo-img.enter-right { animation: logoEnterRight 0.7s cubic-bezier(0.2, 0.9, 0.3, 1.05) forwards; }
.logo-img.enter-left { animation: logoEnterLeft 0.7s cubic-bezier(0.2, 0.9, 0.3, 1.05) forwards; }

@keyframes logoExitLeft {
    0%   { transform: translate(-50%, -50%) translateX(0) rotate(0deg) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) translateX(-250px) rotate(-90deg) scale(0.3); opacity: 0; }
}
@keyframes logoExitRight {
    0%   { transform: translate(-50%, -50%) translateX(0) rotate(0deg) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) translateX(250px) rotate(90deg) scale(0.3); opacity: 0; }
}
@keyframes logoEnterRight {
    0%   { transform: translate(-50%, -50%) translateX(250px) rotate(90deg) scale(0.3); opacity: 0; }
    100% { transform: translate(-50%, -50%) translateX(0) rotate(0deg) scale(1); opacity: 1; }
}
@keyframes logoEnterLeft {
    0%   { transform: translate(-50%, -50%) translateX(-250px) rotate(-90deg) scale(0.3); opacity: 0; }
    100% { transform: translate(-50%, -50%) translateX(0) rotate(0deg) scale(1); opacity: 1; }
}
.logo-area.transitioning .logo-glow { animation: glowBurst 0.7s ease-out; }
@keyframes glowBurst {
    0%   { transform: scale(1); opacity: 0.6; }
    30%  { transform: scale(1.4); opacity: 1; }
    100% { transform: scale(1); opacity: 0.6; }
}

/* Info Area */
.info-area { flex: 1; position: relative; }
.info-panel { display: none; }
.info-panel.active { display: flex; gap: 0; }
.info-panel.slide-in-right { animation: infoSlideInRight 0.75s cubic-bezier(0.2, 0.8, 0.3, 1) forwards; }
.info-panel.slide-out-left { animation: infoSlideOutLeft 0.55s cubic-bezier(0.4, 0, 0.6, 1) forwards; }
.info-panel.slide-in-left { animation: infoSlideInLeft 0.75s cubic-bezier(0.2, 0.8, 0.3, 1) forwards; }
.info-panel.slide-out-right { animation: infoSlideOutRight 0.55s cubic-bezier(0.4, 0, 0.6, 1) forwards; }

@keyframes infoSlideInRight {
    0%   { transform: translateX(100px) scale(0.95); opacity: 0; }
    60%  { transform: translateX(-5px) scale(1.01); opacity: 0.9; }
    100% { transform: translateX(0) scale(1); opacity: 1; }
}
@keyframes infoSlideOutLeft {
    0%   { transform: translateX(0) scale(1); opacity: 1; }
    100% { transform: translateX(-100px) scale(0.95); opacity: 0; }
}
@keyframes infoSlideInLeft {
    0%   { transform: translateX(-100px) scale(0.95); opacity: 0; }
    60%  { transform: translateX(5px) scale(1.01); opacity: 0.9; }
    100% { transform: translateX(0) scale(1); opacity: 1; }
}
@keyframes infoSlideOutRight {
    0%   { transform: translateX(0) scale(1); opacity: 1; }
    100% { transform: translateX(100px) scale(0.95); opacity: 0; }
}

/* Timeline Column */
.timeline-col {
    width: 40px; flex-shrink: 0;
    position: relative;
    display: flex; flex-direction: column;
    align-items: center; padding: 8px 0;
}
.timeline-col::before {
    content: '';
    position: absolute;
    top: 20px; bottom: 20px; left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: linear-gradient(to bottom, transparent, #facc1540 10%, #facc1580 50%, #facc1540 90%, transparent);
}
.timeline-progress {
    position: absolute;
    top: 20px; left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: #facc15;
    box-shadow: 0 0 8px #facc1560;
    height: 0;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.timeline-dots {
    display: flex; flex-direction: column;
    justify-content: space-between;
    height: 100%;
    position: relative; z-index: 2;
}
.tl-dot {
    width: 18px; height: 18px;
    border-radius: 50%;
    border: 2px solid #333;
    background: #111;
    cursor: pointer; position: relative;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.3, 1);
    display: flex; align-items: center; justify-content: center;
}
.tl-dot::after {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #444;
    transition: all 0.4s;
}
.tl-dot:hover { border-color: #facc1580; transform: scale(1.15); }
.tl-dot:hover::after { background: #facc1580; }
.tl-dot.active {
    border-color: #facc15;
    background: #1a1500;
    box-shadow: 0 0 16px #facc1540, 0 0 4px #facc15;
}
.tl-dot.active::after {
    background: #facc15;
    width: 8px; height: 8px;
    box-shadow: 0 0 8px #facc15;
}
.tl-dot.visited { border-color: #facc1560; }
.tl-dot.visited::after { background: #facc1560; }

/* Content Column */
.content-col {
    flex: 1;
    padding: 0 0 0 24px;
    max-height: 380px;
    overflow-y: auto; overflow-x: hidden;
}
.content-col::-webkit-scrollbar { width: 4px; }
.content-col::-webkit-scrollbar-track { background: transparent; }
.content-col::-webkit-scrollbar-thumb { background: #facc1530; border-radius: 4px; }
.content-col::-webkit-scrollbar-thumb:hover { background: #facc1560; }

.tl-slide {
    display: none;
    flex-direction: column;
    gap: 12px;
    animation: slideIn 0.4s ease;
}
.tl-slide.active { display: flex; }
@keyframes slideIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
.tl-slide-header {
    padding: 10px 16px;
    border: 1px solid #1a1a1a;
    border-radius: 10px;
    background: #0a0a0a;
    margin-bottom: 12px;
    display: flex; align-items: center; gap: 10px;
    flex-shrink: 0;
}
.tl-slide-header-icon {
    display: flex; align-items: center;
    color: #facc15;
}
.tl-slide-header-icon .slide-ico { width: 18px; height: 18px; }
.tl-slide-header-title {
    font-size: 14px; font-weight: 900;
    text-transform: uppercase; letter-spacing: 1px; color: #facc15;
}
.tl-slide-header-tag {
    margin-left: auto;
    padding: 3px 10px;
    background: #facc1510;
    border: 1px solid #facc1520;
    border-radius: 12px;
    font-size: 9px; font-weight: 700;
    color: #facc15; letter-spacing: 1.5px;
}
.tl-slide-content {
    display: flex; gap: 16px; align-items: flex-start;
}
.tl-slide-text {
    flex: 1; min-width: 0;
    font-size: 13px; color: #999; line-height: 1.9;
}
.tl-slide-text .inline-icon {
    display: inline-flex; vertical-align: middle;
    width: 14px; height: 14px; margin: 0 2px;
}
.tl-slide-text .text-gold { color: #facc15; }
.tl-slide-thumb {
    width: 160px; height: 90px;
    border-radius: 10px; overflow: hidden;
    border: 1px solid #1a1a1a; flex-shrink: 0;
}
.tl-slide-thumb img {
    width: 100%; height: 100%;
    object-fit: cover; transition: transform 0.5s ease;
}
.tl-slide-thumb:hover img { transform: scale(1.06); }
.tl-slide-bottom-img {
    width: 100%; height: 70px;
    border-radius: 10px; overflow: hidden;
    border: 1px solid #1a1a1a; flex-shrink: 0;
}
.tl-slide-bottom-img img {
    width: 100%; height: 100%;
    object-fit: cover; transition: transform 0.5s ease;
}
.tl-slide-bottom-img:hover img { transform: scale(1.04); }

/* Nav Arrows */
.carousel-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1px solid #222;
    background: #111; color: #888;
    font-size: 20px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s; z-index: 10;
}
.carousel-nav:hover {
    border-color: #facc15; color: #facc15;
    background: #facc1510;
    box-shadow: 0 0 20px #facc1520;
}
.carousel-nav:active { transform: translateY(-50%) scale(0.9); }
.carousel-nav.prev { left: 16px; }
.carousel-nav.next { right: 16px; }

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0 24px 24px;
}
.carousel-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #333; border: none;
    cursor: pointer; transition: all 0.4s;
}
.carousel-dot.active {
    background: #facc15;
    box-shadow: 0 0 12px #facc1560;
    width: 28px; border-radius: 4px;
}

/* D Particles */
.d-particles {
    position: absolute; inset: 0;
    pointer-events: none; overflow: hidden;
}
.particle {
    position: absolute;
    width: 3px; height: 3px;
    background: #facc15;
    border-radius: 50%; opacity: 0;
}
.particle.burst { animation: particleBurst 1s ease-out forwards; }
@keyframes particleBurst {
    0% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    100% { transform: translate(var(--tx), var(--ty)) scale(0); opacity: 0; }
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px 24px 28px;
    border-top: 1px solid #111;
}
.stat-item {
    text-align: center; opacity: 0;
    transform: translateY(10px);
}
.stat-item.visible { animation: statIn 0.5s ease forwards; }
.stat-item:nth-child(1).visible { animation-delay: 0.1s; }
.stat-item:nth-child(2).visible { animation-delay: 0.2s; }
.stat-item:nth-child(3).visible { animation-delay: 0.3s; }
.stat-item:nth-child(4).visible { animation-delay: 0.4s; }
@keyframes statIn { to { opacity: 1; transform: translateY(0); } }
.stat-value { font-size: 22px; font-weight: 900; color: #facc15; }
.stat-label {
    font-size: 9px; color: #555;
    text-transform: uppercase; letter-spacing: 1px; margin-top: 4px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    text-align: center;
    padding: 48px 24px;
    border-top: 1px solid #0f0f0f;
    font-size: 11px;
    color: #333;
    letter-spacing: 1px;
}
.footer strong { color: #facc15; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .news-card { width: 320px; }
    .news-card[data-pos="-1"] { transform: translate(-50%, -50%) translateX(-300px) translateZ(-100px) rotateY(6deg) scale(0.85); }
    .news-card[data-pos="1"] { transform: translate(-50%, -50%) translateX(300px) translateZ(-100px) rotateY(-6deg) scale(0.85); }
    .news-card[data-pos="-2"], .news-card[data-pos="2"] { opacity: 0; }
}
@media (max-width: 900px) {
    .timeline-layout { flex-direction: column; gap: 40px; }
    .timeline-right { width: 100%; position: static; }
}
@media (max-width: 768px) {
    .hero-name { font-size: 48px; letter-spacing: 4px; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .h-stat-value { font-size: 24px; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .nav-links { display: none; }
    .navbar { padding: 16px 24px; }
    .section-title { font-size: 28px; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .carousel-3d { height: 420px; }
    .news-card { width: 300px; }
    .news-card[data-pos="-1"], .news-card[data-pos="1"] { opacity: 0; pointer-events: none; }
    .carousel-stage { flex-direction: column; padding: 24px; gap: 24px; }
    .logo-area { width: 180px; height: 180px; }
    .logo-img { width: 150px; height: 150px; }
    .logo-glow { width: 160px; height: 160px; }
    .logo-orbit { width: 190px; height: 190px; }
    .carousel-nav { display: none; }
    .stats-bar { gap: 20px; flex-wrap: wrap; }
}
