:root {
    --primary-color: #bb86fc;
    --secondary-color: #03dac6;
    --bg-dark: #0f0c29;
    --bg-gradient: linear-gradient(to bottom, #0f0c29, #302b63, #24243e);
    --text-main: #e0e0e0;
    --text-dim: #b0b0b0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Raleway', sans-serif;
    background: var(--bg-dark);
    background: var(--bg-gradient);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Effects */
.bg-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(white, rgba(255,255,255,0) 2px);
    background-size: 100px 100px;
    opacity: 0.15;
}

.bg-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, rgba(187, 134, 252, 0.05) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Hero Section */
.hero {
    height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.band-name {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    letter-spacing: 0.5rem;
    text-transform: uppercase;
    background: linear-gradient(to right, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(187, 134, 252, 0.3);
}

.tagline {
    font-size: clamp(0.9rem, 3vw, 1.2rem);
    color: var(--text-dim);
    letter-spacing: 0.2rem;
    text-transform: uppercase;
}

/* Player Section */
.player-section {
    display: flex;
    justify-content: center;
    padding: 0 1.5rem 4rem;
}

.player-container {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.player-header {
    text-align: center;
    margin-bottom: 2rem;
}

#track-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#track-artist {
    font-size: 0.85rem;
    color: var(--text-dim);
    letter-spacing: 1px;
}

/* Controls */
.player-controls {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.progress-container {
    width: 100%;
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 0.6rem;
    font-family: monospace;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px var(--primary-color);
}

.control-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.ctrl-btn {
    background: none;
    border: none;
    cursor: pointer;
    fill: var(--text-main);
    transition: all 0.2s ease;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.ctrl-btn:hover {
    fill: var(--primary-color);
    transform: translateY(-2px);
}

.main-btn {
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    border-radius: 50%;
    padding: 16px;
    fill: var(--bg-dark);
    box-shadow: 0 0 20px rgba(187, 134, 252, 0.4);
}

.main-btn:hover {
    background: #fff;
    transform: scale(1.05);
}

.hidden {
    display: none;
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0 1rem;
}

.vol-icon {
    width: 18px;
    height: 18px;
    fill: var(--text-dim);
}

#volume-slider {
    flex: 1;
}

/* Playlist */
.playlist-section {
    margin-top: 2.5rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
}

.playlist-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: var(--text-dim);
    letter-spacing: 2px;
}

#playlist {
    list-style: none;
    max-height: 180px;
    overflow-y: auto;
}

#playlist::-webkit-scrollbar {
    width: 4px;
}

#playlist::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 2px;
}

.playlist-item {
    padding: 0.9rem 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    border: 1px solid transparent;
}

.playlist-item:hover {
    background: rgba(255,255,255,0.03);
    border-color: var(--glass-border);
}

.playlist-item.active {
    background: rgba(187, 134, 252, 0.08);
    border-color: rgba(187, 134, 252, 0.2);
    color: var(--primary-color);
    font-weight: bold;
}

/* Contact Section */
.contact-section {
    text-align: center;
    padding: 5rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.email-link {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    transition: all 0.3s;
    font-family: 'Orbitron', sans-serif;
}

.email-link:hover {
    color: var(--primary-color);
    transform: scale(1.05);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.social-icon {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.social-icon:hover {
    color: var(--primary-color);
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem;
    color: var(--text-dim);
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.domain {
    color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 600px) {
    .player-container {
        padding: 1.5rem;
    }
    
    .social-links {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
}
