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

body {
    font-family: 'Poppins', sans-serif;
    background: transparent;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

h1, h2, h3 {
    font-weight: 600;
}

/* Content Container */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
}

/* Section Titles */
.section-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-container {
        padding: 20px 15px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}
    cursor: pointer;
    transition: background 0.3s;
}

.track-list-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .fullscreen-hero h1 {
        font-size: 2.5rem;
    }
}