/* ========== RESET & GLOBAL ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --bg-primary: #0a0e1a;
    --bg-secondary: #111827;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --text-primary: #f0f3ff;
    --text-secondary: #a0aec0;
    --text-muted: #718096;
    --accent: #0acf83;
    --accent-glow: rgba(10, 207, 131, 0.3);
    --accent-gradient: linear-gradient(135deg, #0acf83, #3b82f6);
    --border-color: rgba(255, 255, 255, 0.05);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    --transition: all 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
    --radius: 28px;
    --radius-sm: 16px;
}

[data-theme="light"] {
    --bg-primary: #f0f4ff;
    --bg-secondary: #e8edf9;
    --bg-card: rgba(255, 255, 255, 0.7);
    --bg-card-hover: rgba(255, 255, 255, 0.9);
    --text-primary: #0a0e1a;
    --text-secondary: #2d3748;
    --text-muted: #4a5568;
    --border-color: rgba(0, 0, 0, 0.08);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

html { 
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
    min-height: 100vh;
    line-height: 1.5;
}

img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #0abf78; }

/* ========== PRELOADER ========== */
#preloader {
    position: fixed; 
    inset: 0;
    background: var(--bg-primary);
    display: flex; 
    align-items: center; 
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { 
    opacity: 0; 
    visibility: hidden; 
    pointer-events: none; 
}
.loader {
    position: relative; 
    width: 120px; 
    height: 120px;
    display: flex; 
    align-items: center; 
    justify-content: center;
}
.loader-ring {
    position: absolute; 
    width: 100%; 
    height: 100%;
    border: 3px solid transparent; 
    border-radius: 50%;
    animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}
.loader-ring:nth-child(1) { border-top-color: var(--accent); animation-delay: 0s; }
.loader-ring:nth-child(2) { border-right-color: #3b82f6; animation-delay: 0.3s; width: 85%; height: 85%; }
.loader-ring:nth-child(3) { border-bottom-color: #f59e0b; animation-delay: 0.6s; width: 70%; height: 70%; }
.loader-text {
    color: var(--accent);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem; 
    font-weight: 700; 
    letter-spacing: 2px;
    animation: pulse 1.5s ease-in-out infinite;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { opacity: 0.6; transform: scale(0.9); } 50% { opacity: 1; transform: scale(1); } }

#particles-js {
    position: fixed; 
    inset: 0;
    z-index: 0; 
    pointer-events: none;
}

/* ========== NAVBAR ========== */
.navbar {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    padding: 0.8rem 5%;
    background: rgba(10, 14, 26, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky; 
    top: 0; 
    z-index: 100;
    border-bottom: 1px solid rgba(10, 207, 131, 0.15);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}
[data-theme="light"] .navbar {
    background: rgba(240, 244, 255, 0.92);
}
.logo {
    font-size: 1.5rem; 
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex; 
    align-items: center; 
    gap: 8px;
    flex-shrink: 0;
}
.logo i { 
    -webkit-text-fill-color: var(--accent); 
    font-size: 1.4rem; 
}
.logo-badge {
    font-size: 0.55rem; 
    background: rgba(10, 207, 131, 0.2);
    color: var(--accent); 
    padding: 2px 10px; 
    border-radius: 20px;
    font-weight: 600; 
    -webkit-text-fill-color: var(--accent);
}
.nav-links {
    display: flex; 
    gap: 0.3rem; 
    list-style: none; 
    align-items: center;
    flex-wrap: wrap;
}
.nav-links a {
    color: var(--text-secondary); 
    text-decoration: none;
    font-weight: 500; 
    font-size: 0.82rem;
    transition: var(--transition); 
    padding: 8px 14px;
    border-radius: 30px; 
    display: flex; 
    align-items: center; 
    gap: 6px;
    position: relative;
    white-space: nowrap;
}
.nav-links a::after {
    content: ''; 
    position: absolute; 
    bottom: 4px; 
    left: 50%;
    width: 0; 
    height: 2px; 
    background: var(--accent);
    transition: var(--transition); 
    transform: translateX(-50%);
}
.nav-links a:hover::after, 
.nav-links a.active-link::after { width: 60%; }
.nav-links a:hover, 
.nav-links a.active-link {
    color: var(--text-primary); 
    background: rgba(10, 207, 131, 0.08);
}
.nav-links a i { font-size: 0.85rem; }
.nav-actions { 
    display: flex; 
    align-items: center; 
    gap: 0.8rem; 
    flex-shrink: 0;
}
.theme-toggle {
    background: none; 
    border: none; 
    color: var(--text-secondary);
    font-size: 1.2rem; 
    cursor: pointer; 
    padding: 8px;
    border-radius: 50%; 
    transition: var(--transition);
}
.theme-toggle:hover { 
    color: var(--accent); 
    background: rgba(10, 207, 131, 0.1); 
}
.menu-toggle {
    display: none; 
    font-size: 1.6rem; 
    cursor: pointer;
    color: var(--text-primary); 
    padding: 8px;
    background: none;
    border: none;
}

/* ========== PAGE NAVIGATION ========== */
.page { 
    display: none; 
    animation: fadeInPage 0.6s ease; 
    position: relative; 
    z-index: 1; 
}
.active-page { display: block; }
@keyframes fadeInPage { 
    from { opacity: 0; transform: translateY(30px); } 
    to { opacity: 1; transform: translateY(0); } 
}

/* ========== HERO SECTION ========== */
.video-hero {
    position: relative; 
    height: 100vh; 
    min-height: 600px;
    overflow: hidden; 
    display: flex; 
    align-items: center; 
    justify-content: center;
}
#bgVideo {
    position: absolute; 
    top: 50%; 
    left: 50%;
    min-width: 100%; 
    min-height: 100%; 
    width: auto; 
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover; 
    z-index: 1;
}
.video-overlay {
    position: absolute; 
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.7), rgba(10, 207, 131, 0.1));
    z-index: 2;
}
.hero-content {
    position: relative; 
    z-index: 3; 
    text-align: center;
    color: white; 
    padding: 2rem 1.5rem;
    animation: slideUpFade 1.2s ease;
    width: 100%;
    max-width: 1200px;
}
@keyframes slideUpFade { 
    from { opacity: 0; transform: translateY(60px); } 
    to { opacity: 1; transform: translateY(0); } 
}
.hero-badge {
    display: inline-block; 
    padding: 6px 20px;
    background: rgba(10, 207, 131, 0.2);
    border: 1px solid rgba(10, 207, 131, 0.3);
    border-radius: 30px; 
    font-size: 0.75rem;
    color: var(--accent); 
    margin-bottom: 1rem;
    font-weight: 600; 
    letter-spacing: 1px;
}
.glitch-text {
    font-size: clamp(2rem, 8vw, 5rem); 
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 3px 3px 0px rgba(10, 207, 131, 0.5), -3px -3px 0px rgba(59, 130, 246, 0.5);
    position: relative;
    line-height: 1.1;
}
.glitch-text::before {
    content: attr(data-text); 
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    color: var(--accent); 
    overflow: hidden;
    clip-path: inset(0 0 0 0); 
    animation: glitch 3s infinite;
}
@keyframes glitch {
    0%, 100% { clip-path: inset(0 0 0 0); }
    95% { clip-path: inset(0 0 0 0); }
    96% { clip-path: inset(20% 0 60% 0); transform: translateX(-5px); }
    97% { clip-path: inset(50% 0 10% 0); transform: translateX(5px); }
    98% { clip-path: inset(10% 0 70% 0); transform: translateX(-3px); }
}
.hero-subtitle { 
    font-size: clamp(0.9rem, 2.5vw, 1.2rem); 
    margin: 1rem 0 2rem; 
    color: #cbd5e1; 
    font-weight: 300; 
    padding: 0 1rem;
}
.hero-buttons { 
    display: flex; 
    gap: 0.8rem; 
    justify-content: center; 
    flex-wrap: wrap; 
    padding: 0 1rem;
}
.hero-btn {
    padding: 12px 28px; 
    border-radius: 50px;
    font-size: 0.9rem; 
    font-weight: 600; 
    cursor: pointer;
    transition: var(--transition); 
    border: none;
    display: inline-flex; 
    align-items: center; 
    gap: 8px;
    white-space: nowrap;
}
.hero-btn.primary { 
    background: var(--accent); 
    color: #0a0e1a; 
    box-shadow: 0 0 30px rgba(10, 207, 131, 0.3); 
}
.hero-btn.primary:hover { 
    transform: translateY(-3px) scale(1.02); 
    box-shadow: 0 0 50px rgba(10, 207, 131, 0.5); 
}
.hero-btn.secondary { 
    background: transparent; 
    border: 2px solid rgba(255, 255, 255, 0.2); 
    color: #fff; 
}
.hero-btn.secondary:hover { 
    background: rgba(255, 255, 255, 0.1); 
    border-color: #fff; 
    transform: translateY(-3px); 
}
.hero-btn.gradient { 
    background: linear-gradient(135deg, #1db954, #1ed760); 
    color: #0a0e1a; 
    box-shadow: 0 0 30px rgba(29, 185, 84, 0.3); 
}
.hero-btn.gradient:hover { 
    transform: translateY(-3px) scale(1.02); 
    box-shadow: 0 0 50px rgba(29, 185, 84, 0.5); 
}
.hero-btn.video-btn { 
    background: linear-gradient(135deg, #ff0040, #ff6b81); 
    color: #fff; 
    box-shadow: 0 0 30px rgba(255, 0, 64, 0.3); 
}
.hero-btn.video-btn:hover { 
    transform: translateY(-3px) scale(1.02); 
    box-shadow: 0 0 50px rgba(255, 0, 64, 0.5); 
}
.hero-btn.processor-btn { 
    background: linear-gradient(135deg, #8b5cf6, #6d28d9); 
    color: #fff; 
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3); 
}
.hero-btn.processor-btn:hover { 
    transform: translateY(-3px) scale(1.02); 
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.5); 
}
.hero-btn.event-btn-hero { 
    background: linear-gradient(135deg, #8b5cf6, #ec4899); 
    color: #fff; 
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3); 
}
.hero-btn.event-btn-hero:hover { 
    transform: translateY(-3px) scale(1.02); 
    box-shadow: 0 0 50px rgba(236, 72, 153, 0.5); 
}

.hero-stats { 
    display: flex; 
    justify-content: center; 
    gap: 1.5rem; 
    margin-top: 2.5rem; 
    flex-wrap: wrap; 
    padding: 0 1rem;
}
.hero-stat { 
    text-align: center; 
    min-width: 70px;
}
.hero-stat .stat-number { 
    display: block; 
    font-size: clamp(1.4rem, 4vw, 2.2rem); 
    font-weight: 800; 
    color: #fff; 
    font-family: 'Orbitron', sans-serif; 
}
.hero-stat .stat-label { 
    font-size: clamp(0.65rem, 1.8vw, 0.8rem); 
    color: var(--text-secondary); 
    font-weight: 300; 
}

.scroll-indicator {
    position: absolute; 
    bottom: 30px; 
    left: 50%;
    transform: translateX(-50%); 
    z-index: 3; 
    text-align: center;
    animation: bounce 2s infinite; 
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    background: none;
    border: none;
}
.scroll-indicator span { 
    display: block; 
    font-size: 0.7rem; 
    margin-bottom: 5px; 
    letter-spacing: 2px; 
}
.scroll-indicator i { font-size: 1.2rem; }
@keyframes bounce { 
    0%, 100% { transform: translateX(-50%) translateY(0); } 
    50% { transform: translateX(-50%) translateY(10px); } 
}

/* ========== SECTION TITLE ========== */
.section-title {
    font-size: clamp(1.3rem, 4vw, 2rem); 
    margin-bottom: 2rem;
    display: flex; 
    align-items: center; 
    gap: 12px;
    border-left: 6px solid var(--accent);
    padding-left: 16px; 
    font-weight: 700;
    line-height: 1.3;
}
.section-title i { color: var(--accent); flex-shrink: 0; }

/* ========== FEATURED ========== */
.featured-section, 
.testimonial-section {
    padding: 3rem 5%;
    background: rgba(10, 14, 26, 0.4);
}
[data-theme="light"] .featured-section,
[data-theme="light"] .testimonial-section {
    background: rgba(255, 255, 255, 0.3);
}
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}
.featured-card {
    background: var(--bg-card); 
    backdrop-filter: blur(10px);
    padding: 2rem 1.5rem; 
    border-radius: var(--radius);
    text-align: center; 
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative; 
    overflow: hidden;
}
.featured-card::before {
    content: ''; 
    position: absolute; 
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 207, 131, 0.05), transparent);
    opacity: 0; 
    transition: var(--transition);
}
.featured-card:hover::before { opacity: 1; }
.featured-card:hover { 
    transform: translateY(-10px); 
    border-color: var(--accent); 
    box-shadow: var(--shadow); 
}
.featured-card .featured-icon-wrapper {
    width: 70px; 
    height: 70px;
    background: rgba(10, 207, 131, 0.1);
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    margin: 0 auto 1rem;
}
.featured-card i { font-size: 2.5rem; color: var(--accent); }
.featured-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.featured-card p { color: var(--text-secondary); font-size: 0.85rem; }
.featured-tag {
    position: absolute; 
    top: 12px; 
    right: 12px;
    font-size: 0.6rem; 
    padding: 3px 12px;
    border-radius: 20px; 
    background: rgba(10, 207, 131, 0.15);
    color: var(--accent); 
    font-weight: 600;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 3rem 1.5rem; 
    margin: 2rem 5%;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(10, 207, 131, 0.06), rgba(59, 130, 246, 0.03));
    border: 1px solid rgba(10, 207, 131, 0.08);
}
.cta-content { 
    text-align: center; 
    max-width: 900px; 
    margin: 0 auto; 
}
.cta-section h3 { 
    font-size: clamp(1.2rem, 4vw, 2rem); 
    margin-bottom: 0.8rem; 
    line-height: 1.3;
}
.cta-section p { 
    color: var(--text-secondary); 
    margin-bottom: 1.5rem; 
    font-size: clamp(0.85rem, 2vw, 1rem);
}
.cta-buttons { 
    display: flex; 
    gap: 0.8rem; 
    justify-content: center; 
    flex-wrap: wrap; 
}
.cta-btn {
    padding: 11px 24px; 
    border-radius: 40px;
    background: var(--accent); 
    border: none;
    font-weight: 600; 
    cursor: pointer;
    transition: var(--transition); 
    color: #0a0e1a;
    display: inline-flex; 
    align-items: center; 
    gap: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
}
.cta-btn:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 10px 30px var(--accent-glow); 
}
.cta-btn.outline { 
    background: transparent; 
    border: 2px solid var(--border-color); 
    color: var(--text-primary); 
}
.cta-btn.outline:hover { background: rgba(255, 255, 255, 0.05); }
.cta-btn.dark { 
    background: rgba(255, 255, 255, 0.05); 
    color: var(--text-primary); 
}
.cta-btn.dark:hover { background: rgba(255, 255, 255, 0.1); }
.cta-btn.gradient { 
    background: linear-gradient(135deg, #1db954, #1ed760); 
    color: #0a0e1a; 
}
.cta-btn.processor { 
    background: linear-gradient(135deg, #8b5cf6, #6d28d9); 
    color: #fff; 
}
.cta-btn.event-cta { 
    background: linear-gradient(135deg, #8b5cf6, #ec4899); 
    color: #fff; 
}

/* ========== TESTIMONIAL ========== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.testimonial-card {
    display: flex; 
    align-items: flex-start; 
    gap: 1rem;
    background: var(--bg-card); 
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.testimonial-card:hover { 
    transform: translateY(-5px); 
    border-color: var(--accent); 
}
.testimonial-avatar { flex-shrink: 0; }
.testimonial-avatar img { 
    width: 56px; 
    height: 56px; 
    border-radius: 50%; 
    object-fit: cover;
}
.testimonial-content p { 
    color: var(--text-secondary); 
    font-size: 0.9rem; 
    line-height: 1.6; 
    margin-bottom: 0.5rem; 
}
.testimonial-content h4 { 
    font-size: 0.85rem; 
    color: var(--text-primary); 
}
.testimonial-stars { 
    color: #fbbf24; 
    font-size: 0.85rem; 
    margin-top: 4px; 
}

/* ========== NEWS & REVIEW ========== */
.news-section, 
.review-section {
    padding: 2.5rem 5%; 
    max-width: 1400px; 
    margin: auto;
}
.section-header {
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    flex-wrap: wrap; 
    gap: 1rem; 
    margin-bottom: 2rem;
}
.module-badge {
    padding: 6px 18px; 
    border-radius: 30px;
    font-size: 0.75rem; 
    font-weight: 600;
    background: var(--accent-gradient); 
    color: #fff;
    white-space: nowrap;
}
.news-filter { 
    display: flex; 
    gap: 0.6rem; 
    flex-wrap: wrap; 
    margin-bottom: 2rem; 
}
.filter-btn {
    padding: 8px 20px; 
    border-radius: 30px;
    border: 1px solid var(--border-color);
    background: transparent; 
    color: var(--text-secondary);
    cursor: pointer; 
    transition: var(--transition);
    font-size: 0.8rem; 
    font-weight: 500;
    white-space: nowrap;
}
.filter-btn:hover { 
    border-color: var(--accent); 
    color: var(--text-primary); 
}
.filter-btn.active { 
    background: var(--accent); 
    color: #0a0e1a; 
    border-color: var(--accent); 
}
.news-grid, 
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.8rem;
}
.news-card, 
.review-card {
    background: var(--bg-card); 
    backdrop-filter: blur(5px);
    border-radius: var(--radius); 
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}
.news-card:hover, 
.review-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: var(--shadow);
}
.news-card img, 
.review-card img { 
    width: 100%; 
    height: 200px; 
    object-fit: cover; 
}
.news-content, 
.review-content { 
    padding: 1.5rem; 
    display: flex;
    flex-direction: column;
    flex: 1;
}
.news-content h3, 
.review-content h3 { 
    font-size: 1.05rem; 
    margin-bottom: 0.5rem; 
    line-height: 1.4;
}
.news-content p, 
.review-content p { 
    color: var(--text-secondary); 
    font-size: 0.88rem; 
    line-height: 1.6; 
}
.read-more, 
.review-btn {
    background: none; 
    border: none;
    color: var(--accent); 
    font-weight: 600;
    cursor: pointer; 
    transition: var(--transition);
    font-size: 0.88rem; 
    margin-top: auto;
    padding-top: 0.8rem;
    display: inline-flex; 
    align-items: center; 
    gap: 6px;
    align-self: flex-start;
}
.read-more:hover, 
.review-btn:hover { 
    color: #55e0a5; 
    gap: 12px; 
}
.rating { 
    color: #fbbf24; 
    margin: 8px 0; 
    font-size: 0.9rem; 
}
.load-more-container { 
    text-align: center; 
    margin-top: 2.5rem; 
}
.load-more-btn {
    padding: 12px 32px; 
    border-radius: 40px;
    background: transparent; 
    border: 2px solid var(--accent);
    color: var(--accent); 
    font-weight: 600;
    cursor: pointer; 
    transition: var(--transition);
    display: inline-flex; 
    align-items: center; 
    gap: 10px;
    font-size: 0.9rem;
}
.load-more-btn:hover { 
    background: var(--accent); 
    color: #0a0e1a; 
}

/* ========== TREND ========== */
.trend-section { 
    padding: 2.5rem 5%; 
    max-width: 1400px; 
    margin: auto; 
}
.trend-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.trend-card {
    background: linear-gradient(135deg, rgba(10, 207, 131, 0.06), rgba(59, 130, 246, 0.04));
    padding: 2rem 1.5rem; 
    border-radius: var(--radius);
    text-align: center; 
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.trend-card:hover { 
    transform: scale(1.03); 
    border-color: var(--accent); 
    box-shadow: var(--shadow); 
}
.trend-card i { font-size: 3rem; color: var(--accent); }
.trend-number {
    font-size: clamp(1.8rem, 5vw, 2.5rem); 
    font-weight: 800;
    color: var(--accent); 
    margin: 1rem 0;
    font-family: 'Orbitron', sans-serif;
}
.trend-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.trend-card p { color: var(--text-secondary); font-size: 0.88rem; }

/* ========== OFFICIAL WEB ========== */
.officialweb-section { 
    padding: 2.5rem 5%; 
    max-width: 1400px; 
    margin: auto; 
}
.biodata-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(247, 147, 30, 0.03));
    border-radius: var(--radius); 
    padding: 1.8rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.12);
}
.biodata-header {
    display: flex; 
    align-items: center; 
    gap: 12px;
    margin-bottom: 1.5rem; 
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.12);
}
.biodata-header i { font-size: 1.8rem; color: #ff6b35; }
.biodata-header h3 { font-size: 1.3rem; color: #ff6b35; }
.biodata-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.8rem;
}
.biodata-item {
    display: flex; 
    align-items: center; 
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    word-break: break-word;
}
.biodata-item i { color: #ff6b35; flex-shrink: 0; }
.biodata-item span { 
    color: var(--text-secondary); 
    font-size: 0.88rem; 
    line-height: 1.5;
}
.officialweb-category { margin-bottom: 2.5rem; }
.officialweb-category h3 {
    font-size: 1.2rem; 
    margin-bottom: 1.5rem;
    display: flex; 
    align-items: center; 
    gap: 10px;
    color: #ff6b35;
}
.officialweb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}
.officialweb-item {
    background: var(--bg-card); 
    border-radius: 20px;
    padding: 1.2rem 1.5rem;
    display: flex; 
    align-items: center; 
    gap: 1rem;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    cursor: pointer; 
    text-decoration: none; 
    color: inherit;
}
.officialweb-item:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: var(--shadow);
}
.officialweb-item i { 
    font-size: 2rem; 
    flex-shrink: 0;
    color: #ff6b35;
}
.web-info { flex: 1; min-width: 0; }
.web-info h4 { 
    font-size: 0.92rem; 
    margin-bottom: 4px; 
    line-height: 1.3;
}
.web-info p { 
    font-size: 0.72rem; 
    color: var(--text-muted); 
    margin-bottom: 6px; 
    word-break: break-all; 
}
.web-tag {
    display: inline-block; 
    padding: 2px 12px;
    background: rgba(255, 107, 53, 0.12);
    border-radius: 15px; 
    font-size: 0.62rem;
    color: #ff6b35; 
    font-weight: 600;
}
.web-info small { 
    display: block; 
    margin-top: 4px; 
    color: var(--text-muted); 
    font-size: 0.68rem; 
    line-height: 1.4;
}
.officialweb-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem; 
    margin-top: 2rem; 
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius);
}
.stat-card { 
    text-align: center; 
    padding: 1.2rem; 
    border-radius: 20px; 
    transition: var(--transition); 
}
.stat-card:hover { 
    transform: scale(1.05); 
    background: rgba(255, 107, 53, 0.06); 
}
.stat-card i { 
    font-size: 1.8rem; 
    color: #ff6b35; 
    margin-bottom: 8px; 
}
.stat-card .stat-number {
    font-size: 1.6rem; 
    font-weight: 800;
    color: #ff6b35; 
    display: block;
    font-family: 'Orbitron', sans-serif;
}
.stat-card .stat-label { 
    font-size: 0.75rem; 
    color: var(--text-secondary); 
}

/* ========== VIDEO ========== */
.video-section { 
    padding: 2.5rem 5%; 
    max-width: 1400px; 
    margin: auto; 
}
.video-highlight { margin-bottom: 2.5rem; }
.video-highlight-wrapper {
    background: linear-gradient(135deg, rgba(255, 0, 64, 0.06), rgba(255, 107, 129, 0.02));
    border-radius: var(--radius); 
    padding: 1.5rem;
    border: 1px solid rgba(255, 0, 64, 0.08);
}
.video-main-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem; 
    align-items: start;
}
.video-main-thumbnail {
    position: relative; 
    border-radius: 18px;
    overflow: hidden; 
    cursor: pointer;
    transition: var(--transition);
}
.video-main-thumbnail:hover { transform: scale(1.02); }
.video-main-thumbnail img { 
    width: 100%; 
    height: 260px; 
    object-fit: cover; 
}
.video-play-overlay {
    position: absolute; 
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex; 
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    transition: var(--transition);
}
.video-play-overlay:hover { background: rgba(0, 0, 0, 0.6); }
.video-play-overlay i {
    font-size: 3.5rem; 
    color: #ff0040;
    filter: drop-shadow(0 0 20px rgba(255, 0, 64, 0.5));
    transition: var(--transition);
}
.video-play-overlay:hover i { transform: scale(1.1); }
.video-play-overlay span { 
    color: white; 
    margin-top: 10px; 
    font-weight: 600; 
    font-size: 0.9rem;
}
.video-main-info h3 { 
    font-size: 1.2rem; 
    margin-bottom: 0.8rem; 
    line-height: 1.4;
}
.video-main-info p { 
    color: var(--text-secondary); 
    font-size: 0.88rem; 
    line-height: 1.6; 
    margin-bottom: 1rem; 
}
.video-meta { 
    display: flex; 
    gap: 1rem; 
    flex-wrap: wrap; 
}
.video-meta span {
    color: var(--text-muted); 
    font-size: 0.75rem;
    display: flex; 
    align-items: center; 
    gap: 5px;
    white-space: nowrap;
}
.video-meta span i.fa-heart { color: #ff4757; }

.video-categories { 
    display: flex; 
    gap: 0.6rem; 
    flex-wrap: wrap; 
    margin-bottom: 2rem; 
}
.video-cat-btn {
    padding: 8px 18px; 
    border-radius: 30px;
    border: 1px solid var(--border-color);
    background: transparent; 
    color: var(--text-secondary);
    cursor: pointer; 
    transition: var(--transition);
    font-size: 0.78rem; 
    font-weight: 500;
    white-space: nowrap;
}
.video-cat-btn:hover { 
    border-color: #ff0040; 
    color: var(--text-primary); 
}
.video-cat-btn.active {
    background: linear-gradient(135deg, #ff0040, #ff6b81);
    border-color: transparent; 
    color: white;
}
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem; 
    margin-bottom: 2.5rem;
}
.video-card {
    background: var(--bg-card); 
    border-radius: 20px;
    overflow: hidden; 
    transition: var(--transition);
    border: 1px solid var(--border-color); 
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.video-card:hover { 
    transform: translateY(-8px); 
    border-color: #ff0040; 
    box-shadow: var(--shadow); 
}
.video-card-thumbnail { 
    position: relative; 
    overflow: hidden; 
}
.video-card-thumbnail img {
    width: 100%; 
    height: 170px;
    object-fit: cover; 
    transition: var(--transition);
}
.video-card:hover .video-card-thumbnail img { transform: scale(1.05); }
.video-card-duration {
    position: absolute; 
    bottom: 10px; 
    right: 10px;
    background: rgba(0, 0, 0, 0.85);
    padding: 2px 10px; 
    border-radius: 6px;
    font-size: 0.68rem; 
    font-weight: 600; 
    color: white;
}
.video-card-play {
    position: absolute; 
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0; 
    transition: var(--transition);
}
.video-card:hover .video-card-play { opacity: 1; }
.video-card-play i {
    font-size: 3rem; 
    color: #ff0040;
    filter: drop-shadow(0 0 15px rgba(255, 0, 64, 0.5));
}
.video-card-content { 
    padding: 1rem; 
    display: flex;
    flex-direction: column;
    flex: 1;
}
.video-card-content h4 { 
    font-size: 0.88rem; 
    margin-bottom: 0.4rem; 
    line-height: 1.4;
}
.video-card-content p {
    color: var(--text-muted); 
    font-size: 0.75rem;
    margin-bottom: 0.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}
.video-card-meta {
    display: flex; 
    justify-content: space-between;
    align-items: center; 
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-top: auto;
    gap: 0.5rem;
}
.video-card-category {
    display: inline-block; 
    padding: 2px 12px;
    border-radius: 12px; 
    font-size: 0.6rem; 
    font-weight: 600;
    text-transform: capitalize;
}
.video-card-category.review { background: rgba(59, 130, 246, 0.2); color: #3b82f6; }
.video-card-category.unboxing { background: rgba(10, 207, 131, 0.2); color: #0acf83; }
.video-card-category.tips { background: rgba(245, 158, 11, 0.2); color: #f59e0b; }
.video-card-category.compare { background: rgba(139, 92, 246, 0.2); color: #8b5cf6; }

.video-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem; 
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius);
}
.video-stat-item { 
    text-align: center; 
    padding: 1rem; 
    border-radius: 18px; 
    transition: var(--transition); 
}
.video-stat-item:hover { 
    transform: scale(1.05); 
    background: rgba(255, 0, 64, 0.04); 
}
.video-stat-item i { 
    font-size: 1.8rem; 
    color: #ff0040; 
    margin-bottom: 6px; 
}
.video-stat-item .stat-number {
    display: block; 
    font-size: 1.4rem; 
    font-weight: 800;
    color: #ff0040; 
    font-family: 'Orbitron', sans-serif;
}
.video-stat-item .stat-label { 
    font-size: 0.72rem; 
    color: var(--text-secondary); 
}

/* ========== VIDEO MODAL ========== */
.video-modal {
    display: none; 
    position: fixed; 
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000; 
    justify-content: center;
    align-items: center; 
    padding: 1.5rem;
}
.video-modal-content {
    background: linear-gradient(135deg, #1a1a2e, #0f172a);
    max-width: 600px; 
    width: 100%;
    border-radius: var(--radius); 
    padding: 1.5rem;
    border: 1px solid rgba(255, 0, 64, 0.12);
    position: relative;
    animation: modalFadeIn 0.4s ease;
    max-height: 90vh;
    overflow-y: auto;
}
@keyframes modalFadeIn { 
    from { opacity: 0; transform: scale(0.9) translateY(30px); } 
    to { opacity: 1; transform: scale(1) translateY(0); } 
}
.video-modal-close {
    position: absolute; 
    top: 10px; 
    right: 14px;
    font-size: 1.8rem; 
    color: var(--text-secondary);
    cursor: pointer; 
    transition: var(--transition); 
    z-index: 10;
    background: none;
    border: none;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.video-modal-close:hover { 
    color: #ff0040; 
    transform: rotate(90deg); 
    background: rgba(255, 0, 64, 0.1);
}
.video-modal-thumbnail { 
    position: relative; 
    border-radius: 16px; 
    overflow: hidden; 
}
.video-modal-thumbnail img { 
    width: 100%; 
    height: 300px; 
    object-fit: cover; 
}
.video-modal-play {
    position: absolute; 
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer; 
    transition: var(--transition);
}
.video-modal-play i {
    font-size: 4rem; 
    color: #ff0040;
    filter: drop-shadow(0 0 30px rgba(255, 0, 64, 0.5));
}
.video-modal-play:hover i { transform: scale(1.1); }
.video-modal-info { padding-top: 1rem; }
.video-modal-info h3 { 
    font-size: 1.15rem; 
    margin-bottom: 0.5rem; 
    line-height: 1.4;
}
.video-modal-info p { 
    color: var(--text-secondary); 
    font-size: 0.88rem; 
    line-height: 1.6; 
    margin-bottom: 1rem; 
}
.video-modal-meta { 
    display: flex; 
    gap: 1rem; 
    margin-bottom: 1.2rem; 
    flex-wrap: wrap; 
}
.video-modal-meta span {
    color: var(--text-muted); 
    font-size: 0.78rem;
    display: flex; 
    align-items: center; 
    gap: 5px;
}
.video-modal-btn {
    padding: 11px 24px; 
    border-radius: 30px;
    background: linear-gradient(135deg, #ff0040, #ff6b81);
    border: none; 
    color: white; 
    font-weight: 600;
    font-size: 0.88rem; 
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex; 
    align-items: center; 
    gap: 10px;
}
.video-modal-btn:hover { 
    transform: scale(1.05); 
    box-shadow: 0 10px 25px rgba(255, 0, 64, 0.3); 
}

/* ========== MUSIC ========== */
.music-section { 
    padding: 2.5rem 5%; 
    max-width: 1200px; 
    margin: auto; 
}
.music-player-container {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: var(--radius); 
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(29, 185, 84, 0.08);
    box-shadow: var(--shadow);
}
.music-player {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1.5rem; 
    align-items: center;
}
.music-player-art {
    position: relative; 
    width: 120px; 
    height: 120px;
    border-radius: 18px; 
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.music-player-art img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}
.music-art-overlay {
    position: absolute; 
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex; 
    align-items: center; 
    justify-content: center;
    opacity: 0; 
    transition: var(--transition);
}
.music-player-art:hover .music-art-overlay { opacity: 1; }
.music-art-overlay i { font-size: 2.5rem; color: #1db954; }
.music-player-info h3 {
    font-size: 1.1rem; 
    margin-bottom: 0.2rem;
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis;
}
.music-player-info p { 
    color: var(--text-secondary); 
    font-size: 0.82rem; 
}
.music-player-controls { 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    justify-content: center; 
    flex-wrap: wrap;
}
.music-btn {
    background: none; 
    border: none;
    color: var(--text-secondary); 
    font-size: 1rem;
    cursor: pointer; 
    transition: var(--transition);
    padding: 8px; 
    border-radius: 50%;
    width: 40px; 
    height: 40px;
    display: flex; 
    align-items: center; 
    justify-content: center;
}
.music-btn:hover { 
    color: var(--text-primary); 
    background: rgba(255, 255, 255, 0.05); 
}
.music-btn-play {
    background: #1db954; 
    color: white;
    font-size: 1.2rem; 
    width: 52px; 
    height: 52px;
}
.music-btn-play:hover { 
    background: #1ed760; 
    transform: scale(1.05); 
}
.music-btn.active { color: #1db954; }
.music-progress {
    display: flex; 
    align-items: center;
    gap: 0.8rem; 
    width: 100%; 
    padding: 0.5rem 0;
    grid-column: 1 / -1;
}
.music-progress span {
    font-size: 0.7rem; 
    color: var(--text-muted); 
    min-width: 40px;
}
.music-progress-bar {
    flex: 1; 
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px; 
    cursor: pointer;
    position: relative; 
    transition: height 0.2s;
}
.music-progress-bar:hover { height: 6px; }
.music-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1db954, #1ed760);
    border-radius: 4px; 
    width: 0%;
    transition: width 0.1s linear;
}
.music-volume { 
    display: flex; 
    align-items: center; 
    gap: 0.8rem; 
    min-width: 120px;
    grid-column: 1 / -1;
}
.music-volume i { 
    color: var(--text-secondary); 
    font-size: 0.85rem; 
}
.music-volume input[type="range"] {
    -webkit-appearance: none; 
    appearance: none;
    width: 100%; 
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px; 
    outline: none;
}
.music-volume input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; 
    appearance: none;
    width: 12px; 
    height: 12px; 
    border-radius: 50%;
    background: #1db954; 
    cursor: pointer;
}
.music-volume input[type="range"]::-moz-range-thumb {
    width: 12px; 
    height: 12px; 
    border-radius: 50%;
    background: #1db954; 
    cursor: pointer; 
    border: none;
}
.music-playlist-container {
    background: var(--bg-card); 
    border-radius: var(--radius);
    padding: 1.5rem; 
    border: 1px solid var(--border-color);
}
.music-playlist-header {
    display: flex; 
    justify-content: space-between;
    align-items: center; 
    margin-bottom: 1.5rem;
    flex-wrap: wrap; 
    gap: 0.8rem;
}
.music-playlist-header h3 { 
    font-size: 1.05rem; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
}
.music-playlist-header h3 i { color: #1db954; }
.music-playlist-actions { 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
    flex-wrap: wrap;
}
.music-action-btn {
    background: rgba(29, 185, 84, 0.08);
    border: 1px solid rgba(29, 185, 84, 0.12);
    color: #1db954; 
    padding: 6px 16px;
    border-radius: 20px; 
    cursor: pointer;
    transition: var(--transition); 
    font-size: 0.75rem;
    display: inline-flex; 
    align-items: center; 
    gap: 6px;
}
.music-action-btn:hover { background: rgba(29, 185, 84, 0.15); }
#musicTotalSongs { 
    color: var(--text-muted); 
    font-size: 0.78rem; 
}
.music-playlist { 
    max-height: 380px; 
    overflow-y: auto; 
    border-radius: 16px; 
}
.music-playlist::-webkit-scrollbar { width: 4px; }
.music-playlist::-webkit-scrollbar-thumb { 
    background: #1db954; 
    border-radius: 4px; 
}
.music-loading {
    display: flex; 
    align-items: center; 
    justify-content: center;
    gap: 1rem; 
    padding: 2rem; 
    color: var(--text-muted);
}
.music-loading i { font-size: 1.5rem; color: #1db954; }
.music-song-item {
    display: flex; 
    align-items: center; 
    gap: 0.8rem;
    padding: 0.7rem 1rem; 
    border-radius: 12px;
    cursor: pointer; 
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
}
.music-song-item:hover { background: rgba(255, 255, 255, 0.04); }
.music-song-item.active {
    background: rgba(29, 185, 84, 0.08);
    border-left: 3px solid #1db954;
}
.music-song-item .song-number {
    color: var(--text-muted); 
    font-size: 0.75rem;
    min-width: 24px; 
    text-align: center;
}
.music-song-item .song-info { flex: 1; min-width: 0; }
.music-song-item .song-info h4 {
    font-size: 0.82rem;
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis;
}
.music-song-item .song-info p {
    font-size: 0.68rem; 
    color: var(--text-muted);
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis;
}
.music-song-item .song-duration {
    color: var(--text-muted); 
    font-size: 0.68rem;
    min-width: 36px; 
    text-align: right;
}
.music-song-item .song-play-icon {
    color: #1db954; 
    opacity: 0;
    transition: var(--transition); 
    font-size: 0.9rem;
    min-width: 16px;
}
.music-song-item:hover .song-play-icon,
.music-song-item.active .song-play-icon { opacity: 1; }
.music-song-item.active .song-number { display: none; }
.music-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem; 
    margin-top: 2rem; 
    padding: 1.5rem;
    background: var(--bg-card); 
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}
.music-stat-item { 
    text-align: center; 
    padding: 1rem; 
    border-radius: 18px; 
    transition: var(--transition); 
}
.music-stat-item:hover { 
    transform: scale(1.05); 
    background: rgba(29, 185, 84, 0.04); 
}
.music-stat-item i { 
    font-size: 1.8rem; 
    color: #1db954; 
    margin-bottom: 6px; 
}
.music-stat-item .stat-number {
    display: block; 
    font-size: 1.4rem; 
    font-weight: 800;
    color: #1db954; 
    font-family: 'Orbitron', sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.music-stat-item .stat-label { 
    font-size: 0.72rem; 
    color: var(--text-secondary); 
}

/* ========== REVIEWERS ========== */
.reviewers-section { 
    padding: 2.5rem 5%; 
    max-width: 1200px; 
    margin: auto; 
}
.reviewers-subtitle {
    text-align: center; 
    color: var(--text-secondary);
    font-size: 0.95rem; 
    margin-bottom: 2rem;
    max-width: 700px; 
    margin-left: auto; 
    margin-right: auto;
    line-height: 1.6;
    padding: 0 1rem;
}
.reviewers-filter {
    display: flex; 
    gap: 0.6rem; 
    flex-wrap: wrap;
    justify-content: center; 
    margin-bottom: 2rem;
}
.reviewer-filter-btn {
    padding: 8px 18px; 
    border-radius: 30px;
    border: 1px solid var(--border-color);
    background: transparent; 
    color: var(--text-secondary);
    cursor: pointer; 
    transition: var(--transition);
    font-size: 0.8rem; 
    font-weight: 500;
    white-space: nowrap;
}
.reviewer-filter-btn:hover {
    border-color: var(--accent); 
    color: var(--text-primary);
    transform: translateY(-2px);
}
.reviewer-filter-btn.active {
    background: var(--accent-gradient); 
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 20px var(--accent-glow);
}
.reviewers-stats {
    display: flex; 
    gap: 1rem; 
    flex-wrap: wrap;
    justify-content: center; 
    margin-bottom: 2.5rem;
    padding: 1.2rem 1.5rem; 
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}
.reviewer-stat-item { 
    text-align: center; 
    padding: 0.5rem 1rem; 
    min-width: 80px;
}
.reviewer-stat-item .stat-number {
    display: block; 
    font-size: 1.5rem; 
    font-weight: 800;
    color: var(--accent); 
    font-family: 'Orbitron', sans-serif;
}
.reviewer-stat-item .stat-label {
    font-size: 0.72rem; 
    color: var(--text-secondary);
    text-transform: capitalize;
}
.reviewers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
}
.reviewer-card {
    background: var(--bg-card); 
    backdrop-filter: blur(8px);
    border-radius: var(--radius);
    padding: 1.8rem 1.3rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex; 
    flex-direction: column;
    align-items: center; 
    position: relative;
    overflow: hidden;
}
.reviewer-card::before {
    content: ''; 
    position: absolute;
    top: 0; 
    left: -100%;
    width: 100%; 
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(10, 207, 131, 0.06), transparent);
    transition: 0.6s;
}
.reviewer-card:hover::before { left: 100%; }
.reviewer-card:hover {
    transform: translateY(-12px);
    border-color: var(--accent);
    box-shadow: var(--shadow);
}
.reviewer-avatar-wrapper { 
    position: relative; 
    margin-bottom: 1rem; 
}
.reviewer-avatar {
    width: 90px; 
    height: 90px; 
    border-radius: 50%;
    object-fit: cover; 
    border: 3px solid var(--accent);
    padding: 4px; 
    background: var(--bg-primary);
    transition: var(--transition);
}
.reviewer-card:hover .reviewer-avatar { 
    transform: scale(1.05); 
    border-color: #3b82f6; 
}
.reviewer-country-badge {
    position: absolute; 
    bottom: 2px; 
    right: -2px;
    font-size: 1.4rem; 
    line-height: 1;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
    background: var(--bg-card); 
    border-radius: 50%;
    padding: 2px; 
    border: 2px solid var(--bg-primary);
}
.reviewer-card h3 { 
    font-size: 1.1rem; 
    margin-bottom: 0.4rem; 
}
.reviewer-card p {
    color: var(--text-secondary); 
    font-size: 0.85rem;
    line-height: 1.5; 
    margin-bottom: 1.2rem; 
    flex: 1;
}
.reviewer-social { 
    display: flex; 
    gap: 0.6rem; 
    justify-content: center; 
    flex-wrap: wrap; 
}
.social-icon {
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    width: 42px; 
    height: 42px; 
    border-radius: 50%;
    font-size: 1.2rem; 
    color: #fff;
    transition: var(--transition); 
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
}
.social-icon:hover { 
    transform: translateY(-4px) scale(1.1); 
}
.social-icon.instagram { 
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); 
}
.social-icon.tiktok { 
    background: linear-gradient(135deg, #00f2ea, #ff0050); 
}
.social-icon.youtube { background: #ff0000; }
.reviewers-empty {
    grid-column: 1 / -1; 
    text-align: center;
    padding: 4rem 2rem; 
    color: var(--text-muted);
}
.reviewers-empty i { 
    font-size: 3rem; 
    display: block; 
    margin-bottom: 1rem; 
    opacity: 0.4; 
}

/* ========== PROCESSOR ========== */
.processor-section { 
    padding: 2.5rem 5%; 
    max-width: 1400px; 
    margin: auto; 
}
.processor-subtitle {
    text-align: center; 
    color: var(--text-secondary);
    font-size: 0.95rem; 
    margin-bottom: 2rem;
    max-width: 800px; 
    margin-left: auto; 
    margin-right: auto;
    line-height: 1.6;
    padding: 0 1rem;
}
.processor-filter {
    display: flex; 
    gap: 0.5rem; 
    flex-wrap: wrap;
    justify-content: center; 
    margin-bottom: 2rem;
}
.processor-filter-btn {
    padding: 8px 16px; 
    border-radius: 30px;
    border: 1px solid var(--border-color);
    background: transparent; 
    color: var(--text-secondary);
    cursor: pointer; 
    transition: var(--transition);
    font-size: 0.78rem; 
    font-weight: 500;
    white-space: nowrap;
}
.processor-filter-btn:hover {
    border-color: var(--accent); 
    color: var(--text-primary);
    transform: translateY(-2px);
}
.processor-filter-btn.active {
    background: var(--accent-gradient); 
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 20px var(--accent-glow);
}
.processor-stats {
    display: flex; 
    gap: 0.8rem; 
    flex-wrap: wrap;
    justify-content: center; 
    margin-bottom: 2.5rem;
    padding: 1.2rem 1.5rem; 
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}
.processor-stat-item { 
    text-align: center; 
    padding: 0.3rem 0.8rem; 
    min-width: 80px;
}
.processor-stat-item .stat-number {
    display: block; 
    font-size: 1.4rem; 
    font-weight: 800;
    color: var(--accent); 
    font-family: 'Orbitron', sans-serif;
}
.processor-stat-item .stat-label { 
    font-size: 0.68rem; 
    color: var(--text-secondary); 
}
.processor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem; 
    margin-bottom: 3rem;
}
.processor-card {
    background: var(--bg-card); 
    backdrop-filter: blur(8px);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    overflow: hidden; 
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}
.processor-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: var(--shadow);
}
.processor-card-header {
    display: flex; 
    justify-content: space-between;
    align-items: center; 
    padding: 0.8rem 1.2rem;
    background: rgba(10, 207, 131, 0.04);
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap; 
    gap: 0.5rem;
}
.processor-brand-badge { 
    font-size: 0.72rem; 
    font-weight: 600; 
    color: var(--text-secondary); 
}
.processor-type-badge {
    font-size: 0.62rem; 
    padding: 2px 12px;
    border-radius: 20px; 
    font-weight: 600;
    white-space: nowrap;
}
.processor-type-badge.smartphone { 
    background: rgba(59, 130, 246, 0.15); 
    color: #3b82f6; 
}
.processor-type-badge.laptop { 
    background: rgba(245, 158, 11, 0.15); 
    color: #f59e0b; 
}
.processor-card-body { 
    padding: 1.2rem 1.2rem 1.5rem; 
    display: flex;
    flex-direction: column;
    flex: 1;
}
.processor-card-body h3 { 
    font-size: 1.1rem; 
    margin-bottom: 0.8rem; 
    color: var(--text-primary);
    line-height: 1.3;
}
.processor-specs { 
    display: flex; 
    flex-direction: column; 
    gap: 0.3rem; 
    margin-bottom: 0.8rem; 
}
.processor-spec-item {
    display: flex; 
    align-items: flex-start; 
    gap: 8px;
    font-size: 0.78rem; 
    color: var(--text-secondary);
    line-height: 1.5;
}
.processor-spec-item i { 
    width: 18px; 
    color: var(--accent); 
    font-size: 0.78rem;
    flex-shrink: 0;
    margin-top: 3px;
}
.processor-spec-item strong { color: var(--text-primary); }
.processor-desc { 
    font-size: 0.82rem; 
    color: var(--text-secondary); 
    line-height: 1.55; 
    margin: 0.6rem 0; 
}
.processor-year {
    display: inline-block; 
    font-size: 0.68rem;
    color: var(--text-muted);
    background: rgba(255,255,255,0.04);
    padding: 2px 12px; 
    border-radius: 12px;
    align-self: flex-start;
    margin-top: auto;
}
.processor-empty {
    grid-column: 1 / -1; 
    text-align: center;
    padding: 4rem 2rem; 
    color: var(--text-muted);
}
.processor-empty i { 
    font-size: 3rem; 
    display: block; 
    margin-bottom: 1rem; 
    opacity: 0.4; 
}
.processor-compare-section {
    margin-top: 2rem; 
    padding: 1.5rem;
    background: var(--bg-card); 
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}
.processor-compare-section h3 {
    font-size: 1.1rem; 
    margin-bottom: 1.5rem;
    display: flex; 
    align-items: center; 
    gap: 10px;
}
.processor-compare-section h3 i { color: #f59e0b; }
.processor-compare-table { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.processor-compare-table table { 
    width: 100%; 
    border-collapse: collapse; 
    font-size: 0.82rem;
    min-width: 600px;
}
.processor-compare-table th,
.processor-compare-table td {
    padding: 0.6rem 0.8rem; 
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}
.processor-compare-table th {
    background: rgba(10, 207, 131, 0.06);
    font-weight: 600; 
    color: var(--accent);
    font-size: 0.75rem; 
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.processor-compare-table td { 
    color: var(--text-secondary); 
    font-size: 0.78rem;
}
.processor-compare-table tr:hover td { 
    background: rgba(255, 255, 255, 0.02); 
}
.compare-empty { 
    text-align: center; 
    color: var(--text-muted); 
    padding: 2rem; 
}

/* ========== EVENT LAUNCHING ========== */
.event-section { 
    padding: 2.5rem 5%; 
    max-width: 1400px; 
    margin: auto; 
}
.event-subtitle {
    text-align: center; 
    color: var(--text-secondary);
    font-size: 0.95rem; 
    margin-bottom: 2rem;
    max-width: 800px; 
    margin-left: auto; 
    margin-right: auto;
    line-height: 1.6;
    padding: 0 1rem;
}

.event-timeline {
    display: flex; 
    justify-content: space-between;
    align-items: center; 
    position: relative;
    margin: 2rem 0 3rem; 
    padding: 0 1rem;
    flex-wrap: wrap; 
    gap: 0.8rem;
}
.event-timeline::before {
    content: ''; 
    position: absolute; 
    top: 50%; 
    left: 5%; 
    right: 5%;
    height: 3px; 
    background: linear-gradient(90deg, #0acf83, #3b82f6, #8b5cf6, #ff0040);
    border-radius: 3px; 
    z-index: 0;
}
.event-timeline-item {
    position: relative; 
    z-index: 1;
    background: var(--bg-primary); 
    border: 2px solid var(--accent);
    width: 60px; 
    height: 60px; 
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-family: 'Orbitron', sans-serif; 
    font-weight: 700;
    font-size: 0.7rem; 
    color: var(--accent);
    transition: var(--transition); 
    cursor: pointer;
    user-select: none;
}
.event-timeline-item:hover,
.event-timeline-item.active {
    background: var(--accent); 
    color: #0a0e1a;
    transform: scale(1.15); 
    box-shadow: 0 0 25px var(--accent-glow);
}
.event-filter {
    display: flex; 
    gap: 0.5rem; 
    flex-wrap: wrap;
    justify-content: center; 
    margin-bottom: 2rem;
}
.event-filter-btn {
    padding: 8px 18px; 
    border-radius: 30px;
    border: 1px solid var(--border-color);
    background: transparent; 
    color: var(--text-secondary);
    cursor: pointer; 
    transition: var(--transition);
    font-size: 0.78rem; 
    font-weight: 500;
    white-space: nowrap;
}
.event-filter-btn:hover {
    border-color: #8b5cf6; 
    color: var(--text-primary);
    transform: translateY(-2px);
}
.event-filter-btn.active {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: #fff; 
    border-color: transparent;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}
.event-stats {
    display: flex; 
    gap: 0.8rem; 
    flex-wrap: wrap;
    justify-content: center; 
    margin-bottom: 2.5rem;
    padding: 1.2rem 1.5rem; 
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}
.event-stat-item { 
    text-align: center; 
    padding: 0.3rem 0.8rem; 
    min-width: 70px;
}
.event-stat-item .stat-number {
    display: block; 
    font-size: 1.4rem; 
    font-weight: 800;
    color: #8b5cf6; 
    font-family: 'Orbitron', sans-serif;
}
.event-stat-item .stat-label { 
    font-size: 0.68rem; 
    color: var(--text-secondary); 
}
.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.8rem;
}
.event-card {
    background: var(--bg-card); 
    backdrop-filter: blur(10px);
    border-radius: var(--radius); 
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition); 
    position: relative;
    display: flex; 
    flex-direction: column;
}
.event-card:hover {
    transform: translateY(-10px);
    border-color: #8b5cf6;
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.2);
}
.event-card-image {
    position: relative; 
    width: 100%; 
    height: 200px;
    overflow: hidden;
}
.event-card-image img {
    width: 100%; 
    height: 100%;
    object-fit: cover; 
    transition: var(--transition);
}
.event-card:hover .event-card-image img { transform: scale(1.08); }
.event-year-badge {
    position: absolute; 
    top: 12px; 
    left: 12px;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: #fff; 
    padding: 5px 14px;
    border-radius: 30px; 
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem; 
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4);
}
.event-type-badge {
    position: absolute; 
    top: 12px; 
    right: 12px;
    background: rgba(0, 0, 0, 0.7); 
    backdrop-filter: blur(10px);
    color: #0acf83; 
    padding: 5px 12px;
    border-radius: 20px; 
    font-size: 0.65rem;
    font-weight: 600; 
    border: 1px solid rgba(10, 207, 131, 0.3);
    max-width: 45%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.event-card-content {
    padding: 1.5rem; 
    display: flex;
    flex-direction: column; 
    flex: 1;
}
.event-card-meta {
    display: flex; 
    gap: 0.8rem; 
    flex-wrap: wrap;
    margin-bottom: 0.8rem; 
    font-size: 0.7rem;
    color: var(--text-muted);
}
.event-card-meta span { 
    display: flex; 
    align-items: center; 
    gap: 5px; 
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.event-card-meta i { color: #8b5cf6; flex-shrink: 0; }
.event-card h3 {
    font-size: 1.05rem; 
    margin-bottom: 0.5rem;
    line-height: 1.4; 
    color: var(--text-primary);
}
.event-card p {
    color: var(--text-secondary); 
    font-size: 0.83rem;
    line-height: 1.55; 
    margin-bottom: 1rem; 
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.event-highlight {
    display: inline-flex; 
    align-items: center; 
    gap: 6px;
    background: rgba(139, 92, 246, 0.1);
    color: #a78bfa; 
    padding: 5px 12px;
    border-radius: 20px; 
    font-size: 0.7rem;
    font-weight: 600; 
    margin-bottom: 1rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
    align-self: flex-start;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.event-highlight i { flex-shrink: 0; }
.event-actions {
    display: flex; 
    gap: 0.5rem; 
    flex-wrap: wrap;
    margin-top: auto;
}
.event-btn {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    border: none; 
    color: #fff;
    padding: 10px 16px; 
    border-radius: 30px;
    cursor: pointer; 
    font-weight: 600;
    font-size: 0.78rem; 
    transition: var(--transition);
    display: inline-flex; 
    align-items: center;
    justify-content: center; 
    gap: 6px;
    flex: 1;
    min-width: 120px;
}
.event-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}
.event-video-btn {
    display: inline-flex; 
    align-items: center;
    justify-content: center; 
    gap: 6px;
    background: linear-gradient(135deg, #ff0040, #ff6b81);
    color: #fff; 
    border: none;
    padding: 10px 16px; 
    border-radius: 30px;
    font-weight: 600; 
    font-size: 0.78rem;
    cursor: pointer; 
    transition: var(--transition);
    flex: 1;
    min-width: 120px;
}
.event-video-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 64, 0.4);
}
.event-empty {
    grid-column: 1 / -1; 
    text-align: center;
    padding: 4rem 2rem; 
    color: var(--text-muted);
}
.event-empty i { 
    font-size: 3rem; 
    display: block; 
    margin-bottom: 1rem; 
    opacity: 0.4; 
}

/* ========== EVENT VIDEO MODAL ========== */
.event-video-modal {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2500;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    overflow-y: auto;
}
.event-video-modal.active { display: flex; }
.event-video-modal-content {
    background: linear-gradient(135deg, #1a1a2e, #0f172a);
    max-width: 960px;
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid rgba(139, 92, 246, 0.25);
    box-shadow: 0 30px 80px rgba(139, 92, 246, 0.25);
    position: relative;
    animation: modalFadeIn 0.4s ease;
    overflow: hidden;
    max-height: 95vh;
    display: flex;
    flex-direction: column;
}
.event-video-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    transition: var(--transition);
    z-index: 10;
    line-height: 1;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.event-video-modal-close:hover {
    background: #ff0040;
    transform: rotate(90deg) scale(1.1);
}
.event-video-player-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    flex-shrink: 0;
}
.event-video-player {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.event-video-player iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
.event-video-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.88rem;
}
.event-video-loading i { font-size: 2.5rem; color: #8b5cf6; }
.event-video-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    color: var(--text-secondary);
    text-align: center;
}
.event-video-fallback i { font-size: 3rem; color: #ff0040; opacity: 0.7; }
.event-video-modal-info {
    padding: 1.5rem 1.8rem 1.8rem;
    overflow-y: auto;
    flex: 1;
}
.event-video-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}
.event-video-modal-header > div {
    flex: 1;
    min-width: 200px;
}
.event-video-modal-header h3 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
    line-height: 1.35;
    color: var(--text-primary);
    padding-right: 2.5rem;
}
.event-video-modal-header p {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.76rem;
    color: var(--text-muted);
}
.event-video-modal-header p span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.event-video-modal-header p i { color: #8b5cf6; }
.event-video-modal-year {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: #fff;
    padding: 5px 14px;
    border-radius: 30px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4);
    align-self: flex-start;
}
.event-video-modal-desc {
    color: var(--text-secondary);
    font-size: 0.86rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    word-break: break-word;
}
.event-video-modal-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.event-video-action-btn {
    padding: 10px 18px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}
.event-video-action-btn.youtube {
    background: linear-gradient(135deg, #ff0000, #ff4444);
    color: #fff;
}
.event-video-action-btn.youtube:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}
.event-video-action-btn.detail {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
    border: 1px solid rgba(139, 92, 246, 0.3);
}
.event-video-action-btn.detail:hover {
    background: rgba(139, 92, 246, 0.25);
    transform: translateY(-2px);
}
.event-video-action-btn.close {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
}
.event-video-action-btn.close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-primary);
}

/* ========== MODAL DETAIL ========== */
.modal {
    display: none; 
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000; 
    justify-content: center; 
    align-items: center;
    padding: 1.5rem;
    overflow-y: auto;
}
.modal-content {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    max-width: 500px; 
    width: 100%;
    border-radius: 32px; 
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(10, 207, 131, 0.12);
    animation: popIn 0.5s cubic-bezier(0.34, 1.2, 0.64, 1);
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
    margin: auto;
}
.modal-icon { 
    font-size: 3rem; 
    color: var(--accent); 
    margin-bottom: 1rem; 
}
@keyframes popIn { 
    0% { transform: scale(0.6); opacity: 0; } 
    100% { transform: scale(1); opacity: 1; } 
}
.close-modal {
    position: absolute; 
    top: 12px; 
    right: 16px;
    font-size: 1.8rem; 
    cursor: pointer;
    transition: var(--transition); 
    color: var(--text-secondary);
    background: none;
    border: none;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
}
.close-modal:hover { 
    color: var(--accent); 
    transform: rotate(90deg); 
    background: rgba(10, 207, 131, 0.1);
}
#modalTitle {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}
#modalDetail {
    text-align: left;
    line-height: 1.7;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    word-break: break-word;
}
#modalCloseBtn {
    background: var(--accent); 
    border: none;
    padding: 12px 32px; 
    border-radius: 40px;
    font-weight: 600; 
    cursor: pointer;
    margin-top: 1.2rem; 
    transition: var(--transition);
    color: #0a0e1a;
    font-size: 0.9rem;
}
#modalCloseBtn:hover { 
    transform: scale(1.05); 
    box-shadow: 0 10px 30px var(--accent-glow); 
}

/* ========== TOAST ========== */
.toast {
    position: fixed; 
    bottom: 20px; 
    right: 20px;
    background: var(--accent); 
    color: #0a0e1a;
    padding: 0.9rem 1.5rem; 
    border-radius: 50px;
    display: flex; 
    align-items: center; 
    gap: 12px;
    transform: translateX(400px);
    transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
    z-index: 1100; 
    font-weight: 600;
    box-shadow: 0 10px 30px var(--accent-glow);
    max-width: calc(100% - 40px);
    font-size: 0.85rem;
}
.toast.show { transform: translateX(0); }
.toast i { font-size: 1.2rem; flex-shrink: 0; }

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed; 
    bottom: 20px; 
    left: 20px;
    width: 48px; 
    height: 48px; 
    border-radius: 50%;
    background: var(--accent); 
    color: #0a0e1a;
    border: none; 
    font-size: 1.1rem;
    cursor: pointer; 
    transition: var(--transition);
    z-index: 100; 
    opacity: 0; 
    visibility: hidden;
    transform: translateY(20px);
    box-shadow: 0 5px 20px var(--accent-glow);
    display: flex; 
    align-items: center; 
    justify-content: center;
}
.back-to-top.visible { 
    opacity: 1; 
    visibility: visible; 
    transform: translateY(0); 
}
.back-to-top:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 30px var(--accent-glow); 
}

/* ========== FOOTER ========== */
footer {
    background: #070a14;
    border-top: 1px solid var(--border-color);
    margin-top: 3rem;
}
[data-theme="light"] footer {
    background: #d8e0f0;
}
.footer-content {
    max-width: 1400px; 
    margin: 0 auto;
    padding: 2.5rem 5%;
    display: flex; 
    justify-content: space-between;
    align-items: center; 
    flex-wrap: wrap; 
    gap: 1.5rem;
}
.footer-brand h3 {
    font-size: 1.2rem; 
    color: var(--accent);
    display: flex; 
    align-items: center; 
    gap: 8px;
    margin-bottom: 0.4rem;
}
.footer-brand p { 
    color: var(--text-muted); 
    font-size: 0.82rem; 
}
.footer-social { 
    display: flex; 
    gap: 0.8rem; 
    flex-wrap: wrap;
    justify-content: center;
}
.footer-social i {
    font-size: 1.3rem; 
    cursor: pointer;
    transition: var(--transition); 
    padding: 10px;
    border-radius: 50%; 
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}
.footer-social i:hover {
    transform: translateY(-5px);
    color: var(--accent);
    background: rgba(10, 207, 131, 0.08);
}
.footer-links { 
    display: flex; 
    gap: 1.2rem; 
    flex-wrap: wrap; 
    justify-content: center;
}
.footer-links a {
    color: var(--text-muted); 
    text-decoration: none;
    font-size: 0.82rem; 
    transition: var(--transition);
    white-space: nowrap;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
    text-align: center; 
    padding: 1rem 5%;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted); 
    font-size: 0.78rem;
}

/* ================================================================
   RESPONSIVE - TABLET (max-width: 1024px)
   ================================================================ */
@media (max-width: 1024px) {
    .video-main-container { grid-template-columns: 1fr; }
    .video-main-thumbnail img { height: 240px; }
    .processor-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
    .event-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
    .event-video-modal-content {
        max-width: 100%;
        max-height: 100vh;
    }
}

/* ================================================================
   RESPONSIVE - MOBILE (max-width: 768px)
   ================================================================ */
@media (max-width: 768px) {
    /* Navbar */
    .navbar { padding: 0.7rem 4%; }
    .logo { font-size: 1.2rem; }
    .logo-badge { font-size: 0.5rem; padding: 2px 8px; }
    .nav-links {
        display: none; 
        flex-direction: column;
        position: absolute; 
        top: 100%; 
        left: 0;
        width: 100%; 
        background: var(--bg-primary);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 1rem; 
        gap: 0.3rem;
        border-bottom: 1px solid var(--border-color);
        max-height: 80vh;
        overflow-y: auto;
        z-index: 99;
    }
    .nav-links.active { display: flex; }
    .nav-links a { 
        padding: 12px 16px; 
        width: 100%; 
        justify-content: flex-start; 
        font-size: 0.85rem;
        border-radius: 12px;
    }
    .nav-links a::after { display: none; }
    .menu-toggle { display: flex; }

    /* Hero */
    .video-hero { min-height: 100vh; height: auto; padding: 5rem 0 4rem; }
    .hero-content { padding: 2rem 1rem; }
    .glitch-text { font-size: 2.2rem; text-shadow: 2px 2px 0px rgba(10, 207, 131, 0.5), -2px -2px 0px rgba(59, 130, 246, 0.5); }
    .hero-subtitle { font-size: 0.9rem; margin: 0.8rem 0 1.5rem; }
    .hero-badge { font-size: 0.7rem; padding: 5px 16px; }
    .hero-buttons { 
        flex-direction: column; 
        align-items: center; 
        gap: 0.6rem;
    }
    .hero-btn { 
        width: 100%; 
        max-width: 300px; 
        justify-content: center; 
        padding: 11px 24px;
        font-size: 0.85rem;
    }
    .hero-stats { 
        gap: 1rem; 
        margin-top: 1.8rem;
    }
    .hero-stat { min-width: 60px; }
    .hero-stat .stat-number { font-size: 1.4rem; }
    .hero-stat .stat-label { font-size: 0.65rem; }
    .scroll-indicator { bottom: 15px; }
    .scroll-indicator span { font-size: 0.6rem; }

    /* Sections */
    .featured-section, .testimonial-section { padding: 2rem 4%; }
    .cta-section { padding: 2rem 1.2rem; margin: 1.5rem 3%; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-btn { width: 100%; max-width: 300px; justify-content: center; }
    
    .news-section, .review-section,
    .trend-section, .officialweb-section,
    .video-section, .music-section,
    .reviewers-section, .processor-section,
    .event-section {
        padding: 2rem 4%;
    }
    
    .section-title { 
        font-size: 1.25rem; 
        padding-left: 12px; 
        border-left-width: 5px;
        gap: 8px;
        margin-bottom: 1.5rem;
    }
    .module-badge { font-size: 0.68rem; padding: 5px 14px; }
    .section-header { gap: 0.8rem; margin-bottom: 1.5rem; }

    /* Featured */
    .featured-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 1rem;
    }
    .featured-card { padding: 1.5rem 1rem; }
    .featured-card .featured-icon-wrapper { width: 55px; height: 55px; }
    .featured-card i { font-size: 1.8rem; }
    .featured-card h3 { font-size: 0.95rem; }
    .featured-card p { font-size: 0.75rem; }
    .featured-tag { font-size: 0.55rem; padding: 2px 10px; }

    /* Testimonial */
    .testimonial-grid { grid-template-columns: 1fr; gap: 1rem; }

    /* News & Review */
    .news-grid, .review-grid { 
        grid-template-columns: 1fr; 
        gap: 1.2rem;
    }
    .news-card img, .review-card img { height: 180px; }
    .news-content, .review-content { padding: 1.2rem; }
    .news-content h3, .review-content h3 { font-size: 1rem; }
    .news-content p, .review-content p { font-size: 0.83rem; }

    /* Trend */
    .trend-container { grid-template-columns: 1fr; gap: 1rem; }
    .trend-card { padding: 1.5rem 1.2rem; }
    .trend-card i { font-size: 2.5rem; }

    /* Official Web */
    .biodata-card { padding: 1.3rem; }
    .biodata-header i { font-size: 1.5rem; }
    .biodata-header h3 { font-size: 1.1rem; }
    .biodata-content { grid-template-columns: 1fr; gap: 0.6rem; }
    .officialweb-grid { grid-template-columns: 1fr; }
    .officialweb-item { padding: 1rem 1.2rem; gap: 0.8rem; }
    .officialweb-item i { font-size: 1.7rem; }
    .officialweb-stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; padding: 1.2rem; }
    .stat-card { padding: 0.9rem; }
    .stat-card .stat-number { font-size: 1.4rem; }
    .stat-card i { font-size: 1.6rem; }

    /* Video */
    .video-highlight-wrapper { padding: 1.2rem; }
    .video-main-container { grid-template-columns: 1fr; gap: 1rem; }
    .video-main-thumbnail img { height: 200px; }
    .video-play-overlay i { font-size: 3rem; }
    .video-main-info h3 { font-size: 1.05rem; }
    .video-main-info p { font-size: 0.83rem; }
    .video-meta { gap: 0.8rem; }
    .video-meta span { font-size: 0.7rem; }
    .video-categories { gap: 0.5rem; }
    .video-cat-btn { padding: 6px 14px; font-size: 0.72rem; }
    .video-grid { 
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); 
        gap: 1rem;
    }
    .video-card-thumbnail img { height: 150px; }
    .video-stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; padding: 1.2rem; }
    .video-stat-item i { font-size: 1.6rem; }
    .video-stat-item .stat-number { font-size: 1.3rem; }

    /* Video Modal */
    .video-modal { padding: 1rem; }
    .video-modal-content { padding: 1.2rem; max-height: 92vh; }
    .video-modal-thumbnail img { height: 200px; }
    .video-modal-play i { font-size: 3.5rem; }
    .video-modal-info h3 { font-size: 1.05rem; }
    .video-modal-btn { width: 100%; justify-content: center; }

    /* Music */
    .music-player-container { padding: 1.2rem; }
    .music-player { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 1rem;
    }
    .music-player-art { 
        width: 140px; 
        height: 140px; 
        margin: 0 auto; 
    }
    .music-player-info h3 { font-size: 1rem; }
    .music-player-controls { gap: 0.4rem; }
    .music-btn { width: 38px; height: 38px; font-size: 0.9rem; }
    .music-btn-play { width: 50px; height: 50px; font-size: 1.1rem; }
    .music-volume { min-width: 100%; justify-content: center; }
    .music-playlist-header { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 0.6rem;
    }
    .music-playlist-actions { width: 100%; justify-content: space-between; }
    .music-stats { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 1rem; 
        padding: 1.2rem;
    }
    .music-stat-item .stat-number { font-size: 1.2rem; }
    .music-song-item { padding: 0.6rem 0.8rem; gap: 0.6rem; }

    /* Reviewers */
    .reviewers-grid { 
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
        gap: 1.2rem;
    }
    .reviewer-filter-btn { padding: 7px 14px; font-size: 0.72rem; }
    .reviewers-stats { gap: 0.6rem; padding: 1rem; }
    .reviewer-stat-item { padding: 0.3rem 0.8rem; min-width: 70px; }
    .reviewer-stat-item .stat-number { font-size: 1.3rem; }
    .reviewer-avatar { width: 80px; height: 80px; }
    .reviewer-card { padding: 1.5rem 1rem 1.3rem; }
    .reviewer-card h3 { font-size: 1rem; }
    .reviewer-card p { font-size: 0.8rem; }

    /* Processor */
    .processor-grid { grid-template-columns: 1fr; gap: 1.2rem; }
    .processor-filter { gap: 0.4rem; }
    .processor-filter-btn { padding: 6px 12px; font-size: 0.7rem; }
    .processor-stats { gap: 0.6rem; padding: 1rem; }
    .processor-stat-item { padding: 0.3rem 0.6rem; min-width: 65px; }
    .processor-stat-item .stat-number { font-size: 1.2rem; }
    .processor-stat-item .stat-label { font-size: 0.62rem; }
    .processor-card-header { padding: 0.7rem 1rem; }
    .processor-card-body { padding: 1rem 1rem 1.3rem; }
    .processor-card-body h3 { font-size: 1rem; }
    .processor-spec-item { font-size: 0.72rem; }
    .processor-desc { font-size: 0.76rem; }
    .processor-compare-section { padding: 1.2rem 1rem; }
    .processor-compare-section h3 { font-size: 1rem; }
    .processor-compare-table table { font-size: 0.72rem; min-width: 550px; }
    .processor-compare-table th,
    .processor-compare-table td { padding: 0.5rem 0.6rem; }

    /* Event */
    .event-grid { grid-template-columns: 1fr; gap: 1.2rem; }
    .event-timeline { 
        gap: 0.5rem; 
        padding: 0;
        margin: 1.5rem 0 2rem;
        justify-content: center;
    }
    .event-timeline::before { display: none; }
    .event-timeline-item { width: 48px; height: 48px; font-size: 0.58rem; }
    .event-filter { gap: 0.4rem; }
    .event-filter-btn { padding: 6px 13px; font-size: 0.72rem; }
    .event-stats { gap: 0.5rem; padding: 1rem; margin-bottom: 1.5rem; }
    .event-stat-item { padding: 0.2rem 0.6rem; min-width: 60px; }
    .event-stat-item .stat-number { font-size: 1.2rem; }
    .event-stat-item .stat-label { font-size: 0.62rem; }
    .event-card-image { height: 180px; }
    .event-card-content { padding: 1.2rem; }
    .event-card h3 { font-size: 1rem; }
    .event-card p { font-size: 0.8rem; }
    .event-year-badge { 
        font-size: 0.72rem; 
        padding: 4px 12px; 
        top: 10px;
        left: 10px;
    }
    .event-type-badge { 
        font-size: 0.6rem; 
        padding: 3px 10px;
        top: 10px;
        right: 10px;
    }
    .event-actions { flex-direction: column; }
    .event-btn, .event-video-btn { width: 100%; min-width: 0; }

    /* Event Video Modal */
    .event-video-modal { padding: 0; align-items: flex-start; }
    .event-video-modal-content {
        border-radius: 0;
        max-height: 100vh;
        min-height: 100vh;
        border: none;
    }
    .event-video-modal-close {
        top: 10px;
        right: 10px;
        width: 38px;
        height: 38px;
        font-size: 1.5rem;
    }
    .event-video-modal-info { padding: 1.2rem 1rem 1.5rem; }
    .event-video-modal-header { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
    .event-video-modal-header > div { min-width: 0; width: 100%; }
    .event-video-modal-header h3 { font-size: 1rem; padding-right: 2.5rem; }
    .event-video-modal-header p { gap: 0.7rem; font-size: 0.7rem; }
    .event-video-modal-year { font-size: 0.72rem; padding: 4px 12px; }
    .event-video-modal-desc { font-size: 0.82rem; }
    .event-video-modal-actions { flex-direction: column; gap: 0.5rem; }
    .event-video-action-btn { width: 100%; padding: 11px 16px; font-size: 0.78rem; }

    /* Modal Detail */
    .modal { padding: 1rem; }
    .modal-content { 
        width: 100%; 
        padding: 1.8rem 1.2rem; 
        border-radius: 24px;
        max-height: 90vh;
    }
    .modal-icon { font-size: 2.5rem; }
    #modalTitle { font-size: 1.05rem; }
    #modalDetail { font-size: 0.83rem; line-height: 1.6; }
    #modalCloseBtn { padding: 11px 28px; font-size: 0.85rem; }

    /* Toast */
    .toast { 
        bottom: 15px; 
        right: 15px; 
        left: 15px;
        max-width: none;
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
    }

    /* Back to Top */
    .back-to-top { 
        bottom: 15px; 
        left: 15px; 
        width: 44px; 
        height: 44px; 
        font-size: 1rem;
    }

    /* Footer */
    .footer-content { 
        flex-direction: column; 
        text-align: center; 
        padding: 2rem 4%;
        gap: 1.2rem;
    }
    .footer-brand h3 { justify-content: center; font-size: 1.1rem; }
    .footer-links { gap: 0.9rem; }
    .footer-links a { font-size: 0.78rem; }
}

/* ================================================================
   RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ================================================================ */
@media (max-width: 480px) {
    .navbar { padding: 0.6rem 3%; }
    .logo { font-size: 1.05rem; gap: 6px; }
    .logo i { font-size: 1.1rem; }
    .logo-badge { font-size: 0.45rem; padding: 2px 6px; }
    .theme-toggle { font-size: 1rem; padding: 6px; }
    .menu-toggle { font-size: 1.4rem; }

    .glitch-text { font-size: 1.8rem; }
    .hero-subtitle { font-size: 0.82rem; }
    .hero-btn { padding: 10px 20px; font-size: 0.8rem; }
    .hero-stats { gap: 0.8rem; }
    .hero-stat { min-width: 55px; }
    .hero-stat .stat-number { font-size: 1.2rem; }
    .hero-stat .stat-label { font-size: 0.6rem; }

    .featured-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
    .featured-card { padding: 1.2rem 0.8rem; }
    .featured-card h3 { font-size: 0.85rem; }
    .featured-card p { font-size: 0.7rem; }

    .cta-section { padding: 1.8rem 1rem; }
    .cta-section h3 { font-size: 1.1rem; }
    .cta-section p { font-size: 0.82rem; }

    .section-title { font-size: 1.1rem; }
    .module-badge { font-size: 0.62rem; padding: 4px 12px; }

    .biodata-header h3 { font-size: 1rem; }
    .officialweb-stats { grid-template-columns: 1fr 1fr; }
    .stat-card .stat-number { font-size: 1.2rem; }

    .video-stats { grid-template-columns: 1fr 1fr; }
    .video-card-thumbnail img { height: 140px; }

    .music-stats { grid-template-columns: 1fr 1fr; }
    .music-player-art { width: 120px; height: 120px; }
    .music-song-item { padding: 0.55rem 0.7rem; gap: 0.5rem; }
    .music-song-item .song-info h4 { font-size: 0.78rem; }
    .music-song-item .song-duration { font-size: 0.62rem; min-width: 32px; }

    .reviewers-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .reviewer-card { padding: 1.2rem 0.7rem 1rem; }
    .reviewer-avatar { width: 65px; height: 65px; padding: 3px; }
    .reviewer-country-badge { font-size: 1.1rem; }
    .reviewer-card h3 { font-size: 0.88rem; }
    .reviewer-card p { font-size: 0.72rem; }
    .social-icon { width: 36px; height: 36px; font-size: 1rem; }
    .reviewers-stats { flex-direction: column; align-items: center; gap: 0.4rem; }
    .reviewer-stat-item { min-width: 100%; }

    .processor-stats { gap: 0.5rem; padding: 0.8rem; }
    .processor-stat-item { padding: 0.25rem 0.5rem; min-width: 60px; }
    .processor-stat-item .stat-number { font-size: 1.1rem; }
    .processor-card-body h3 { font-size: 0.95rem; }
    .processor-spec-item { font-size: 0.68rem; }
    .processor-desc { font-size: 0.72rem; }

    .event-timeline-item { width: 42px; height: 42px; font-size: 0.52rem; }
    .event-filter-btn { padding: 5px 11px; font-size: 0.68rem; }
    .event-card-image { height: 160px; }
    .event-card-content { padding: 1rem; }
    .event-card h3 { font-size: 0.92rem; }
    .event-card p { font-size: 0.75rem; -webkit-line-clamp: 3; }
    .event-highlight { font-size: 0.66rem; padding: 4px 10px; }
    .event-btn, .event-video-btn { font-size: 0.72rem; padding: 9px 14px; }

    .event-video-modal-header h3 { font-size: 0.92rem; padding-right: 2.2rem; }
    .event-video-modal-header p { font-size: 0.66rem; gap: 0.5rem; }
    .event-video-modal-year { font-size: 0.66rem; padding: 3px 10px; }
    .event-video-modal-desc { font-size: 0.76rem; }
    .event-video-action-btn { padding: 10px 14px; font-size: 0.72rem; }

    .modal-content { padding: 1.5rem 1rem; border-radius: 20px; }
    #modalTitle { font-size: 0.95rem; }
    #modalDetail { font-size: 0.78rem; }
    .modal-icon { font-size: 2rem; }
    .close-modal { font-size: 1.5rem; width: 34px; height: 34px; }

    .footer-brand h3 { font-size: 1rem; }
    .footer-links { gap: 0.7rem; }
    .footer-links a { font-size: 0.72rem; }
}