:root {
    --bg-deep: #010103;
    --lumina-glow: #00f2ff;
    --lumina-accent: #7000ff;
    --glass: rgba(8, 8, 12, 0.5);
    --border: rgba(255, 255, 255, 0.08);
    --font-main: 'Outfit', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

input, button, a, .core-btn, .about-button, .song-link {
    cursor: pointer;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    background: radial-gradient(circle at 50% 50%, #050510 0%, #010103 100%);
    background-attachment: fixed;
    color: #fff;
    font-family: var(--font-main);
    overflow-x: hidden;
    min-height: 100vh;
    letter-spacing: -0.02em;
    position: relative;
}

/* Quantum Canvas Background */
.prism-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 242, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(112, 0, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(147, 51, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, #050510 0%, #010103 100%);
}

/* Grid Parallax Background */
.prism-bg {
    --grid-scroll-y: 0px;
}

.prism-bg::before {
    content: '';
    position: absolute;
    inset: -200px;
    background-image: 
        linear-gradient(rgba(0, 242, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 255, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 0 0;
    background-repeat: repeat;
    animation: gridMove 20s linear infinite;
    transform: translateY(var(--grid-scroll-y, 0px));
    will-change: transform, background-position;
    pointer-events: none;
    mix-blend-mode: screen;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

/* Additional grid layer for depth */
.prism-grid-overlay {
    position: fixed;
    inset: -300px;
    z-index: -1;
    pointer-events: none;
    background-image: 
        linear-gradient(rgba(112, 0, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(112, 0, 255, 0.06) 1px, transparent 1px);
    background-size: 100px 100px;
    background-position: 0 0;
    background-repeat: repeat;
    animation: gridMoveSlow 30s linear infinite;
    will-change: transform, background-position;
    opacity: 0.8;
    mix-blend-mode: screen;
}

@keyframes gridMoveSlow {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}


.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    mix-blend-mode: screen;
    animation: drift 25s infinite alternate ease-in-out;
    will-change: transform;
}

/* Specific orb styles to override Tailwind if needed */
.prism-bg .orb:first-child {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.5) 0%, rgba(0, 242, 255, 0.2) 50%, transparent 100%);
    top: -160px;
    left: -160px;
    box-shadow: 0 0 200px rgba(0, 242, 255, 0.3);
}

.prism-bg .orb:last-child {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.4) 0%, rgba(112, 0, 255, 0.2) 50%, transparent 100%);
    bottom: 40px;
    right: 40px;
    box-shadow: 0 0 200px rgba(112, 0, 255, 0.3);
}


@keyframes drift {
    0% { transform: translate(-10%, -10%) scale(1); }
    100% { transform: translate(20%, 10%) scale(1.3); }
}

/* Additional floating orbs for depth */
.prism-bg::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.25) 0%, rgba(0, 242, 255, 0.15) 50%, transparent 100%);
    filter: blur(100px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float-center 20s ease-in-out infinite;
    mix-blend-mode: screen;
    box-shadow: 0 0 150px rgba(147, 51, 234, 0.2);
}

@keyframes float-center {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate(-40%, -60%) scale(1.3);
        opacity: 0.35;
    }
}


/* Cursor Ring */
.prism-cursor-ring {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--lumina-glow);
    border-radius: 50%;
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 9999;
    transition: left 0.15s var(--ease-out-expo), top 0.15s var(--ease-out-expo), transform 0.15s var(--ease-out-expo), opacity 0.3s ease;
    opacity: 0.6;
    mix-blend-mode: screen;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
}

.prism-cursor-ring::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 1px solid var(--lumina-glow);
    opacity: 0.3;
    animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.5);
        opacity: 0;
    }
}


/* Glass-morphism Card Base */
.lumina-card {
    background: var(--glass);
    backdrop-filter: blur(50px) saturate(220%);
    -webkit-backdrop-filter: blur(50px) saturate(220%);
    border: 1px solid var(--border);
    border-radius: 40px;
    position: relative;
    transition: all 0.6s var(--ease-out-expo);
    box-shadow: 
        0 50px 100px -30px rgba(0,0,0,0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 0 0 rgba(0, 242, 255, 0);
    overflow: hidden;
}

.lumina-card:hover {
    border-color: rgba(0, 242, 255, 0.5);
    background: rgba(12, 12, 20, 0.75);
    box-shadow: 
        0 60px 120px -20px rgba(0,0,0,0.8), 
        0 0 60px rgba(0, 242, 255, 0.15),
        0 0 100px rgba(112, 0, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-4px) scale(1.01);
}

.card-glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(400px circle at var(--mouse-x) var(--mouse-y), rgba(112,0,255,0.2), transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lumina-card:hover .card-glow {
    opacity: 1;
}

/* Modern gradient borders on hover */
.lumina-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.3), rgba(112, 0, 255, 0.3), rgba(0, 242, 255, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.lumina-card:hover::after {
    opacity: 1;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(20px, 20px);
    }
}

/* Page Transition Effects */
body.page-loaded {
    opacity: 1;
}

body.page-exit {
    opacity: 0;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #1a1a2e 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow: hidden;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.loading-particles::before,
.loading-particles::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.loading-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.loading-particles::after {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

.loading-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loading-logo {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
}

.logo-circle {
    position: absolute;
    border-radius: 50%;
    border: 3px solid;
    animation: pulse 2s ease-in-out infinite;
}

.logo-circle:nth-child(1) {
    width: 80px;
    height: 80px;
    border-color: #667eea;
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.logo-circle:nth-child(2) {
    width: 60px;
    height: 60px;
    border-color: #764ba2;
    top: 10px;
    left: 10px;
    animation-delay: 0.3s;
}

.logo-circle:nth-child(3) {
    width: 40px;
    height: 40px;
    border-color: #f093fb;
    top: 20px;
    left: 20px;
    animation-delay: 0.6s;
}

.loading-spinner-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
}

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 4px solid rgba(102, 126, 234, 0.2);
    border-top-color: #667eea;
    border-right-color: #764ba2;
    border-radius: 50%;
    animation: spin 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.spinner-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid;
    border-radius: 50%;
    animation: spin 1.5s linear infinite reverse;
}

.spinner-ring:nth-child(2) {
    width: 70px;
    height: 70px;
    border-color: rgba(118, 75, 162, 0.4);
    animation-duration: 2s;
}

.spinner-ring:nth-child(3) {
    width: 50px;
    height: 50px;
    border-color: rgba(240, 147, 251, 0.4);
    animation-duration: 1s;
}

.loading-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.loading-dot {
    display: inline-block;
    animation: bounce 1.4s ease-in-out infinite;
}

.loading-dot:nth-child(1) { animation-delay: 0s; }
.loading-dot:nth-child(2) { animation-delay: 0.1s; }
.loading-dot:nth-child(3) { animation-delay: 0.2s; }
.loading-dot:nth-child(4) { animation-delay: 0.3s; }
.loading-dot:nth-child(5) { animation-delay: 0.4s; }
.loading-dot:nth-child(6) { animation-delay: 0.5s; }
.loading-dot:nth-child(7) { animation-delay: 0.6s; }
.loading-dot:nth-child(8) { animation-delay: 0.7s; }
.loading-dot:nth-child(9) { animation-delay: 0.8s; }
.loading-dot:nth-child(10) { animation-delay: 0.9s; }

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(30px, -30px) scale(1.2);
        opacity: 0.8;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

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

/* Remove old container styles - using Tailwind now */
.container {
    /* Styles handled by Tailwind classes */
}

.container::after {
    display: none;
}

.container::before {
    display: none;
}

/* Announcement Banner */
.announcement-banner {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 152, 0, 0.15) 100%);
    border: 2px solid rgba(255, 193, 7, 0.5);
    border-radius: 12px;
    padding: 15px 20px;
    margin: 20px auto;
    max-width: 1200px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.2);
    animation: slideDown 0.5s ease-out;
    position: relative;
    z-index: 10;
}

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

.announcement-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.announcement-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.announcement-text {
    flex: 1;
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
}

.announcement-text strong {
    color: #FFD700;
}

.announcement-author {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin-left: 8px;
}

.announcement-close {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.announcement-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Announcement Banner - Homepage (Smaller, Lower Position) */
.announcement-banner-homepage {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.12) 0%, rgba(255, 152, 0, 0.12) 100%);
    border: 2px solid rgba(255, 193, 7, 0.4);
    border-radius: 12px;
    padding: 12px 18px;
    margin: 30px auto 20px;
    max-width: 800px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 16px rgba(255, 193, 7, 0.2);
    animation: slideUp 0.5s ease-out;
    position: relative;
}

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

.announcement-content-homepage {
    display: flex;
    align-items: center;
    gap: 10px;
}

.announcement-icon-homepage {
    font-size: 20px;
    flex-shrink: 0;
}

.announcement-text-homepage {
    flex: 1;
    color: #fff;
    font-size: 13px;
    line-height: 1.4;
}

.announcement-text-homepage strong {
    color: #FFD700;
    font-size: 14px;
}

.announcement-author-homepage {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    margin-left: 6px;
}

.announcement-close-homepage {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.announcement-close-homepage:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Announcement Bubble & Panel */
.announcement-bubble {
    display: inline-block;
    font-size: 24px;
    margin-left: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    vertical-align: middle;
    position: relative;
    animation: none;
    padding: 8px;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    user-select: none;
    -webkit-user-select: none;
    z-index: 10;
}

.announcement-bubble.unread {
    animation: flashBubbleDramatic 1s ease-in-out infinite;
    background: rgba(255, 193, 7, 0.3);
    border: 3px solid rgba(255, 215, 0, 0.8);
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.8),
        0 0 40px rgba(255, 193, 7, 0.6),
        inset 0 0 20px rgba(255, 215, 0, 0.3);
}

@keyframes flashBubbleDramatic {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 
            0 0 20px rgba(255, 215, 0, 0.8),
            0 0 40px rgba(255, 193, 7, 0.6),
            inset 0 0 20px rgba(255, 215, 0, 0.3);
    }
    25% {
        opacity: 0.7;
        transform: scale(1.15);
        box-shadow: 
            0 0 30px rgba(255, 215, 0, 1),
            0 0 60px rgba(255, 193, 7, 0.9),
            inset 0 0 30px rgba(255, 215, 0, 0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1.25);
        box-shadow: 
            0 0 40px rgba(255, 215, 0, 1.2),
            0 0 80px rgba(255, 193, 7, 1),
            inset 0 0 40px rgba(255, 215, 0, 0.7);
    }
    75% {
        opacity: 0.7;
        transform: scale(1.15);
        box-shadow: 
            0 0 30px rgba(255, 215, 0, 1),
            0 0 60px rgba(255, 193, 7, 0.9),
            inset 0 0 30px rgba(255, 215, 0, 0.5);
    }
}

.announcement-bubble::before {
    content: '';
    position: absolute;
    top: -4px;
    right: -4px;
    width: 12px;
    height: 12px;
    background: #ff4444;
    border-radius: 50%;
    border: 2px solid #fff;
    display: none;
    animation: pulseDot 1s ease-in-out infinite;
}

.announcement-bubble.unread::before {
    display: block;
}

@keyframes pulseDot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.8;
    }
}

.announcement-bubble:hover {
    transform: scale(1.3);
}

/* Announcement Modal Overlay */
.announcement-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInOverlay 0.3s ease-out;
}

@keyframes fadeInOverlay {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.announcement-panel {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.25) 0%, rgba(255, 152, 0, 0.25) 100%);
    border: 3px solid rgba(255, 215, 0, 0.8);
    border-radius: 15px;
    padding: 0;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(255, 193, 7, 0.4), 0 0 60px rgba(255, 193, 7, 0.2);
    min-width: 400px;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUpPanel 0.3s ease-out;
}

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

@media (max-width: 768px) {
    .announcement-panel {
        min-width: 90%;
        max-width: 90%;
        margin: 20px;
    }
}


.announcement-panel-content {
    padding: 20px;
}

.announcement-panel-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.announcement-panel-icon {
    font-size: 28px;
}

.announcement-panel-header h3 {
    flex: 1;
    margin: 0;
    color: #FFD700;
    font-size: 22px;
    font-weight: 700;
}

.announcement-panel-close {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    transition: all 0.3s ease;
    font-weight: bold;
}

.announcement-panel-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.15) rotate(90deg);
}

.announcement-panel-text {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.announcement-panel-author {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-align: right;
    font-style: italic;
}

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

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

/* Top Controls */
.top-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: nowrap;
}

.search-wrapper {
    position: relative;
    flex: 1;
    max-width: 480px;
    min-width: 200px;
}

.about-button {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 18px;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-main), 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.4s var(--ease-out-expo);
    backdrop-filter: blur(50px) saturate(220%);
    -webkit-backdrop-filter: blur(50px) saturate(220%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
}

.about-button:hover {
    border-color: rgba(0, 242, 255, 0.3);
    background: rgba(12, 12, 20, 0.6);
    color: var(--lumina-glow);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 242, 255, 0.2);
}


.search-input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-family: var(--font-main), 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    backdrop-filter: blur(50px) saturate(220%);
    -webkit-backdrop-filter: blur(50px) saturate(220%);
    transition: all 0.4s var(--ease-out-expo);
}

.search-input:focus {
    outline: none;
    background: rgba(12, 12, 20, 0.6);
    border-color: rgba(0, 242, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 242, 255, 0.1);
}

.search-input::placeholder {
    color: #999;
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    pointer-events: none;
    opacity: 0.7;
}

/* Cool CSS Enhancements */

/* Header */
header {
    margin-bottom: 30px;
    position: relative;
}

h1 {
    font-size: 60px;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    font-weight: 900;
    position: relative;
    font-family: var(--font-main), 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: -0.02em;
}

h1.glitch-text:hover {
    animation: glitch 0.3s cubic-bezier(.25,.46,.45,.94) both infinite;
    color: var(--lumina-glow);
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

/* Minecraft-inspired tip (diagonal overlay style like "Scientific!") */
.minecraft-tip {
    position: absolute;
    top: -5px;
    right: 100px;
    transform: rotate(12deg);
    font-size: 14px;
    color: #ADFF2F;
    font-weight: 700;
    font-style: italic;
    text-shadow: 
        0 0 8px rgba(173, 255, 47, 0.9),
        0 0 16px rgba(173, 255, 47, 0.7),
        0 0 24px rgba(173, 255, 47, 0.5),
        0 0 32px rgba(173, 255, 47, 0.3),
        2px 2px 4px rgba(0, 0, 0, 0.9),
        4px 4px 8px rgba(0, 0, 0, 0.7);
    white-space: normal;
    max-width: 200px;
    line-height: 1.3;
    z-index: 15;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: minecraftGlow 2s ease-in-out infinite;
    pointer-events: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
}

@keyframes minecraftGlow {
    0%, 100% {
        text-shadow: 
            0 0 8px rgba(173, 255, 47, 0.9),
            0 0 16px rgba(173, 255, 47, 0.7),
            0 0 24px rgba(173, 255, 47, 0.5),
            0 0 32px rgba(173, 255, 47, 0.3),
            2px 2px 4px rgba(0, 0, 0, 0.9),
            4px 4px 8px rgba(0, 0, 0, 0.7);
        color: #ADFF2F;
    }
    50% {
        text-shadow: 
            0 0 12px rgba(173, 255, 47, 1),
            0 0 24px rgba(173, 255, 47, 0.9),
            0 0 36px rgba(173, 255, 47, 0.7),
            0 0 48px rgba(173, 255, 47, 0.5),
            0 0 60px rgba(173, 255, 47, 0.3),
            2px 2px 4px rgba(0, 0, 0, 0.9),
            4px 4px 8px rgba(0, 0, 0, 0.7);
        color: #7FFF00;
    }
}

/* Responsive adjustments for tip */
@media (max-width: 768px) {
    .minecraft-tip {
        top: -10px;
        right: 20px;
        font-size: 12px;
        max-width: 150px;
        transform: rotate(10deg);
    }
}

.subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    letter-spacing: 1px;
    margin-bottom: 50px;
    display: block;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: var(--font-main), 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.creator-name {
    color: #fff;
    font-weight: 600;
    text-shadow: 
        0 0 10px rgba(102, 126, 234, 0.8),
        0 0 20px rgba(102, 126, 234, 0.6),
        0 0 30px rgba(102, 126, 234, 0.4);
    animation: shine 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes shine {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(102, 126, 234, 0.8),
            0 0 20px rgba(102, 126, 234, 0.6),
            0 0 30px rgba(102, 126, 234, 0.4);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(102, 126, 234, 1),
            0 0 40px rgba(102, 126, 234, 0.8),
            0 0 60px rgba(102, 126, 234, 0.6),
            0 0 80px rgba(102, 126, 234, 0.4);
    }
}

/* Thanksgiving Event Timer */
.event-timer {
    margin: 40px auto 60px;
    max-width: 700px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 40px rgba(102, 126, 234, 0.2);
    text-align: center;
    animation: timerPulse 3s ease-in-out infinite;
}

@keyframes timerPulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 40px rgba(102, 126, 234, 0.2);
    }
    50% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 60px rgba(102, 126, 234, 0.4);
    }
}

.timer-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.timer-icon {
    font-size: 32px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.timer-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timer-content {
    margin-top: 20px;
}

.timer-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    font-weight: 500;
}

.countdown-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-value {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
    animation: numberPulse 1s ease-in-out infinite;
}

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

.countdown-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.countdown-separator {
    font-size: 36px;
    font-weight: 700;
    color: rgba(102, 126, 234, 0.6);
    margin: 0 5px;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

@media (max-width: 768px) {
    .event-timer {
        margin: 30px 20px 40px;
        padding: 25px;
    }
    
    .timer-title {
        font-size: 24px;
    }
    
    .countdown-value {
        font-size: 32px;
    }
    
    .countdown-item {
        min-width: 60px;
    }
    
    .countdown-separator {
        font-size: 28px;
    }
    
    .countdown-display {
        gap: 10px;
    }
}

/* Intro Section */
.intro-section {
    margin-bottom: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.intro-text {
    font-size: 18px;
    color: #e0e0e0;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    padding: 45px 35px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 30px rgba(102, 126, 234, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: visible;
    cursor: default;
    opacity: 0;
    animation: featureFadeIn 0.8s ease forwards;
}

.feature-item:nth-child(1) { animation-delay: 0.2s; }
.feature-item:nth-child(2) { animation-delay: 0.3s; }
.feature-item:nth-child(3) { animation-delay: 0.4s; }
.feature-item:nth-child(4) { animation-delay: 0.5s; }

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

.feature-item::before {
    display: none;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4), 
        0 0 40px rgba(102, 126, 234, 0.3),
        0 0 60px rgba(118, 75, 162, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 18px;
    display: block;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    opacity: 0.9;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    opacity: 1;
}

.feature-item h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.feature-item:hover h3 {
    color: #fff;
    text-shadow: 0 0 20px rgba(102, 126, 234, 0.6);
}

.feature-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.feature-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Christmas Event Banner */
.christmas-banner {
    margin: 40px auto 30px;
    max-width: 900px;
    padding: 24px 28px;
    border-radius: 24px;
    background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.15) 0%, transparent 55%),
                radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.12) 0%, transparent 55%),
                linear-gradient(135deg, rgba(220, 38, 38, 0.85) 0%, rgba(239, 68, 68, 0.9) 35%, rgba(16, 185, 129, 0.9) 100%);
    border: 2px solid rgba(252, 211, 77, 0.8);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 40px rgba(252, 211, 77, 0.4);
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

/* Donate Banner (image) - Glass-morphism */
.donate-banner {
    margin: 20px auto 10px;
    max-width: 700px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--glass);
    box-shadow: 0 50px 100px -30px rgba(0,0,0,0.7);
    backdrop-filter: blur(50px) saturate(220%);
    -webkit-backdrop-filter: blur(50px) saturate(220%);
    position: relative;
    transition: all 0.6s var(--ease-out-expo);
}

.donate-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(400px circle at var(--mouse-x) var(--mouse-y), rgba(112,0,255,0.1), transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.donate-banner:hover::before {
    opacity: 1;
}

.donate-banner:hover {
    border-color: rgba(0, 242, 255, 0.3);
    background: rgba(12, 12, 20, 0.6);
    box-shadow: 0 60px 120px -20px rgba(0,0,0,0.8), 0 0 30px rgba(0, 242, 255, 0.05);
}

.donate-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 240px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .donate-banner {
        margin: 16px auto 6px;
        border-radius: 18px;
    }
}

/* Recent Changes card - Glass-morphism */
.recent-changes {
    margin: 14px auto 22px;
    max-width: 900px;
    padding: 18px 18px 14px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: var(--glass);
    box-shadow: 0 50px 100px -30px rgba(0,0,0,0.7);
    backdrop-filter: blur(50px) saturate(220%);
    -webkit-backdrop-filter: blur(50px) saturate(220%);
    position: relative;
    transition: all 0.6s var(--ease-out-expo);
}

.recent-changes::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(400px circle at var(--mouse-x) var(--mouse-y), rgba(112,0,255,0.1), transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.recent-changes:hover::before {
    opacity: 1;
}

.recent-changes:hover {
    border-color: rgba(0, 242, 255, 0.3);
    background: rgba(12, 12, 20, 0.6);
    box-shadow: 0 60px 120px -20px rgba(0,0,0,0.8), 0 0 30px rgba(0, 242, 255, 0.05);
}

.recent-changes-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
}

.recent-changes-title {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.95);
}

.recent-changes-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
}

.recent-changes-link:hover {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: underline;
}

.recent-changes-meta {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin-bottom: 10px;
}

.recent-changes-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.recent-changes-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.4;
}

.rc-tag {
    flex: 0 0 auto;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(74, 158, 255, 0.18);
    border: 1px solid rgba(74, 158, 255, 0.28);
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1px;
}

.rc-text {
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
}

.christmas-banner::before,
.christmas-banner::after {
    content: '✧';
    position: absolute;
    color: rgba(255, 255, 255, 0.4);
    font-size: 32px;
    animation: float 6s ease-in-out infinite;
}

.christmas-banner::before {
    top: 12px;
    left: 18px;
}

.christmas-banner::after {
    bottom: 12px;
    right: 22px;
    animation-delay: 2s;
}

.christmas-icon {
    font-size: 52px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.christmas-text {
    text-align: left;
}

.christmas-title {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fef9c3;
    text-shadow: 0 0 18px rgba(250, 250, 210, 0.9);
    margin-bottom: 6px;
}

.christmas-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #fefce8;
}

.christmas-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 6px;
}

.christmas-badge {
    margin-left: auto;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(254, 249, 195, 0.9);
    background: rgba(15, 23, 42, 0.4);
    color: #fef9c3;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .christmas-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .christmas-text {
        text-align: center;
    }

    .christmas-badge {
        margin-left: 0;
        margin-top: 10px;
    }
}

/* Song Cards - Modern Glass-morphism */
.song-card {
    background: var(--glass);
    border-radius: 32px;
    padding: 0;
    backdrop-filter: blur(50px) saturate(220%);
    -webkit-backdrop-filter: blur(50px) saturate(220%);
    border: 1px solid var(--border);
    box-shadow: 0 50px 100px -30px rgba(0,0,0,0.7);
    transition: all 0.6s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: cardFadeIn 0.8s ease forwards;
    margin-bottom: 60px;
}

.song-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(400px circle at var(--mouse-x) var(--mouse-y), rgba(112,0,255,0.1), transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.song-card:hover::before {
    opacity: 1;
}

.song-card:nth-child(1) { animation-delay: 0.1s; }
.song-card:nth-child(2) { animation-delay: 0.2s; }
.song-card:nth-child(3) { animation-delay: 0.3s; }
.song-card:nth-child(4) { animation-delay: 0.4s; }
.song-card:nth-child(5) { animation-delay: 0.5s; }
.song-card:nth-child(6) { animation-delay: 0.6s; }
.song-card:nth-child(n+7) { animation-delay: 0.7s; }

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9) rotateX(15deg) rotateZ(-2deg);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg) rotateZ(0deg);
        filter: blur(0);
    }
}

.song-card::before {
    display: none;
}

.song-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.song-card:hover::after {
    left: 100%;
}

.song-card:hover {
    transform: translateY(-20px) scale(1.04);
    box-shadow: 0 60px 120px -20px rgba(0,0,0,0.8), 0 0 30px rgba(0, 242, 255, 0.05);
    border-color: rgba(0, 242, 255, 0.3);
    background: rgba(12, 12, 20, 0.6);
}

/* Spark particles that fling off on hover */
.song-card:hover .song-button::before {
    content: '✨';
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    animation: sparkFly1 0.8s ease-out forwards;
}

.song-card:hover .song-button::after {
    content: '⭐';
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    animation: sparkFly2 0.9s ease-out forwards;
    animation-delay: 0.1s;
}

@keyframes sparkFly1 {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translate(-70px, -50px) scale(0.2) rotate(360deg);
    }
}

@keyframes sparkFly2 {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translate(70px, -50px) scale(0.2) rotate(-360deg);
    }
}

/* Multiple spark particles using additional pseudo-elements on the card */
.song-card:hover::before {
    content: '✨';
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 13px;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    animation: sparkFly3 1s ease-out forwards;
    animation-delay: 0.05s;
}

.song-card:hover::after {
    content: '⭐';
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 11px;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    animation: sparkFly4 1.1s ease-out forwards;
    animation-delay: 0.15s;
}

@keyframes sparkFly3 {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translate(-50px, 60px) scale(0.2) rotate(180deg);
    }
}

@keyframes sparkFly4 {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translate(50px, 60px) scale(0.2) rotate(-180deg);
    }
}

.recent-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 20px;
    display: none;
}

.song-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.song-button {
    display: flex;
    align-items: center;
    gap: 30px;
    cursor: pointer;
    position: relative;
    padding: 35px;
    transition: all 0.4s ease;
    z-index: 2;
}

.song-image {
    width: 130px;
    height: 130px;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5), 
        0 0 40px rgba(102, 126, 234, 0.4),
        0 0 60px rgba(118, 75, 162, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    filter: brightness(1) saturate(1);
}

.song-button:hover .song-image {
    transform: scale(1.2) rotate(8deg);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.6), 
        0 0 60px rgba(102, 126, 234, 0.6),
        0 0 90px rgba(118, 75, 162, 0.4),
        0 0 120px rgba(240, 147, 251, 0.2);
    filter: brightness(1.2) saturate(1.1);
}

.song-info {
    flex: 1;
    text-align: left;
}

.song-info {
    position: relative;
    z-index: 2;
}

.song-info h2 {
    font-size: 36px;
    font-weight: 800;
    font-family: var(--font-main), 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.9) 50%, var(--lumina-glow) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
    animation: textShimmer 3s ease-in-out infinite;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

@keyframes textShimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.song-card:hover .song-info h2 {
    background: linear-gradient(135deg, #fff 0%, var(--lumina-glow) 50%, var(--lumina-accent) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 1.5s ease-in-out infinite;
}

.song-info p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    transition: all 0.4s ease;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    font-family: var(--font-main), 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.song-card:hover .song-info p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
}

/* Footer */
/* Top Donors Section */
.donors-section {
    margin: 60px auto 40px;
    max-width: 600px;
    padding: 0 20px;
}

.donors-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.donors-box-image {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.donors-title {
    font-size: 28px;
    color: #e0e0e0;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.donors-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.donor-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.donor-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.donor-name {
    font-size: 18px;
    font-weight: 600;
    color: #e0e0e0;
}

.donor-amount {
    font-size: 18px;
    font-weight: 700;
    color: #4ecdc4;
    text-shadow: 0 0 10px rgba(78, 205, 196, 0.5);
}

@media (max-width: 768px) {
    .donors-section {
        margin: 40px auto 30px;
    }

    .donors-container {
        padding: 30px 20px;
    }

    .donors-box-image {
        width: 60px;
        height: 60px;
    }

    .donors-title {
        font-size: 24px;
    }

    .donor-name,
    .donor-amount {
        font-size: 16px;
    }
}

.footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    text-align: center;
    font-family: var(--font-main), 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-year {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Light Mode - Disabled - Always use dark mode */

/* Mobile Responsive */
@media (max-width: 600px) {
    body {
        padding: 15px;
    }
    
    .top-controls {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .search-wrapper {
        width: 100%;
    }
    
    .about-button {
        width: 100%;
        justify-content: center;
    }
    
    
    h1 {
        font-size: 40px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .song-card {
        padding: 20px;
    }
    
    .song-button {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .song-info {
        text-align: center;
    }
    
    .song-image {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
    
    .song-info h2 {
        font-size: 24px;
    }
    
    .song-info p {
        font-size: 14px;
    }
    
    .intro-section {
        padding: 30px 20px;
    }
    
    .intro-text {
        font-size: 16px;
    }
    
    .features-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        padding: 25px;
    }

    header {
        padding: 30px 15px;
    }

    h1 {
        font-size: 42px;
    }
}

::-webkit-scrollbar { width: 0; }

/* Modern Button Styles - Solid, not glass */
.modern-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-family: var(--font-main);
    letter-spacing: 0.02em;
}

.modern-btn-primary {
    background: linear-gradient(135deg, var(--lumina-glow) 0%, #00d4ff 100%);
    color: #000;
    box-shadow: 0 4px 20px rgba(0, 242, 255, 0.3), 0 0 0 0 rgba(0, 242, 255, 0);
}

.modern-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 242, 255, 0.5), 0 0 40px rgba(0, 242, 255, 0.3);
    background: linear-gradient(135deg, #fff 0%, var(--lumina-glow) 100%);
}

.modern-btn-secondary {
    background: linear-gradient(135deg, var(--lumina-accent) 0%, #8a2be2 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(112, 0, 255, 0.3), 0 0 0 0 rgba(112, 0, 255, 0);
}

.modern-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(112, 0, 255, 0.5), 0 0 40px rgba(112, 0, 255, 0.3);
    background: linear-gradient(135deg, #8a2be2 0%, var(--lumina-accent) 100%);
}

.modern-btn-accent {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #000;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3), 0 0 0 0 rgba(245, 158, 11, 0);
}

.modern-btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5), 0 0 40px rgba(245, 158, 11, 0.3);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.modern-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.modern-btn-outline:hover {
    transform: translateY(-2px);
    border-color: var(--lumina-glow);
    background: rgba(0, 242, 255, 0.1);
    box-shadow: 0 8px 30px rgba(0, 242, 255, 0.3), 0 0 40px rgba(0, 242, 255, 0.2);
    color: var(--lumina-glow);
}

.modern-btn-gradient {
    background: linear-gradient(135deg, var(--lumina-glow) 0%, var(--lumina-accent) 100%);
    color: #000;
    box-shadow: 0 4px 20px rgba(0, 242, 255, 0.4), 0 0 0 0 rgba(112, 0, 255, 0);
}

.modern-btn-gradient:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 40px rgba(0, 242, 255, 0.6), 0 0 60px rgba(112, 0, 255, 0.4);
    background: linear-gradient(135deg, #fff 0%, var(--lumina-glow) 50%, var(--lumina-accent) 100%);
}

.modern-btn-sm {
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 10px;
}

.modern-btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 16px;
}

/* Legacy about-button support */
.about-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
    background: linear-gradient(135deg, var(--lumina-glow) 0%, #00d4ff 100%);
    color: #000;
    box-shadow: 0 4px 20px rgba(0, 242, 255, 0.3);
    font-family: var(--font-main);
    letter-spacing: 0.02em;
}

.about-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 242, 255, 0.5), 0 0 40px rgba(0, 242, 255, 0.3);
    background: linear-gradient(135deg, #fff 0%, var(--lumina-glow) 100%);
}

/* Modern Song Cards - Solid style, not glass */
.song-card-modern {
    background: linear-gradient(135deg, rgba(112, 0, 255, 0.15) 0%, rgba(0, 242, 255, 0.1) 100%);
    border: 2px solid rgba(112, 0, 255, 0.3);
    position: relative;
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(112, 0, 255, 0);
    overflow: hidden;
}

.song-card-modern:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(112, 0, 255, 0.6);
    background: linear-gradient(135deg, rgba(112, 0, 255, 0.25) 0%, rgba(0, 242, 255, 0.15) 100%);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(112, 0, 255, 0.4),
        0 0 60px rgba(0, 242, 255, 0.2);
}

/* Unique Shapes for Each Card */
/* Pill shape - Songs (very rounded) */
.card-shape-pill {
    border-radius: 9999px;
}

/* Rounded rectangle with asymmetric corners - JNJ Shop */
.card-shape-diamond {
    border-radius: 20px 40px 20px 40px;
}

/* Chat bubble shape - Chat (rounded with one sharp corner) */
.card-shape-chat {
    border-radius: 28px 28px 28px 4px;
}

/* Square with minimal rounding - Code Editor */
.card-shape-square {
    border-radius: 6px;
}

/* Asymmetric rounded corners - Image Editor */
.card-shape-asymmetric {
    border-radius: 36px 12px 36px 12px;
}

/* Hexagon-like with rounded edges - Mini Games */
.card-shape-hexagon {
    border-radius: 16px 4px 16px 4px;
}

/* Sharp corners with very minimal rounding - Chess */
.card-shape-sharp {
    border-radius: 2px;
}

/* Cut corner effect - Secrets */
.card-shape-cut-corner {
    border-radius: 24px 24px 24px 0px;
}

.song-link-modern {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

.song-link-modern:hover {
    color: inherit;
}

.song-card-modern .recent-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 20px;
    display: none;
    z-index: 10;
}

/* Glow effect for text elements */
.text-cyan-400 {
    text-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
}

/* Enhanced input focus */
input:focus {
    box-shadow: 
        0 0 0 2px rgba(0, 242, 255, 0.2),
        0 0 20px rgba(0, 242, 255, 0.1);
}

/* Fade in animation for fun facts */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in 0.5s ease-out;
}
