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

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 35, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #00ffff;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h1 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #00ffff;
    text-shadow: 0 0 20px #00ffff;
}

.tagline {
    font-size: 0.8rem;
    color: #ff00ff;
    letter-spacing: 2px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav a:hover {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-text h2 {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(45deg, #00ffff, #0080ff);
    color: #000;
}

.btn-secondary {
    background: transparent;
    color: #00ffff;
    border: 2px solid #00ffff;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

/* UFO Animation */
.ufo-animation {
    position: relative;
    width: 400px;
    height: 400px;
}

.ufo {
    width: 150px;
    height: 60px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 3s ease-in-out infinite;
}

.ufo::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 40px;
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    border-radius: 50%;
}

.beam {
    width: 200px;
    height: 300px;
    background: linear-gradient(transparent, rgba(0, 255, 255, 0.3));
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    clip-path: polygon(40% 0%, 60% 0%, 100% 100%, 0% 100%);
    animation: beam 2s ease-in-out infinite alternate;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-20px); }
}

@keyframes beam {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

/* Latest Track Section */
.latest-track {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #00ffff;
    text-shadow: 0 0 20px #00ffff;
}

.track-showcase {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.vinyl-effect {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #333 30%, #000 70%);
    border-radius: 50%;
    position: relative;
    animation: spin 10s linear infinite;
}

.track-image {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.track-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ff00ff;
}

.track-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
    color: #ccc;
}

.track-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-play, .btn-download {
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    color: #000;
}

/* Music Section */
.music {
    padding: 5rem 0;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.album-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s;
}

.album-card:hover {
    transform: translateY(-10px);
}

.album
