:root {
    --bg: #010105;
    --surface: #0a0a1a;
    --accent: #00f0ff;
    --text: #e0e0f0;
    --muted: #8080a0;
    --glass: rgba(10, 10, 26, 0.8);
    --glow: 0 0 15px rgba(0, 240, 255, 0.4);
}

body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Segoe UI', Roboto, 'Outfit', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
nav {
    width: 100%;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    display: flex;
    justify-content: center;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 2000;
}

nav a {
    color: var(--muted);
    text-decoration: none;
    margin: 0 20px;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 1px;
    transition: 0.3s;
}

nav a:hover, nav a.active {
    color: var(--accent);
    text-shadow: var(--glow);
}

header {
    width: 100%;
    padding: 60px 20px;
    text-align: center;
    background: radial-gradient(circle at center, #050525 0%, var(--bg) 70%);
}

h1 {
    margin: 0;
    font-size: 3.5rem;
    letter-spacing: 8px;
    color: var(--accent);
    text-shadow: var(--glow);
}

.tagline {
    color: var(--muted);
    font-style: italic;
    margin-top: 10px;
}

.status-badge {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--accent);
    background: rgba(0, 240, 255, 0.05);
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    display: inline-block;
}

main {
    max-width: 900px;
    width: 100%;
    padding: 40px 20px;
    box-sizing: border-box;
}

section {
    margin-bottom: 80px;
    animation: fadeIn 1s ease-out;
}

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

h2 {
    border-left: 4px solid var(--accent);
    padding-left: 15px;
    margin-bottom: 30px;
    font-size: 2rem;
    letter-spacing: 2px;
}

.card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: var(--glow);
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

@media (max-width: 650px) {
    .grid { grid-template-columns: 1fr; }
}

.card-link {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    margin-bottom: 20px;
}

.badge {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 6px;
    font-size: 0.75rem;
    margin-right: 10px;
    color: var(--accent);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 50%,
        rgba(0, 0, 0, 0.05) 50%
    );
    background-size: 100% 4px;
    z-index: 3000;
    pointer-events: none;
    opacity: 0.3;
}

.lyrics {
    background: #050512;
    padding: 40px;
    border-radius: 16px;
    border-left: 4px solid var(--accent);
    font-family: 'Courier New', Courier, monospace;
    color: #b0c0ff;
    white-space: pre-wrap;
    line-height: 1.8;
}

footer {
    width: 100%;
    padding: 60px 0;
    text-align: center;
    color: var(--muted);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
