:root {
    --bg-color: #050505;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --neon-purple: #b520ff;
    --electric-blue: #00f0ff;
    --glass-bg: rgba(20, 20, 25, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
}

/* Background gradient orb */
.background-overlay {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(181, 32, 255, 0.15) 0%, rgba(0, 240, 255, 0.05) 30%, transparent 60%);
    z-index: -1;
    pointer-events: none;
    animation: slowPulse 15s infinite alternate;
}

@keyframes slowPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Glassmorphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

.glass-panel {
    background: linear-gradient(145deg, rgba(30,30,40,0.6) 0%, rgba(15,15,20,0.6) 100%);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid var(--glass-border);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 35px;
    object-fit: contain;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--neon-purple);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-primary-small {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary-small {
    padding: 8px 20px;
    font-size: 0.8rem;
    background: var(--text-main);
    color: var(--bg-color);
}
.btn-primary-small:hover {
    background: var(--neon-purple);
    color: #fff;
    box-shadow: 0 0 15px var(--neon-purple);
}

.btn-primary {
    background: linear-gradient(90deg, var(--neon-purple), #8000ff);
    color: white;
    box-shadow: 0 4px 20px rgba(181, 32, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(181, 32, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid var(--text-main);
}

.btn-secondary:hover {
    background: white;
    color: var(--bg-color);
}

/* Sections */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 60px; /* Offset for nav */
}

.glitch {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    position: relative;
    color: white;
    text-shadow: 0 0 20px rgba(181,32,255,0.5);
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* About */
.about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 700px;
}

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

.stat-box {
    border-left: 2px solid var(--neon-purple);
    padding-left: 20px;
}

.stat-box h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Music */
.music-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.music-visual {
    flex: 1;
}

.album-art {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
}

.music-info {
    flex: 1;
}

.badge {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(181, 32, 255, 0.2);
    color: var(--neon-purple);
    border: 1px solid var(--neon-purple);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.music-info h2 {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 5px;
}

.artist-name {
    font-family: 'Outfit', sans-serif;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.music-desc {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.streaming-links {
    display: flex;
    gap: 15px;
}

.btn-stream {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    color: white;
}

.spotify {
    background: #1DB954;
}

.apple {
    background: #FA243C;
}

.btn-stream:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Connect */
.connect {
    text-align: center;
}

.connect h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

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

.social-card {
    display: block;
    padding: 40px 20px;
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-purple);
    box-shadow: 0 10px 30px rgba(181, 32, 255, 0.15);
}

.social-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.social-card p {
    color: var(--text-muted);
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s forwards ease-out;
}

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

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .glitch { font-size: 3rem; }
    .music-container { flex-direction: column; }
    .hero-actions { flex-direction: column; }
    .nav-links { display: none; }
}
