* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    font-family: 'Orbitron', monospace;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    color: #ffffff;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 25s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #2d1b69, #11998e);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #1a1a2e, #16213e);
    top: 60%;
    right: 10%;
    animation-delay: -8s;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, #0f3460, #16537e);
    bottom: 10%;
    left: 20%;
    animation-delay: -15s;
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #533483, #2d1b69);
    top: 30%;
    right: 30%;
    animation-delay: -20s;
}

.shape-5 {
    width: 350px;
    height: 350px;
    background: linear-gradient(45deg, #0f4c75, #3282b8);
    top: 70%;
    left: 60%;
    animation-delay: -12s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-80px) translateX(40px) rotate(90deg);
    }
    50% {
        transform: translateY(-40px) translateX(-80px) rotate(180deg);
    }
    75% {
        transform: translateY(40px) translateX(80px) rotate(270deg);
    }
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1.5s ease-out;
}

.title-container {
    position: relative;
    display: inline-block;
}

.hero-title {
    font-size: 8rem;
    font-weight: 900;
    text-shadow: 0 8px 32px rgba(0, 0, 0, 1), 0 0 40px rgba(255, 255, 255, 0.8);
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 25%, #ffffff 50%, #f0f0f0 75%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 8px;
    animation: glow 4s ease-in-out infinite alternate;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    font-family: 'Orbitron', monospace;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.7)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.9));
}

.glass-reflection {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-title-reflection {
    font-size: 8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 25%, #ffffff 50%, #c0c0c0 75%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-family: 'Orbitron', monospace;
    transform: scaleY(-1);
    opacity: 0.25;
    filter: blur(1px);
    mask: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.3) 30%,
        rgba(255, 255, 255, 0.15) 60%,
        transparent 100%);
    -webkit-mask: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.3) 30%,
        rgba(255, 255, 255, 0.15) 60%,
        transparent 100%);
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.5),
                     0 0 40px rgba(255, 255, 255, 0.3),
                     0 0 60px rgba(255, 255, 255, 0.1);
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    }
    to {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.8),
                     0 0 60px rgba(255, 255, 255, 0.5),
                     0 0 90px rgba(255, 255, 255, 0.3);
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.5));
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced reflection effect on hover */
/* .title-container:hover .hero-title-reflection {
    opacity: 0.35;
    transition: all 0.3s ease;
} */

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title,
    .hero-title-reflection {
        font-size: 5rem;
        letter-spacing: 4px;
    }
    
    .floating-shape {
        filter: blur(40px);
        opacity: 0.2;
    }
}

@media (max-width: 480px) {
    .hero-title,
    .hero-title-reflection {
        font-size: 3.5rem;
        letter-spacing: 3px;
    }
}

@media (max-width: 320px) {
    .hero-title,
    .hero-title-reflection {
        font-size: 2.8rem;
        letter-spacing: 2px;
    }
}


/* Music Visualizer */
/* Add this to your existing styles.css */
#visualizer-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1.5;
    pointer-events: none;
}

#visualizer-container canvas {
    display: block;
}
.play-button {
    position: fixed;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Orbitron', monospace;
    font-size: 14px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.play-button:active {
    transform: translateY(0);
}

.play-button.playing {
    background: rgba(0, 255, 127, 0.2);
    border-color: rgba(0, 255, 127, 0.4);
    color: #00ff7f;
}