:root {
    --bg-color: #050508;
    --text-color: #ffffff;
    --accent-cyan: #00f0ff;
    --accent-magenta: #ff007f;
    --accent-gold: #ffaa00;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
}

/* NAVIGATION */
nav {
    position: fixed;
    top: 0; width: 100%;
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 50px;
    background: rgba(5, 5, 8, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}
.logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 24px;
    letter-spacing: 2px;
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}
.links a {
    color: white;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}
.links a:hover {
    color: var(--accent-magenta);
}

/* HERO SECTION */
#hero {
    position: relative;
    height: 100vh;
    background: url('assets/hero.jpg') center/contain no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5,5,8,0.3) 0%, rgba(5,5,8,1) 100%);
}
.hero-content {
    position: relative;
    z-index: 10;
}
h1.glitch {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: white;
    position: relative;
    text-shadow: 2px 2px var(--accent-magenta), -2px -2px var(--accent-cyan);
}
h2 {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    font-size: 1.5rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
}
.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--accent-cyan);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    border: 2px solid var(--accent-cyan);
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2), inset 0 0 15px rgba(0, 240, 255, 0.1);
    transition: all 0.3s ease;
}
.cta-btn:hover {
    background: var(--accent-cyan);
    color: var(--bg-color);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.6);
}

/* SECTIONS */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: white;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* ABOUT */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}
.about-text p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ddd;
}
.stat-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255, 0, 127, 0.3);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    text-align: center;
}
.stat-box h3 {
    color: var(--accent-magenta);
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

/* AUDIO PLAYER */
.player-container {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
}
.now-playing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.track-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 5px;
}
.control-btn {
    background: var(--accent-cyan);
    color: var(--bg-color);
    border: none;
    width: 60px; height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}
.control-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.8);
}
.progress-container {
    width: 100%;
    height: 8px;
    background: #222;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 40px;
    overflow: hidden;
}
#progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-magenta), var(--accent-cyan));
    width: 0%;
    pointer-events: none;
}
.track-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.track-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    transition: background 0.2s, border-left 0.2s;
    border-left: 3px solid transparent;
}
.track-item:hover {
    background: rgba(255,255,255,0.1);
}
.track-item.active {
    background: rgba(0, 240, 255, 0.1);
    border-left: 3px solid var(--accent-cyan);
    color: var(--accent-cyan);
}

/* CONTACT */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    font-family: var(--font-body);
    font-size: 1.1rem;
    border-radius: 4px;
    outline: none;
}
.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--accent-magenta);
}
.contact-form button {
    cursor: pointer;
    background: var(--accent-magenta);
    color: white;
    border: none;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.3);
}
.contact-form button:hover {
    background: white;
    color: var(--accent-magenta);
    box-shadow: 0 0 30px rgba(255, 0, 127, 0.6);
}

footer {
    text-align: center;
    padding: 30px;
    background: #020203;
    border-top: 1px solid rgba(255,255,255,0.05);
}
