/* ============================================
   GAMEMUS — Cyberpunk Neon Theme
   Inspired by: Tron, Blade Runner, Cyberpunk 2077
   ============================================ */

/* CSS Custom Properties */
:root {
    /* Neon Palette */
    --neon-cyan: #00f0ff;
    --neon-blue: #0088ff;
    --neon-pink: #ff00aa;
    --neon-purple: #aa00ff;
    --neon-green: #00ff88;
    --neon-yellow: #ffdd00;
    --neon-orange: #ff6600;

    /* Dark Theme */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #1a1a2e;
    --bg-elevated: #22223a;

    /* Text */
    --text-primary: #e0e0ff;
    --text-secondary: #8888aa;
    --text-muted: #555577;

    /* Borders */
    --border-color: rgba(0, 240, 255, 0.15);
    --border-glow: rgba(0, 240, 255, 0.3);

    /* Shadows */
    --shadow-cyan: 0 0 10px rgba(0, 240, 255, 0.3), 0 0 20px rgba(0, 240, 255, 0.1);
    --shadow-pink: 0 0 10px rgba(255, 0, 170, 0.3), 0 0 20px rgba(255, 0, 170, 0.1);

    /* Typography */
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --font-mono: 'Fira Code', monospace;

    /* Layout */
    --container-width: 1200px;
    --navbar-height: 70px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Cyber grid background */
.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: -1;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 1px;
}

a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--neon-pink);
    text-shadow: var(--shadow-pink);
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

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

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.logo-neon {
    color: var(--neon-cyan);
    text-shadow: var(--shadow-cyan);
}

.logo-accent {
    color: var(--neon-pink);
    text-shadow: var(--shadow-pink);
}

.nav-links {
    display: flex;
    gap: 30px;
    margin: 0 30px;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    box-shadow: var(--shadow-cyan);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-form {
    display: inline;
}

.lang-btn {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--neon-cyan);
    background: transparent;
    border: 1px solid var(--neon-cyan);
    padding: 6px 12px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: var(--neon-cyan);
    color: var(--bg-primary);
    box-shadow: var(--shadow-cyan);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-neon {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--neon-cyan);
    background: transparent;
    border: 1px solid var(--neon-cyan);
    padding: 12px 28px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.btn-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-neon:hover::before {
    left: 100%;
}

.btn-neon:hover {
    background: var(--neon-cyan);
    color: var(--bg-primary);
    box-shadow: var(--shadow-cyan);
    transform: translateY(-2px);
}

.btn-neon.btn-outline {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
}

.btn-neon.btn-outline:hover {
    background: var(--neon-cyan);
    color: var(--bg-primary);
    box-shadow: var(--shadow-cyan);
}

/* Music — Pink variant */
.btn-neon.btn-pink {
    border-color: var(--neon-pink);
    color: var(--neon-pink);
}

.btn-neon.btn-pink:hover {
    background: var(--neon-pink);
    color: var(--bg-primary);
    box-shadow: var(--shadow-pink);
}

/* Apps — Green variant */
.btn-neon.btn-green {
    border-color: var(--neon-green);
    color: var(--neon-green);
}

.btn-neon.btn-green:hover {
    background: var(--neon-green);
    color: var(--bg-primary);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3), 0 0 20px rgba(0, 255, 136, 0.1);
}

/* Blog — Purple variant */
.btn-neon.btn-purple {
    border-color: var(--neon-purple);
    color: var(--neon-purple);
}

.btn-neon.btn-purple:hover {
    background: var(--neon-purple);
    color: var(--bg-primary);
    box-shadow: 0 0 10px rgba(170, 0, 255, 0.3), 0 0 20px rgba(170, 0, 255, 0.1);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 0.9rem;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.75rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: var(--navbar-height);
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 12px;
    margin-bottom: 20px;
    position: relative;
}

/* Glitch effect */
.glitch {
    position: relative;
    color: var(--neon-cyan);
    text-shadow:
        0 0 10px rgba(0, 240, 255, 0.5),
        0 0 20px rgba(0, 240, 255, 0.3),
        0 0 40px rgba(0, 240, 255, 0.1);
    animation: glitch 3s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.glitch::before {
    color: var(--neon-pink);
    animation: glitch-shift 3s infinite;
    clip-path: inset(20% 0 60% 0);
}

.glitch::after {
    color: var(--neon-cyan);
    animation: glitch-shift 3s infinite reverse;
    clip-path: inset(60% 0 20% 0);
}

@keyframes glitch {
    0%, 90%, 100% { opacity: 1; }
    92% { opacity: 0; transform: translate(-3px, 2px); }
    94% { opacity: 1; transform: translate(3px, -2px); }
    96% { opacity: 0; transform: translate(-2px, -3px); }
}

@keyframes glitch-shift {
    0%, 90%, 100% { opacity: 0; }
    92% { opacity: 0.7; transform: translate(4px, 0); }
    94% { opacity: 0; transform: translate(-4px, 0); }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: 2rem;
    color: var(--neon-cyan);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    text-shadow: var(--shadow-cyan);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--neon-cyan);
    margin: 15px auto 0;
    box-shadow: var(--shadow-cyan);
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features {
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.feature-card:hover::before {
    transform: translateX(100%);
}

.feature-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.2rem;
    color: var(--neon-cyan);
    margin-bottom: 15px;
}

.feature-text {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
    background: var(--bg-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 40px 20px;
    border: 1px solid var(--border-color);
    position: relative;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--neon-pink);
    text-shadow: var(--shadow-pink);
    margin-bottom: 10px;
}

.stat-label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================
   LATEST CONTENT / PLACEHOLDER
   ============================================ */
.latest {
    background: var(--bg-secondary);
}

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

.content-placeholder {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.content-placeholder p {
    color: var(--text-muted);
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.placeholder-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(0, 240, 255, 0.03),
        transparent,
        rgba(255, 0, 170, 0.03),
        transparent
    );
    animation: rotate-glow 6s linear infinite;
}

@keyframes rotate-glow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 1.1rem;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

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

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

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================
   CARD IMAGES & BADGES
   ============================================ */
.card-link {
    text-decoration: none;
    display: block;
}

.feature-card.game-card,
.feature-card.app-card,
.feature-card.blog-card {
    padding: 0;
    text-align: left;
    border-radius: 8px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    background: var(--bg-elevated);
}

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

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

.card-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image-placeholder .feature-icon {
    font-size: 4rem;
    margin-bottom: 0;
}

.card-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 20px auto;
    display: block;
}

.card-body {
    padding: 20px;
}

.card-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--neon-cyan);
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 3px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.platform-badge {
    color: var(--neon-pink);
    border-color: rgba(255, 0, 170, 0.3);
    background: rgba(255, 0, 170, 0.1);
}

.category-badge {
    color: var(--neon-green);
    border-color: rgba(0, 255, 136, 0.3);
    background: rgba(0, 255, 136, 0.1);
}

.card-meta {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.page-info {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
    padding-top: 120px;
    padding-bottom: 40px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.page-hero .section-title {
    margin-bottom: 15px;
}

.page-hero .section-title::after {
    display: none;
}

/* ============================================
   EMPTY STATE
   ============================================ */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    border: 1px dashed var(--border-color);
    border-radius: 8px;
}

.empty-state p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* ============================================
   DETAIL PAGES
   ============================================ */
.detail-page {
    padding-top: 120px;
}

.btn-back {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--neon-cyan);
    margin-bottom: 30px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.btn-back:hover {
    opacity: 1;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.detail-image img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.detail-placeholder {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.detail-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--neon-cyan);
    margin-bottom: 15px;
    text-shadow: var(--shadow-cyan);
}

.detail-meta {
    margin: 15px 0;
}

.detail-meta p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.detail-meta strong {
    color: var(--text-primary);
}

.detail-description {
    margin: 20px 0;
    line-height: 1.8;
}

.detail-description p {
    color: var(--text-secondary);
}

.music-author-detail {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.detail-player {
    margin: 20px 0;
}

/* ============================================
   MUSIC GRID (list page)
   ============================================ */
.music-grid {
    display: grid;
    gap: 25px;
}

.music-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    display: grid;
    grid-template-columns: 100px 1fr 300px auto;
    gap: 20px;
    align-items: center;
    transition: border-color 0.3s;
}

.music-card:hover {
    border-color: var(--border-glow);
}

.music-cover {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 6px;
}

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

.music-cover-placeholder {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: var(--bg-elevated);
    border-radius: 6px;
}

.music-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--neon-cyan);
    display: block;
    margin-bottom: 5px;
}

.music-title:hover {
    text-shadow: var(--shadow-cyan);
}

.music-author {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.music-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Music genre & tag badges */
.music-genres,
.music-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 6px;
}

.music-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.genre-badge {
    color: var(--neon-green);
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.tag-badge {
    color: var(--neon-purple);
    background: rgba(170, 0, 255, 0.1);
    border: 1px solid rgba(170, 0, 255, 0.3);
}

.detail-genres,
.detail-tags {
    margin-bottom: 10px;
}

.detail-genres strong,
.detail-tags strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.music-player {
    min-width: 280px;
}

.music-actions {
    text-align: center;
}

/* ============================================
   BLOG GRID
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-meta-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.blog-date {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.blog-author {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.blog-author strong {
    color: var(--text-secondary);
}

/* ============================================
   ARTICLE DETAIL
   ============================================ */
.article-detail-page {
    padding-top: 120px;
}

.article-cover {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 30px;
}

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

.article-header {
    margin-bottom: 40px;
}

.article-meta-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.article-date {
    font-family: var(--font-mono);
    color: var(--text-muted);
}

.article-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--neon-cyan);
    margin-bottom: 15px;
    text-shadow: var(--shadow-cyan);
}

.article-author-info {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.article-author-info strong {
    color: var(--text-primary);
}

.article-content {
    line-height: 1.9;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
}

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

/* ============================================
   SCREENSHOTS (app detail)
   ============================================ */
.screenshots-section {
    margin-top: 50px;
}

.screenshots-section h2 {
    font-family: var(--font-display);
    color: var(--neon-cyan);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.screenshot-item {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes pulse-cyan {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

/* Scanline overlay (subtle CRT effect) */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(0, 240, 255, 0.03);
    pointer-events: none;
    z-index: 9999;
    animation: scanline 8s linear infinite;
}

/* ============================================
   LOGIN PAGE
   ============================================ */
.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--navbar-height);
    position: relative;
}

.login-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.login-container {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-title {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 8px;
    margin-bottom: 10px;
}

.login-subtitle {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 4px;
}

.login-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    position: relative;
}

.login-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--neon-pink), transparent);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.form-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 14px;
    font-size: 1.2rem;
    z-index: 2;
    pointer-events: none;
}

.form-input {
    width: 100%;
    padding: 14px 14px 14px 44px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.form-input:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.2);
}

.form-input::placeholder {
    color: var(--text-muted);
    font-family: var(--font-body);
}

.input-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
    z-index: 0;
}

.form-input:focus ~ .input-glow {
    opacity: 1;
}

.login-error {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 0, 80, 0.1);
    border: 1px solid rgba(255, 0, 80, 0.3);
    padding: 12px 16px;
    margin-bottom: 25px;
    border-radius: 4px;
}

.error-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.login-error p {
    color: var(--neon-pink);
    font-size: 0.9rem;
    margin: 0;
}

.btn-login-submit {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    padding: 16px;
    font-size: 1rem;
}

.login-footer {
    text-align: center;
}

.form-help {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 4px;
    line-height: 1.4;
}

.form-help ul {
    margin: 4px 0 0 0;
    padding-left: 1.2rem;
    list-style-type: none;
}

.form-help li {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 2px;
}

.form-help li::before {
    content: "▸ ";
    color: var(--neon-cyan);
}

.login-footer {
    margin-top: 25px;
    position: relative;
}

.login-footer p {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-family: var(--font-mono);
    letter-spacing: 1px;
}

.login-scanline {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    margin-top: 15px;
    opacity: 0.3;
    animation: pulse-cyan 2s ease-in-out infinite;
}

/* ============================================
   WELCOME USER IN NAVBAR
   ============================================ */
.welcome-user {
    font-family: var(--font-display);
    font-size: 0.75rem;
    color: var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* ============================================
   PROFILE PAGE
   ============================================ */
.profile-page {
    padding-top: calc(var(--navbar-height) + 40px);
    padding-bottom: 60px;
    min-height: 100vh;
}

.profile-page .container {
    max-width: 900px;
}

.profile-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

/* Sidebar */
.profile-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.profile-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
}

.profile-avatar-section {
    text-align: center;
    margin-bottom: 25px;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon-cyan);
    background: var(--bg-elevated);
    text-shadow: var(--shadow-cyan);
}

.profile-username {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--neon-cyan);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.profile-email {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: var(--font-mono);
}

.profile-info {
    margin-bottom: 20px;
}

.profile-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.profile-info-label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-info-value {
    font-size: 0.85rem;
    color: var(--text-primary);
    font-family: var(--font-mono);
}

.status-active {
    color: var(--neon-green);
}

.status-inactive {
    color: var(--text-muted);
}

/* Main */
.profile-main {
    min-height: 300px;
}

.profile-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    margin-bottom: 25px;
    position: relative;
}

.profile-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
}

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

.profile-section-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--neon-cyan);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.notification-count {
    background: var(--neon-pink);
    color: var(--bg-primary);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
}

/* Notifications */
.notifications-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification-item {
    display: flex;
    gap: 12px;
    padding: 15px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: border-color 0.3s;
}

.notification-item:hover {
    border-color: var(--border-glow);
}

.notification-unread {
    border-left: 3px solid var(--neon-cyan);
}

.notification-indicator {
    width: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    padding-top: 4px;
}

.unread-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(0, 240, 255, 0.6);
    animation: pulse-cyan 2s ease-in-out infinite;
}

.notification-body {
    flex: 1;
}

.notification-text {
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 5px;
    line-height: 1.4;
}

.notification-date {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-family: var(--font-mono);
}

/* Staff Badge */
.staff-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 10px 18px;
    border-radius: 4px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--neon-cyan);
    letter-spacing: 1px;
}

.staff-superuser {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
    color: var(--neon-yellow);
}

.staff-icon {
    font-size: 1.2rem;
}

/* ============================================
   FORMS (Edit Profile, Password Change)
   ============================================ */
.form-page-container {
    max-width: 580px;
    margin: 0 auto;
}

.form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    position: relative;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink), transparent);
}

.form-card-header {
    margin-bottom: 35px;
}

.form-card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--neon-cyan);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Neon Form */
.neon-form .form-group {
    margin-bottom: 25px;
}

.neon-form .form-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.neon-form .form-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.neon-form .input-icon {
    position: absolute;
    left: 14px;
    font-size: 1.2rem;
    z-index: 2;
    pointer-events: none;
}

.neon-form .form-input {
    width: 100%;
    padding: 14px 14px 14px 44px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.neon-form .form-input:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.2);
}

.neon-form .form-input::placeholder {
    color: var(--text-muted);
    font-family: var(--font-body);
}

.neon-form .input-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
    z-index: 0;
}

.neon-form .form-input:focus ~ .input-glow {
    opacity: 1;
}

/* File input */
.file-input-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

.current-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--border-color);
    flex-shrink: 0;
}

.current-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.file-input-wrapper {
    position: relative;
}

.file-input-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-input-btn {
    pointer-events: none;
}

/* Checkbox */
.form-group-checkbox {
    display: flex;
    align-items: center;
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--neon-cyan);
    cursor: pointer;
}

/* Field errors */
.field-errors {
    margin-top: 6px;
}

.field-errors span {
    display: block;
    color: var(--neon-pink);
    font-size: 0.8rem;
    font-family: var(--font-mono);
}

/* Help text */
.help-text {
    margin-top: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
    line-height: 1.4;
}

.help-text ul {
    list-style: none;
    padding: 0;
}

.help-text li {
    padding: 2px 0;
}

/* Form actions */
.form-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}

/* Messages */
.messages-container {
    margin-bottom: 25px;
}

.message-item {
    padding: 12px 20px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    border: 1px solid;
    margin-bottom: 8px;
}

.message-success {
    color: var(--neon-green);
    background: rgba(0, 255, 136, 0.08);
    border-color: rgba(0, 255, 136, 0.3);
}

.message-error {
    color: var(--neon-pink);
    background: rgba(255, 0, 170, 0.08);
    border-color: rgba(255, 0, 170, 0.3);
}

.message-warning {
    color: var(--neon-yellow);
    background: rgba(255, 221, 0, 0.08);
    border-color: rgba(255, 221, 0, 0.3);
}

.message-info {
    color: var(--neon-cyan);
    background: rgba(0, 240, 255, 0.08);
    border-color: rgba(0, 240, 255, 0.3);
}

/* ============================================
   SEARCH
   ============================================ */

/* Navbar search */
.search-form {
    display: flex;
    align-items: center;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 160px;
    padding: 8px 36px 8px 14px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    transition: all 0.3s ease;
    border-radius: 0;
}

.search-input:focus {
    width: 220px;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.2);
}

.search-input::placeholder {
    color: var(--text-muted);
    font-family: var(--font-body);
}

.search-btn {
    position: absolute;
    right: 8px;
    background: none;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 4px;
    z-index: 2;
    line-height: 1;
}

.search-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
    z-index: 0;
}

.search-input:focus ~ .search-glow {
    opacity: 1;
}

/* Search hero (results page) */
.search-hero {
    padding-top: 120px;
    padding-bottom: 50px;
}

.search-hero-form {
    max-width: 700px;
    margin: 0 auto;
}

.search-hero-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-hero-input {
    width: 100%;
    padding: 18px 140px 18px 22px;
    background: var(--bg-primary);
    border: 1px solid var(--border-glow);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
}

.search-hero-input:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.25);
}

.search-hero-input::placeholder {
    color: var(--text-muted);
    font-family: var(--font-body);
}

.search-hero-btn {
    position: absolute;
    right: 6px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--bg-primary);
    background: var(--neon-cyan);
    border: none;
    padding: 10px 22px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    z-index: 2;
}

.search-hero-btn:hover {
    background: var(--neon-pink);
    box-shadow: var(--shadow-pink);
}

.search-hero-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
    z-index: 0;
}

.search-hero-input:focus ~ .search-hero-glow {
    opacity: 1;
}

/* Search meta bar */
.search-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.search-query-label {
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.search-query {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--neon-cyan);
    text-shadow: var(--shadow-cyan);
    letter-spacing: 2px;
}

.search-total {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-left: auto;
}

/* Filter buttons */
.search-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
}

.filter-btn {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 8px 18px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
}

.filter-btn.active {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.15);
}

/* Search results */
.search-results {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.search-result-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--neon-cyan);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-result-item:hover {
    border-color: var(--border-glow);
    transform: translateX(5px);
}

.search-result-item:hover::before {
    opacity: 1;
}

.search-result-icon {
    font-size: 2rem;
    width: 50px;
    text-align: center;
    flex-shrink: 0;
}

.search-result-body {
    flex: 1;
    min-width: 0;
}

.search-result-type {
    font-family: var(--font-display);
    font-size: 0.65rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    opacity: 0.7;
}

.search-result-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.search-result-item:hover .search-result-title {
    color: var(--neon-cyan);
}

.search-result-subtitle {
    font-size: 0.9rem;
    color: var(--neon-pink);
    margin-bottom: 4px;
}

.search-result-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-result-arrow {
    font-size: 1.3rem;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: all 0.3s;
}

.search-result-item:hover .search-result-arrow {
    color: var(--neon-cyan);
    transform: translateX(5px);
}

/* ============================================
   CUSTOM NEON AUDIO PLAYER
   ============================================ */

/* Container */
.neon-player {
    background: var(--bg-primary);
    border: 1px solid var(--border-glow);
    padding: 16px 20px;
    position: relative;
    overflow: hidden;
    min-width: 280px;
}

.neon-player::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
}

/* Track info inside player */
.neon-player-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.neon-player-title {
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: var(--neon-cyan);
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.neon-player-author {
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.8rem;
    white-space: nowrap;
}

/* Controls row */
.neon-player-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Play/Pause button */
.neon-play-btn {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-family: var(--font-display);
    position: relative;
}

.neon-play-btn:hover {
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.neon-play-btn.playing {
    border-color: var(--neon-pink);
    color: var(--neon-pink);
}

/* Progress bar */
.neon-progress-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.neon-progress-bar {
    flex: 1;
    height: 4px;
    background: var(--bg-elevated);
    cursor: pointer;
    position: relative;
    min-width: 60px;
}

.neon-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
    box-shadow: 0 0 6px rgba(0, 240, 255, 0.3);
    transition: width 0.1s linear;
    position: relative;
}

.neon-progress-fill::after {
    content: '';
    position: absolute;
    right: -4px;
    top: -3px;
    width: 10px;
    height: 10px;
    background: var(--neon-cyan);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.6);
}

.neon-progress-bar:hover .neon-progress-fill::after {
    opacity: 1;
}

/* Time display */
.neon-time {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
    min-width: 36px;
    text-align: center;
}

.neon-time.current {
    color: var(--neon-cyan);
    min-width: 32px;
}

/* Volume */
.neon-volume-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.neon-volume-icon {
    font-size: 0.9rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.3s;
}

.neon-volume-icon:hover {
    color: var(--neon-cyan);
}

.neon-volume-bar {
    width: 50px;
    height: 3px;
    background: var(--bg-elevated);
    cursor: pointer;
    position: relative;
}

.neon-volume-fill {
    height: 100%;
    width: 80%;
    background: var(--neon-cyan);
    box-shadow: 0 0 4px rgba(0, 240, 255, 0.3);
}

/* Player in list (compact) */
.neon-player-sm .neon-player-info {
    display: none;
}

.neon-player-sm .neon-player-controls {
    gap: 8px;
}

.neon-player-sm .neon-play-btn {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
}

.neon-player-sm .neon-volume-wrapper {
    display: none;
}

.neon-player-sm .neon-progress-wrapper {
    gap: 6px;
}

.neon-player-sm .neon-time {
    font-size: 0.7rem;
    min-width: 30px;
}

/* Large player (detail page) */
.neon-player-lg {
    max-width: 500px;
}

.neon-player-lg .neon-play-btn {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
}

.neon-player-lg .neon-progress-bar {
    height: 6px;
}

.neon-player-lg .neon-progress-fill::after {
    width: 14px;
    height: 14px;
    right: -7px;
    top: -4px;
}

/* Audio element is hidden, used as engine */
.neon-player audio {
    display: none !important;
}

/* ============================================
   MATH CAPTCHA (Contact page)
   ============================================ */
.captcha-box {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 4px;
}

.captcha-question {
    display: block;
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--neon-cyan);
    text-align: center;
    margin-bottom: 15px;
    text-shadow: var(--shadow-cyan);
    letter-spacing: 3px;
}

/* ============================================
   HAMBURGER MENU
   ============================================ */

/* Hamburger button (hidden on desktop) */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--neon-cyan);
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    position: relative;
    z-index: 1101;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.hamburger:hover {
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.2);
}

.hamburger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--neon-cyan);
    transition: all 0.3s ease;
    border-radius: 1px;
}

/* Hamburger open state (X animation) */
.hamburger.open .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1050;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
}

/* Mobile menu panel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: var(--bg-primary);
    border-left: 1px solid var(--border-glow);
    z-index: 1100;
    padding: 100px 25px 30px;
    overflow-y: auto;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--neon-cyan), var(--neon-pink), transparent);
    opacity: 0.6;
}

.mobile-menu.active {
    right: 0;
}

/* Mobile nav links */
.mobile-nav-link {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 16px 20px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    width: calc(100% - 40px);
    height: 1px;
    background: var(--border-color);
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
    color: var(--neon-cyan);
    border-color: var(--border-glow);
    background: rgba(0, 240, 255, 0.05);
    text-shadow: var(--shadow-cyan);
}

/* Mobile auth section */
.mobile-auth {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-auth .btn-neon {
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 0.85rem;
}

.mobile-welcome {
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: var(--neon-green);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

/* Mobile search inside menu */
.mobile-search-form {
    display: none;
    margin-bottom: 20px;
}

.mobile-search-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    transition: border-color 0.3s;
}

.mobile-search-wrapper:focus-within {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.15);
}

.mobile-search-input {
    flex: 1;
    padding: 12px 14px;
    background: var(--bg-primary);
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
}

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

.mobile-search-submit {
    padding: 12px 16px;
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--neon-cyan);
}

/* Mobile language button */
.mobile-lang {
    display: none;
    margin: 8px 0;
}

.mobile-lang .lang-btn {
    width: 100%;
    text-align: center;
    padding: 12px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .music-card {
        grid-template-columns: 80px 1fr;
        grid-template-rows: auto auto auto;
    }
    .music-cover {
        width: 80px;
        height: 80px;
    }
    .music-cover-placeholder {
        width: 80px;
        height: 80px;
    }
    .music-player {
        grid-column: 1 / -1;
        min-width: unset;
    }
    .music-actions {
        grid-column: 1 / -1;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 6px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .nav-links {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-search-form {
        display: block;
    }

    .mobile-lang {
        display: block;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .detail-title {
        font-size: 1.6rem;
    }

    .music-card {
        grid-template-columns: 60px 1fr;
        padding: 15px;
        gap: 12px;
    }
    .music-cover {
        width: 60px;
        height: 60px;
    }
    .music-cover-placeholder {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    .music-title {
        font-size: 1rem;
    }
    .music-player {
        min-width: unset;
    }

    .article-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
}


/* SCREENSHOTS GALLERY + LIGHTBOX */
.screenshots-section { margin-top: 50px; padding-top: 30px; border-top: 1px solid var(--border-color); }
.screenshots-section h2 { font-family: var(--font-heading); font-size: 1.3rem; color: var(--neon-cyan); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; }
.screenshots-thumbs { display: flex; flex-wrap: wrap; gap: 15px; }
.screenshot-thumb { width: 180px; height: 320px; border-radius: 8px; overflow: hidden; border: 2px solid var(--border-color); cursor: pointer; transition: all 0.3s ease; flex-shrink: 0; }
.screenshot-thumb:hover { border-color: var(--neon-cyan); box-shadow: 0 0 20px rgba(0, 240, 255, 0.3); transform: translateY(-4px); }
.screenshot-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lightbox-overlay { display: none; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0, 0, 0, 0.92); z-index: 9999; justify-content: center; align-items: center; backdrop-filter: blur(5px); }
.lightbox-overlay.active { display: flex; }
.lightbox-content { position: relative; max-width: 90vw; max-height: 90vh; display: flex; flex-direction: column; align-items: center; }
.lightbox-close { position: absolute; top: -40px; right: 0; background: none; border: none; color: var(--neon-cyan); font-size: 2.5rem; cursor: pointer; padding: 5px 15px; transition: all 0.3s; z-index: 10; line-height: 1; }
.lightbox-close:hover { color: #fff; text-shadow: 0 0 20px var(--neon-cyan); }
.lightbox-image-wrapper { position: relative; display: flex; align-items: center; justify-content: center; max-width: 100%; max-height: 80vh; }
.lightbox-image-wrapper img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 8px; border: 1px solid rgba(0, 240, 255, 0.2); box-shadow: 0 0 40px rgba(0, 240, 255, 0.15); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0, 0, 0, 0.6); border: 2px solid var(--neon-cyan); color: var(--neon-cyan); font-size: 1.8rem; cursor: pointer; padding: 12px 16px; border-radius: 50%; transition: all 0.3s; z-index: 5; line-height: 1; }
.lightbox-nav:hover { background: rgba(0, 240, 255, 0.2); box-shadow: 0 0 25px rgba(0, 240, 255, 0.5); color: #fff; }
.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }
.lightbox-counter { color: var(--text-secondary); font-family: var(--font-mono); font-size: 0.9rem; margin-top: 15px; letter-spacing: 2px; }
@media (max-width: 768px) { .screenshot-thumb { width: 140px; height: 250px; } .lightbox-prev { left: -50px; } .lightbox-next { right: -50px; } .lightbox-nav { font-size: 1.3rem; padding: 8px 12px; } .lightbox-close { font-size: 2rem; top: -35px; } }
@media (max-width: 480px) { .screenshots-thumbs { gap: 10px; } .screenshot-thumb { width: calc(50% - 5px); height: 200px; } .lightbox-prev { left: 5px; } .lightbox-next { right: 5px; } .lightbox-nav { font-size: 1rem; padding: 6px 10px; } }
