* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff4757;
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff4757;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIwMCIgaGVpZ2h0PSI4MDAiIHZpZXdCb3g9IjAgMCAxMjAwIDgwMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjEyMDAiIGhlaWdodD0iODAwIiBmaWxsPSIjMGMwYzBjIi8+CjxjaXJjbGUgY3g9IjYwMCIgY3k9IjQwMCIgcj0iMjAwIiBmaWxsPSJ1cmwoI3JhZGlhbCkiLz4KPGltZ2UgcmVjdHM9IjAiIHg9IjEwJSIgeT0iMjAlIiB3aWR0aD0iODAlIiBoZWlnaHQ9IjYwJSIgaHJlZj0iaHR0cHM6Ly92aWEucGxhY2Vob2xkZXIuY29tLzEyMDA4MDAvMGMwYzBjL2ZmNGY1NyIgdHJhbnNmb3JtPSJyb3RhdGUoMTUpIi8+CjwvcmVnPg==') center/cover;
    color: #fff;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta {
    display: inline-block;
    background: #ff4757;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,71,87,0.4);
}

section {
    padding: 100px 0;
}

#about {
    background: rgba(255,255,255,0.05);
    color: #fff;
}

#about h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #ff4757;
}

#about p {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

#music {
    background: rgba(255,255,255,0.05);
}

#music h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #fff;
}

.tracks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.music-track {
    background: rgba(0,0,0,0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.music-track:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255,71,87,0.3);
}

.music-track img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.track-info {
    padding: 1.5rem;
    color: #fff;
}

.track-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #ff4757;
}

audio {
    width: 100%;
    margin-top: 1rem;
}

.upload-section {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(0,0,0,0.4);
    padding: 2rem;
    border-radius: 10px;
}

.upload-section h3 {
    color: #fff;
    margin-bottom: 1rem;
    text-align: center;
}

#track-upload-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#track-upload-form input,
#track-upload-form button {
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    background: rgba(255,255,255,0.1);
    color: #fff;
}

#track-upload-form input::placeholder {
    color: rgba(255,255,255,0.7);
}

#track-upload-form button {
    background: #ff4757;
    cursor: pointer;
    font-weight: bold;
}

#track-upload-form button:hover {
    background: #ff3742;
}

#contact {
    background: rgba(255,255,255,0.05);
}

#contact h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #fff;
}

#contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#contact input,
#contact textarea {
    padding: 1rem;
    border: none;
    border-radius: 5px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1rem;
}

#contact input::placeholder,
#contact textarea::placeholder {
    color: rgba(255,255,255,0.7);
}

#contact button {
    background: #ff4757;
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

#contact button:hover {
    background: #ff3742;
}

footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    nav ul {
        display: none;
    }
    
    .tracks {
        grid-template-columns: 1fr;
    }
    
    .upload-section {
        padding: 1.5rem;
    }
}
