/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0a1a;
    --bg-darker: #050510;
    --text-primary: #e0e0f0;
    --text-secondary: #a0a0c0;
    --accent-blue: #4a9eff;
    --accent-purple: #9d4edd;
    --accent-glow: #6dd5ff;
    --card-bg: rgba(20, 20, 40, 0.6);
    --border-color: rgba(100, 100, 180, 0.2);
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--bg-darker) 0%, #0f0f2a 50%, #1a0a2e 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* ===== ANIMATED PARTICLES ===== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--accent-glow);
    border-radius: 50%;
    animation: float 20s infinite;
    box-shadow: 0 0 10px var(--accent-glow);
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 10;
}

/* ===== HERO SECTION ===== */
.hero {
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 60px;
}

.glitch-wrapper {
    position: relative;
    display: inline-block;
}

.title {
    font-family: 'Space Grotesk', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 600;
    color: var(--text-primary);
    text-shadow: 
        0 0 20px rgba(106, 213, 255, 0.5),
        0 0 40px rgba(157, 78, 221, 0.3);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    position: relative;
}

/* Subtle glitch effect */
.title::before {
    content: attr(data-text);
    position: absolute;
    left: 2px;
    text-shadow: -2px 0 var(--accent-purple);
    top: 0;
    color: var(--text-primary);
    overflow: hidden;
    clip: rect(0, 900px, 0, 0);
    animation: glitch-anim 3s infinite linear alternate-reverse;
    opacity: 0.8;
}

@keyframes glitch-anim {
    0% { clip: rect(42px, 9999px, 44px, 0); }
    5% { clip: rect(12px, 9999px, 59px, 0); }
    10% { clip: rect(48px, 9999px, 29px, 0); }
    15% { clip: rect(42px, 9999px, 73px, 0); }
    20% { clip: rect(63px, 9999px, 27px, 0); }
    25% { clip: rect(34px, 9999px, 55px, 0); }
    30% { clip: rect(86px, 9999px, 73px, 0); }
    35% { clip: rect(20px, 9999px, 20px, 0); }
    40% { clip: rect(26px, 9999px, 60px, 0); }
    45% { clip: rect(25px, 9999px, 66px, 0); }
    50% { clip: rect(57px, 9999px, 98px, 0); }
    55% { clip: rect(5px, 9999px, 46px, 0); }
    60% { clip: rect(82px, 9999px, 31px, 0); }
    65% { clip: rect(54px, 9999px, 27px, 0); }
    70% { clip: rect(28px, 9999px, 99px, 0); }
    75% { clip: rect(45px, 9999px, 69px, 0); }
    80% { clip: rect(23px, 9999px, 85px, 0); }
    85% { clip: rect(54px, 9999px, 84px, 0); }
    90% { clip: rect(45px, 9999px, 47px, 0); }
    95% { clip: rect(37px, 9999px, 20px, 0); }
    100% { clip: rect(4px, 9999px, 91px, 0); }
}

.subtitle {
    font-family: 'Space Grotesk', serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 30px;
    letter-spacing: 0.05em;
}

.tagline {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SECTIONS ===== */
section {
    margin-bottom: 80px;
}

h2 {
    font-family: 'Space Grotesk', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-primary);
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    margin: 20px auto 0;
}

/* ===== ABOUT SECTION ===== */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.quote {
    font-family: 'Space Grotesk', serif;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--accent-blue);
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-top: 30px;
}

/* ===== COMING SOON ===== */
.coming-soon {
    text-align: center;
    padding: 60px 20px;
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.pulse-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-blue) 0%, transparent 70%);
    animation: pulse 2s ease-in-out infinite;
    position: relative;
}

.pulse-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-purple);
    box-shadow: 0 0 30px var(--accent-purple);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

.coming-soon h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.coming-soon p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.coming-soon .small {
    font-size: 0.9rem;
    margin-top: 10px;
    opacity: 0.7;
}

/* ===== LYRICS GRID ===== */
.lyrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.lyric-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.lyric-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
}

.lyric-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--accent-blue);
    margin-bottom: 20px;
}

.lyric-card p {
    font-style: italic;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* ===== LINKS SECTION ===== */
.link-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(74, 158, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(74, 158, 255, 0.5);
}

/* ===== FOOTER ===== */
footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid var(--border-color);
    margin-top: 80px;
}

footer p {
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.small-text {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
    }
    
    .about-content {
        padding: 30px 20px;
    }
    
    .lyrics-grid {
        grid-template-columns: 1fr;
    }
}