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

:root {
    --primary-color: #00ffff;
    --secondary-color: #ff00ff;
    --accent-color: #ffff00;
    --dark-bg: #0a0a0a;
    --text-light: #ffffff;
    --text-dim: #b0b0b0;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    position: relative;
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(0,255,255,0.1) 0%, transparent 70%);
}

.hero-content {
    text-align: center;
    animation: fadeInUp 1.5s ease-out;
}

.dj-name {
    font-family: 'Orbitron', monospace;
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    text-transform: uppercase;
    perspective: 1000px;
}

.letter {
    display: inline-block;
    animation: letterFloat 3s ease-in-out infinite;
    text-shadow: 0 0 20px var(--primary-color), 0 0 40px var(--primary-color);
}

.letter:nth-child(1) { animation-delay: 0s; }
.letter:nth-child(2) { animation-delay: 0.1s; }
.letter:nth-child(3) { animation-delay: 0.2s; }
.letter:nth-child(4) { animation-delay: 0.3s; }
.letter:nth-child(5) { animation-delay: 0.4s; }
.letter:nth-child(6) { animation-delay: 0.5s; }
.letter:nth-child(7) { animation-delay: 0.6s; }

.tagline {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    color: var(--primary-color);
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-bg);
    box-shadow: 0 0 30px rgba(0,255,255,0.5);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 40px rgba(0,255,255,0.8);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0,255,255,0.3);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Section */
.about {
    background: linear-gradient(135deg, rgba(0,255,255,0.05) 0%, rgba(255,0,255,0.05) 100%);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,255,255,0.2);
}

.about-content {
    text-align: center;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dim);
    max-width: 800px;
    margin: 0 auto;
}

/* Music Section */
.music {
    text-align: center;
}

.music-player {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,255,255,0.3);
    max-width: 500px;
    margin: 0 auto;
}

.track-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.track-info p {
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.player-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.control-btn {
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(0,255,255,0.2);
    color: var(--text-light);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.control-btn:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: scale(1.1);
}

.play-pause {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-bg);
}

/* Contact Section */
.contact {
    text-align: center;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dim);
}

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

.social-link {
    padding: 0.8rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(0,255,255,0.3);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,255,255,0.5);
}

/* Navigation */
.floating-nav {
    position: fixed;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    background: rgba(0,0,0,0.8);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 20px;
    border: 1px solid rgba(0,255,255,0.3);
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-link:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateX(-5px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes letterFloat {
    0%, 100% {
        transform: translateY(0) rotateY(0);
    }
    50% {
        transform: translateY(-20px) rotateY(180deg);
    }
}

.time-display {
    text-align: center;
    margin-top: 1rem;
    font-family: 'Orbitron', monospace;
    color: var(--primary-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .floating-nav {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: center;
        padding: 1rem;
        background: rgba(0,0,0,0.9);
        border-radius: 20px;
        margin: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .dj-name {
        font-size: clamp(2rem, 8vw, 4rem);
    }
    
    section {
        padding: 3rem 1rem;
    }
}
