/* ============================================
   Hidden History TV - Main Stylesheet
   ============================================ */

:root {
    --gold: #c8a84e;
    --gold-light: #e8d48b;
    --gold-dark: #a08030;
    --dark: #0a0a14;
    --dark-surface: #12121e;
    --dark-card: #1a1a2e;
    --dark-border: #2a2a3e;
    --dark-hover: #22223a;
    --text-primary: #f0ece4;
    --text-secondary: #a0a0b4;
    --text-muted: #6a6a80;
    --red-youtube: #ff0000;
    --red-dark: #cc0000;
    --accent-blue: #4a9eff;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.6);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ============================================
   Navbar
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 20, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
    padding: 0 0;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
    transition: var(--transition);
}

.navbar-brand:hover { opacity: 0.85; }

.brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--dark);
}

.brand-accent { color: var(--gold); }

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-menu a {
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: var(--text-primary);
    background: var(--dark-hover);
}

.btn-subscribe {
    background: var(--red-youtube) !important;
    color: #fff !important;
    font-weight: 600 !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px !important;
    border-radius: 50px !important;
    transition: var(--transition);
}

.btn-subscribe:hover {
    background: var(--red-dark) !important;
    transform: translateY(-1px);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.navbar-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

/* Background image slider */
.hero-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.5s ease, transform 8s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Dark cinematic overlay */
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(10,10,20,0.7) 0%, rgba(10,10,20,0.4) 40%, rgba(10,10,20,0.7) 70%, var(--dark) 100%),
        radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(10,10,20,0.8) 100%);
}

.hero-bg-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(200, 168, 78, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(200, 168, 78, 0.08) 0%, transparent 50%);
}

/* Floating glowing orbs */
.hero-orbs {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200,168,78,0.3), transparent 70%);
    top: 10%;
    left: -5%;
    animation: orbFloat1 12s ease-in-out infinite;
}

.hero-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(200,168,78,0.2), transparent 70%);
    bottom: 20%;
    right: -5%;
    animation: orbFloat2 10s ease-in-out infinite;
}

.hero-orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(74,158,255,0.15), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbFloat3 14s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, 20px) scale(1.15); }
    66% { transform: translate(20px, -40px) scale(0.95); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.6; }
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 8s infinite;
    box-shadow: 0 0 6px rgba(200, 168, 78, 0.6);
}

@keyframes float-particle {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    15% { opacity: 0.8; }
    85% { opacity: 0.2; }
    100% { opacity: 0; transform: translateY(-100px) scale(1); }
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 900px;
}

/* Badge animated */
.hero-badge-animated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    background: rgba(200, 168, 78, 0.12);
    border: 1px solid rgba(200, 168, 78, 0.25);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 28px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    animation: badgeFadeIn 1s ease 0.2s both;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}

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

.hero-badge-animated i { font-size: 0.75rem; }

/* Title animated */
.hero-title-animated {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, var(--gold-light) 40%, var(--gold) 70%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleFadeIn 1s ease 0.4s both, shimmerText 6s linear infinite;
    text-shadow: none;
    filter: drop-shadow(0 2px 20px rgba(200, 168, 78, 0.15));
}

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

@keyframes shimmerText {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

/* Subtitle animated */
.hero-subtitle-animated {
    font-size: 1.25rem;
    color: rgba(240, 236, 228, 0.85);
    max-width: 650px;
    margin: 0 auto 36px;
    line-height: 1.7;
    animation: subtitleFadeIn 1s ease 0.6s both;
}

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

/* Hero Stats Bar */
.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 16px 32px;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 168, 78, 0.15);
    border-radius: 16px;
    margin-bottom: 36px;
    animation: statsFadeIn 1s ease 0.8s both;
}

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

.hero-stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-stat i {
    font-size: 1.1rem;
    color: var(--gold);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 168, 78, 0.1);
    border-radius: 10px;
}

.hero-stat-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.hero-stat-info strong {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.hero-stat-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(200, 168, 78, 0.2);
}

/* Glow effect on buttons */
.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-glow:hover::after {
    transform: rotate(45deg) translateX(100%);
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: actionsFadeIn 1s ease 1s both;
}

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

/* Slide indicators */
.hero-slide-indicators {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
    animation: actionsFadeIn 1s ease 1.2s both;
}

.hero-indicator {
    width: 32px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255,255,255,0.25);
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
}

.hero-indicator.active {
    width: 48px;
    background: var(--gold);
    box-shadow: 0 0 12px rgba(200, 168, 78, 0.5);
}

.hero-indicator:hover {
    background: rgba(200, 168, 78, 0.6);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    animation: scrollBounce 2s ease-in-out infinite, actionsFadeIn 1s ease 1.5s both;
}

.hero-scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(200, 168, 78, 0.4);
    border-radius: 14px;
    position: relative;
}

.hero-scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 168, 78, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--dark-border);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-youtube {
    background: var(--red-youtube);
    color: #fff;
}

.btn-youtube:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.3);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* ============================================
   Section Styles
   ============================================ */
.section {
    padding: 80px 0;
}

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

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.section-title span {
    color: var(--gold);
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 500;
    transition: var(--transition);
}

.section-link:hover {
    gap: 12px;
}

/* ============================================
   Video Grid
   ============================================ */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.video-card {
    background: var(--dark-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--dark-border);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 168, 78, 0.3);
    box-shadow: var(--shadow-lg);
}

.video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--dark-surface);
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumb img {
    transform: scale(1.05);
}

.video-thumb .play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: var(--transition);
}

.video-card:hover .play-overlay {
    opacity: 1;
}

.play-overlay i {
    font-size: 3rem;
    color: #fff;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.85);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.video-info {
    padding: 16px;
}

.video-info h3 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--text-primary);
    transition: var(--transition);
}

.video-card:hover .video-info h3 {
    color: var(--gold);
}

.video-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.video-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ============================================
   Featured Video
   ============================================ */
.featured-video {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    margin-bottom: 48px;
}

.featured-video-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    min-height: 400px;
}

.featured-thumb {
    position: relative;
    overflow: hidden;
}

.featured-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-info h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.featured-info p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================
   Shorts Grid
   ============================================ */
.shorts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.short-card {
    position: relative;
    aspect-ratio: 9/16;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    cursor: pointer;
    transition: var(--transition);
}

.short-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 168, 78, 0.3);
    box-shadow: var(--shadow-lg);
}

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

.short-card .short-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 12px 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.short-card .short-overlay h4 {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.short-card .short-views {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.shorts-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--red-youtube);
    color: #fff;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
}

/* ============================================
   Categories Bar
   ============================================ */
.categories-bar {
    display: flex;
    gap: 8px;
    padding: 20px 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-bottom: 32px;
}

.categories-bar::-webkit-scrollbar { display: none; }

.category-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition);
}

.category-chip:hover,
.category-chip.active {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

/* ============================================
   Video Page
   ============================================ */
.video-page {
    padding-top: 100px;
    min-height: 100vh;
}

.video-player {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    overflow: hidden;
    background: #000;
    margin-bottom: 24px;
}

.video-player iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-detail-title {
    font-family: 'Cinzel', serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.video-detail-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--dark-border);
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.video-detail-description {
    color: var(--text-secondary);
    line-height: 1.8;
    white-space: pre-line;
}

/* ============================================
   About Page
   ============================================ */
.about-page {
    padding-top: 120px;
    min-height: 100vh;
}

.about-hero {
    text-align: center;
    padding: 40px 0 60px;
}

.about-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--text-primary), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.about-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin: 32px 0 16px;
}

.about-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.stat-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: rgba(200, 168, 78, 0.3);
    transform: translateY(-2px);
}

.stat-card .stat-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.stat-card .stat-number {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-card .stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 4px;
}

/* ============================================
   Pagination
   ============================================ */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 48px 0;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border-radius: var(--radius-sm);
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
}

.pagination a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.pagination .active {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

/* ============================================
   Video Modal
   ============================================ */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.video-modal.active {
    display: flex;
}

.video-modal-inner {
    width: 100%;
    max-width: 1000px;
    position: relative;
}

.video-modal-close {
    position: absolute;
    top: -48px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 8px;
    transition: var(--transition);
}

.video-modal-close:hover {
    color: var(--gold);
}

.video-modal-player {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    overflow: hidden;
}

.video-modal-player iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   Empty State
   ============================================ */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state i {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.empty-state h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.empty-state p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* ============================================
   Loading
   ============================================ */
.loader {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.loader-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--dark-border);
    border-top: 3px solid var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--dark-surface);
    border-top: 1px solid var(--dark-border);
    padding: 60px 0 0;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-about p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-stats {
    display: flex;
    gap: 24px;
}

.footer-stats .stat {
    display: flex;
    flex-direction: column;
}

.footer-stats .stat-number {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
}

.footer-stats .stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-links h4,
.footer-subscribe h4 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-subscribe p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid var(--dark-border);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   Language Dropdown Switcher
   ============================================ */
.lang-switcher-wrap {
    position: relative;
}

.lang-dropdown {
    position: relative;
    display: inline-flex;
}

.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.lang-toggle:hover {
    border-color: var(--gold);
    color: var(--text-primary);
    background: var(--dark-hover);
}

.lang-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.lang-dropdown.open .lang-toggle i {
    transform: rotate(180deg);
}

.lang-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    z-index: 1100;
}

.lang-dropdown.open .lang-menu {
    display: block;
}

.lang-menu .lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}

.lang-menu .lang-option:hover {
    background: var(--dark-hover);
    color: var(--text-primary);
}

.lang-menu .lang-option.active {
    color: var(--gold);
    background: rgba(200, 168, 78, 0.08);
}

/* ============================================
   Breadcrumbs
   ============================================ */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--gold);
}

.breadcrumbs .separator {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.breadcrumbs .current {
    color: var(--gold);
    font-weight: 500;
}

/* ============================================
   Blog Grid & Cards
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.blog-card {
    background: var(--dark-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--dark-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 168, 78, 0.3);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--dark-surface);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-image .blog-category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: var(--dark);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-body h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--text-primary);
    transition: var(--transition);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card:hover .blog-card-body h3 {
    color: var(--gold);
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: var(--gold);
    font-size: 0.75rem;
}

.blog-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    background: rgba(200, 168, 78, 0.1);
    border: 1px solid rgba(200, 168, 78, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gold);
    transition: var(--transition);
}

.blog-tag:hover {
    background: rgba(200, 168, 78, 0.2);
    border-color: rgba(200, 168, 78, 0.4);
}

.blog-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--dark-border);
    margin-top: auto;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.blog-read-more:hover {
    gap: 10px;
}

.blog-tags-list {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

/* ============================================
   Blog Single Page
   ============================================ */
.blog-single {
    padding-top: 100px;
    min-height: 100vh;
}

.blog-hero {
    position: relative;
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
}

.blog-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
    max-height: 500px;
}

.blog-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, var(--dark), transparent);
}

.blog-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    z-index: 1;
}

.blog-hero-overlay h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.blog-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 0 60px;
}

.blog-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin: 40px 0 16px;
    padding-top: 16px;
    border-top: 1px solid var(--dark-border);
}

.blog-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 32px 0 12px;
}

.blog-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 20px;
}

.blog-content blockquote {
    margin: 28px 0;
    padding: 20px 28px;
    border-left: 4px solid var(--gold);
    background: rgba(200, 168, 78, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--text-secondary);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
}

.blog-content ul,
.blog-content ol {
    margin: 16px 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.blog-content ul {
    list-style: disc;
}

.blog-content ol {
    list-style: decimal;
}

.blog-content li {
    margin-bottom: 8px;
    padding-left: 4px;
}

.blog-content img {
    border-radius: var(--radius);
    margin: 28px 0;
    border: 1px solid var(--dark-border);
}

.blog-content a {
    color: var(--gold);
    border-bottom: 1px solid rgba(200, 168, 78, 0.3);
    transition: var(--transition);
}

.blog-content a:hover {
    border-bottom-color: var(--gold);
}

.blog-content pre {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-sm);
    padding: 20px;
    overflow-x: auto;
    margin: 24px 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.blog-content code {
    background: var(--dark-surface);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9em;
    color: var(--gold-light);
}

.blog-content pre code {
    background: none;
    padding: 0;
    border-radius: 0;
}

/* Blog Share */
.blog-share {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 28px 0;
    margin-top: 40px;
    border-top: 1px solid var(--dark-border);
    flex-wrap: wrap;
}

.blog-share-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-right: 4px;
}

.blog-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    color: var(--text-secondary);
    font-size: 1rem;
    transition: var(--transition);
}

.blog-share a:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* Blog Author Box */
.blog-author-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    margin-top: 32px;
}

.blog-author-box img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.blog-author-info h4 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.blog-author-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Blog Related Posts */
.blog-related {
    padding: 48px 0;
}

.blog-related h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 28px;
}

/* ============================================
   Blog Filters & Search
   ============================================ */
.blog-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.blog-search {
    display: flex;
    align-items: center;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    overflow: hidden;
    min-width: 240px;
}

.blog-search input {
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: 10px 16px;
    font-size: 0.9rem;
    flex: 1;
    outline: none;
}

.blog-search input::placeholder {
    color: var(--text-muted);
}

.blog-search button {
    background: var(--gold);
    border: none;
    color: var(--dark);
    padding: 10px 16px;
    cursor: pointer;
    transition: var(--transition);
}

.blog-search button:hover {
    background: var(--gold-light);
}

/* ============================================
   Blog Article (Single Post)
   ============================================ */
.blog-article {
    max-width: 860px;
    margin: 0 auto;
}

.blog-article-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
}

.blog-article-image img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

.blog-article-header {
    margin-bottom: 32px;
}

.blog-article-header h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.blog-article-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.blog-article-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 40px 0 16px;
}

.blog-article-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 32px 0 12px;
}

.blog-article-content p {
    margin-bottom: 20px;
}

.blog-article-content img {
    max-width: 100%;
    border-radius: var(--radius);
    margin: 24px 0;
}

.blog-article-content blockquote {
    border-left: 4px solid var(--gold);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--dark-card);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--text-primary);
}

.blog-article-content a {
    color: var(--gold);
    text-decoration: underline;
}

.blog-article-content a:hover {
    color: var(--gold-light);
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    color: var(--text-secondary);
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.share-btn:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.share-btn.twitter:hover { background: #1da1f2; border-color: #1da1f2; color: #fff; }
.share-btn.facebook:hover { background: #4267B2; border-color: #4267B2; color: #fff; }
.share-btn.whatsapp:hover { background: #25D366; border-color: #25D366; color: #fff; }

/* Related Articles */
.related-articles {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--dark-border);
}

.related-articles h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
}

/* Blog Page */
.blog-page {
    padding-top: 100px;
    min-height: 100vh;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .featured-video-inner {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .navbar-toggle {
        display: flex;
    }
    .navbar-menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--dark-surface);
        border-bottom: 1px solid var(--dark-border);
        padding: 16px;
        flex-direction: column;
    }
    .navbar-menu.active {
        display: flex;
    }
    .navbar-menu a {
        padding: 12px 16px;
        width: 100%;
    }
    .hero {
        min-height: 85vh;
        padding: 100px 24px 60px;
    }
    .hero-title-animated {
        font-size: 2.2rem;
    }
    .hero-stats {
        gap: 16px;
        padding: 12px 20px;
    }
    .hero-stat-info strong { font-size: 0.95rem; }
    .hero-stat-info span { font-size: 0.7rem; }
    .hero-stat i { width: 30px; height: 30px; font-size: 0.9rem; }
    .hero-slide-indicators { bottom: 80px; }
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    .shorts-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    /* Blog responsive - tablet */
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    .blog-hero-overlay {
        padding: 24px;
    }
    .blog-hero-overlay h1 {
        font-size: 1.5rem;
    }
    .blog-content h2 {
        font-size: 1.3rem;
    }
    .blog-author-box {
        flex-direction: column;
        text-align: center;
    }
    .blog-filters {
        flex-direction: column;
        align-items: stretch;
    }
    .blog-search {
        min-width: auto;
    }
    /* Language dropdown responsive */
    .lang-menu {
        right: auto;
        left: 0;
    }
}

@media (max-width: 480px) {
    .hero-title-animated { font-size: 1.8rem; }
    .hero-subtitle-animated { font-size: 1rem; }
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .hero-stats { flex-direction: column; gap: 12px; }
    .hero-stat-divider { width: 80%; height: 1px; }
    .hero-stat { justify-content: center; }
    .hero-slide-indicators { bottom: 70px; }
    .hero-scroll-indicator { display: none; }
    .hero-orb-1 { width: 200px; height: 200px; }
    .hero-orb-2 { width: 150px; height: 150px; }
    .hero-orb-3 { display: none; }
    .video-grid { grid-template-columns: 1fr; }
    .shorts-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: 1fr; }
    .video-modal { padding: 16px; }
    /* Blog responsive - mobile */
    .blog-grid { grid-template-columns: 1fr; }
    .blog-hero { border-radius: var(--radius); margin-bottom: 24px; }
    .blog-hero-overlay { padding: 16px; }
    .blog-hero-overlay h1 { font-size: 1.25rem; }
    .blog-content { padding: 0 0 40px; }
    .blog-content p { font-size: 0.95rem; }
    .blog-share { justify-content: center; }
    .blog-share a { width: 40px; height: 40px; font-size: 0.9rem; }
    .breadcrumbs { font-size: 0.8rem; }
    /* Language dropdown mobile */
    .lang-toggle { padding: 6px 12px; font-size: 0.85rem; }
}
