/* ========================================
   BUNII FAN PAGE - Premium Design
   ======================================== */

:root {
    --bg-primary: #050505;
    --bg-secondary: #0a0a0a;
    --bg-elevated: #111111;
    --bg-card: rgba(15, 15, 15, 0.8);
    
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --text-muted: #555555;
    
    --accent: #e63946;
    --accent-dim: rgba(230, 57, 70, 0.15);
    --accent-glow: rgba(230, 57, 70, 0.4);
    
    --spotify: #1db954;
    --online: #22c55e;
    --idle: #f59e0b;
    --dnd: #e63946;
    --offline: #6b7280;
    
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    
    --font-main: 'Outfit', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

/* Disable text selection */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html {
    scroll-behavior: smooth;
}

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

/* Custom Cursor */
.cursor, .cursor-follower {
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: difference;
}

.cursor {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor-follower {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease-out;
}

.cursor.hover {
    transform: translate(-50%, -50%) scale(0.5);
}

.cursor-follower.hover {
    width: 48px;
    height: 48px;
    border-color: var(--accent);
    background: var(--accent-dim);
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Particles */
.particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 15s infinite ease-in-out;
}

@keyframes float-particle {
    0%, 100% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(1);
    }
}

/* ========================================
   LOADER
   ======================================== */
.loader-screen {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

.loader-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.logo-letter {
    font-size: 5rem;
    font-weight: 200;
    letter-spacing: 0.05em;
    opacity: 0;
    transform: translateY(40px) rotateX(-90deg);
    animation: letter-reveal 0.8s var(--ease-out) forwards;
    animation-delay: calc(var(--i) * 0.1s);
}

.logo-letter.accent {
    color: var(--accent);
}

@keyframes letter-reveal {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.loader-bar {
    width: 180px;
    height: 2px;
    background: var(--bg-elevated);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--accent), #ff6b7a);
    border-radius: 2px;
    animation: loader-fill 2s var(--ease-out) 0.5s forwards;
}

@keyframes loader-fill {
    to { width: 100%; }
}

.loader-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0;
    animation: fade-in 0.5s ease 0.8s forwards;
}

@keyframes fade-in {
    to { opacity: 1; }
}

/* ========================================
   VIDEO BACKGROUND
   ======================================== */
.video-background {
    position: fixed;
    inset: 0;
    z-index: -2;
    opacity: 0;
    animation: bg-fade 2s ease 2.2s forwards;
}

@keyframes bg-fade {
    to { opacity: 1; }
}

#background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.15) saturate(0.6);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at top, transparent 0%, var(--bg-primary) 75%),
        radial-gradient(ellipse at bottom, transparent 0%, var(--bg-primary) 75%),
        linear-gradient(180deg, var(--bg-primary) 0%, transparent 20%, transparent 80%, var(--bg-primary) 100%);
}

/* ========================================
   LIVE STATUS PANEL
   ======================================== */
.live-status-trigger {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    opacity: 0;
    animation: slide-in-right 0.6s var(--ease-out) 2.8s forwards;
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.trigger-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    position: relative;
}

.trigger-btn::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 13px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255,255,255,0.1), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.trigger-btn:hover {
    background: var(--bg-elevated);
    border-color: var(--accent);
    transform: translateX(-4px);
    box-shadow: 0 0 30px var(--accent-glow);
}

.trigger-icon {
    position: relative;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.trigger-btn:hover .trigger-icon {
    color: var(--text-primary);
}

.status-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--offline);
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.trigger-text {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transition: color 0.3s ease;
}

.trigger-btn:hover .trigger-text {
    color: var(--accent);
}

/* Panel */
.live-status-panel {
    position: absolute;
    right: calc(100% + 16px);
    top: 50%;
    transform: translateY(-50%) scale(0.95);
    transform-origin: right center;
    width: 340px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s var(--ease-out);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.live-status-panel.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(-50%) scale(1);
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-elevated);
}

.panel-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent-glow);
    animation: pulse-dot 2s ease infinite;
}

.panel-close {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.panel-close:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.panel-content {
    padding: 16px;
    max-height: 400px;
    overflow-y: auto;
    transition: opacity 0.3s ease;
}

.panel-content::-webkit-scrollbar {
    width: 4px;
}

.panel-content::-webkit-scrollbar-thumb {
    background: var(--accent-dim);
    border-radius: 2px;
}

.panel-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-top: 1px solid var(--border);
    background: var(--bg-elevated);
}

.refresh-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.refresh-indicator svg {
    animation: rotate 4s linear infinite;
}

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

.last-update {
    font-size: 0.65rem;
    font-family: var(--font-mono);
    color: var(--text-muted);
}

/* Loading State */
.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    color: var(--text-muted);
}

.loading-spinner {
    width: 32px;
    height: 32px;
    border: 2px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 16px;
}

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

.loading-state p {
    font-size: 0.8rem;
}

/* User Card */
.user-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
}

.user-avatar {
    position: relative;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.user-avatar-status {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 3px solid var(--bg-card);
}

.user-info {
    flex: 1;
    min-width: 0;
}

.user-displayname {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.user-username {
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: var(--text-muted);
}

.user-status-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 6px;
    padding-left: 16px;
    border-left: 2px solid var(--accent-dim);
}

/* Activity Cards */
.activity-card {
    padding: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.activity-card:hover {
    border-color: var(--border-hover);
    transform: translateX(4px);
}

.activity-card:last-child {
    margin-bottom: 0;
}

.activity-card.spotify {
    border-color: rgba(29, 185, 84, 0.2);
    background: linear-gradient(135deg, rgba(29, 185, 84, 0.08), transparent);
}

.activity-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.activity-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.activity-type {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.activity-type.spotify {
    color: var(--spotify);
}

.activity-body {
    display: flex;
    gap: 12px;
}

.activity-image {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-elevated);
}

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

.activity-details {
    flex: 1;
    min-width: 0;
}

.activity-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.activity-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.activity-time {
    font-size: 0.7rem;
    font-family: var(--font-mono);
    color: var(--text-muted);
    margin-top: 6px;
}

/* Spotify Progress Bar */
.spotify-progress {
    margin-top: 10px;
}

.progress-bar {
    height: 3px;
    background: var(--bg-elevated);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 6px;
}

.progress-fill {
    height: 100%;
    background: var(--spotify);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.progress-times {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    font-family: var(--font-mono);
    color: var(--text-muted);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 30px;
    color: var(--text-muted);
}

.empty-state svg {
    margin-bottom: 12px;
    opacity: 0.5;
}

.empty-state p {
    font-size: 0.85rem;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    opacity: 0;
    animation: fade-down 0.6s var(--ease-out) 2.6s forwards;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 6px;
}

.brand-text {
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.1em;
}

.brand-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

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

/* ========================================
   CONTAINER & HERO
   ======================================== */
.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    opacity: 0;
    animation: fade-up 1s var(--ease-out) 2.4s forwards;
}

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

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 120px 0;
}

.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(8rem, 25vw, 20rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

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

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid rgba(230, 57, 70, 0.3);
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 200;
    line-height: 0.9;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.title-line {
    display: inline;
}

.title-line.accent {
    color: var(--accent);
    text-shadow: 0 0 60px var(--accent-glow);
    margin-left: -0.05em;
    animation: accent-glow 2s ease-in-out infinite;
    position: relative;
}

.title-line.accent::after {
    content: 'ii';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    filter: blur(20px);
    opacity: 0;
    animation: accent-blur 2s ease-in-out infinite;
}

@keyframes accent-glow {
    0%, 100% {
        text-shadow: 0 0 60px var(--accent-glow);
    }
    50% {
        text-shadow: 0 0 80px var(--accent-glow), 0 0 120px rgba(230, 57, 70, 0.3);
    }
}

@keyframes accent-blur {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 0.15em;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 4px;
    text-transform: capitalize;
}

.stat-label {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: var(--border);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--text-muted), transparent);
    animation: scroll-pulse 2s ease infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; height: 60px; }
    50% { opacity: 1; height: 80px; }
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: 120px 40px;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out);
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-header {
    margin-bottom: 48px;
}

.section-number {
    display: block;
    font-size: 0.7rem;
    font-family: var(--font-mono);
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.section-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Music Grid */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.music-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.4s var(--ease-out);
}

.music-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.placeholder-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 200px;
}

.card-icon {
    color: var(--text-muted);
    margin-bottom: 16px;
    opacity: 0.5;
}

.card-title {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 8px;
}

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

/* Streaming Links */
.streaming-links {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.stream-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s var(--ease-out);
}

.stream-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stream-btn.spotify:hover {
    background: #1db954;
    border-color: #1db954;
}

.stream-btn.apple:hover {
    background: #fc3c44;
    border-color: #fc3c44;
}

/* Music Subsections */
.music-subsection {
    margin-bottom: 48px;
}

.music-subsection:last-child {
    margin-bottom: 0;
}

.subsection-title {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

/* Songs List */
.songs-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.song-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.song-item:hover {
    background: var(--bg-card);
    border-color: var(--border);
    transform: translateX(8px);
}

.song-rank {
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: var(--text-muted);
    width: 24px;
}

.song-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.song-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.song-streams {
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: var(--text-secondary);
}

/* Albums Grid */
.albums-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

@media (max-width: 1100px) {
    .albums-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .albums-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.album-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 0.4s var(--ease-out);
    position: relative;
}

.album-card:hover {
    transform: translateY(-8px);
}

.album-cover {
    aspect-ratio: 1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.album-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.album-initial {
    font-size: 3rem;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.album-card:hover .album-cover {
    border-color: var(--accent);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    transform: scale(1.02);
}

.album-card:hover .album-initial {
    color: rgba(255, 255, 255, 0.25);
}

/* Album Cover Gradients */
.gradient-1 {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.gradient-2 {
    background: linear-gradient(135deg, #2d132c 0%, #801336 50%, #c72c41 100%);
}

.gradient-3 {
    background: linear-gradient(135deg, #1b1b2f 0%, #162447 50%, #1f4068 100%);
}

.gradient-4 {
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 50%, #2d2d2d 100%);
}

.gradient-5 {
    background: linear-gradient(135deg, #2c003e 0%, #512b58 50%, #8174a0 100%);
}

.gradient-6 {
    background: linear-gradient(135deg, #1c1c1c 0%, #383838 50%, #4a4a4a 100%);
}

.album-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    opacity: 0.5;
}

.album-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.album-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.album-year {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.album-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 8px;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    border-radius: 4px;
    z-index: 1;
}

.album-badge.new {
    background: var(--accent);
    color: white;
}

/* About Section */
.about-content {
    max-width: 600px;
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: translateY(-4px);
}

.social-link.discord {
    width: auto;
    gap: 8px;
    padding: 0 20px;
}

.social-link.discord span {
    font-size: 0.8rem;
    font-weight: 500;
}

.social-link.discord:hover {
    background: #5865F2;
    border-color: #5865F2;
}

.social-link.spotify:hover {
    background: #1db954;
    border-color: #1db954;
}

.social-link.apple:hover {
    background: #fc3c44;
    border-color: #fc3c44;
}

.social-link.soundcloud:hover {
    background: #ff5500;
    border-color: #ff5500;
}

/* Links Groups */
.links-group {
    margin-bottom: 24px;
}

.links-group:last-child {
    margin-bottom: 0;
}

.links-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
}

/* About Scroll Effect */
.about-scroll-container {
    max-width: 700px;
    margin-bottom: 48px;
}

.about-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-paragraph {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-secondary);
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s var(--ease-out);
    transition-delay: calc(var(--delay) * 0.15s);
}

.about-paragraph.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-paragraph:hover {
    border-color: var(--accent);
    background: var(--bg-elevated);
    color: var(--text-primary);
    transform: translateX(8px);
}

.paragraph-marker {
    font-size: 0.7rem;
    font-family: var(--font-mono);
    color: var(--accent);
    flex-shrink: 0;
    padding-top: 4px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 60px 40px 30px;
    border-top: 1px solid var(--border);
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer .container {
    opacity: 1;
    animation: none;
    padding: 0;
    max-width: none;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
}

.footer-tagline {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.footer-credits {
    text-align: right;
}

.footer-credits p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.heart {
    color: var(--accent);
    animation: heartbeat 1s ease infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.credit-link {
    font-size: 0.9rem;
    color: var(--text-primary);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.credit-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s var(--ease-out);
}

.credit-link:hover {
    color: var(--accent);
}

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

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

.copyright {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    
    .cursor, .cursor-follower {
        display: none;
    }
    
    .nav {
        padding: 16px 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: clamp(3rem, 15vw, 6rem);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .live-status-trigger {
        right: 12px;
    }
    
    .live-status-panel {
        width: calc(100vw - 100px);
        max-width: 340px;
    }
    
    .section {
        padding: 80px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .footer-credits {
        text-align: center;
    }
}

/* ========================================
   UTILITIES
   ======================================== */
.status-online { color: var(--online); }
.status-idle { color: var(--idle); }
.status-dnd { color: var(--dnd); }
.status-offline { color: var(--offline); }

.bg-online { background: var(--online); }
.bg-idle { background: var(--idle); }
.bg-dnd { background: var(--dnd); }
.bg-offline { background: var(--offline); }

/* ========================================
   SONG NOTIFICATION
   ======================================== */
.song-notification {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(-120px);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 100px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    backdrop-filter: blur(20px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out);
}

.song-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.notification-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--accent-dim);
    border-radius: 50%;
    color: var(--accent);
    flex-shrink: 0;
}

.notification-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.notification-label {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.notification-song {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.notification-wave {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 20px;
    margin-left: 8px;
}

.notification-wave span {
    width: 3px;
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
    animation: wave 1s ease-in-out infinite;
}

.notification-wave span:nth-child(1) { animation-delay: 0s; }
.notification-wave span:nth-child(2) { animation-delay: 0.15s; }
.notification-wave span:nth-child(3) { animation-delay: 0.3s; }
.notification-wave span:nth-child(4) { animation-delay: 0.45s; }

@keyframes wave {
    0%, 100% {
        height: 4px;
    }
    50% {
        height: 20px;
    }
}

/* Click hint for autoplay */
.click-to-play-hint {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
    cursor: pointer;
}

.click-to-play-hint.show {
    opacity: 1;
    visibility: visible;
}

.click-to-play-hint:hover {
    background: var(--bg-elevated);
    border-color: var(--accent);
    color: var(--text-primary);
}
