/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: 100vh;
}

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

/* Header */
header {
    background: rgba(0, 0, 0, 0.3);
    padding: 40px 0;
    text-align: center;
    border-bottom: 3px solid #e94560;
}

header h1 {
    font-size: 3em;
    color: #e94560;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2em;
    color: #f1f1f1;
    font-style: italic;
}

/* Main Content */
main {
    padding: 40px 0;
}

section {
    margin-bottom: 60px;
}

section h2 {
    font-size: 2em;
    color: #e94560;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(233, 69, 96, 0.3);
    padding-bottom: 10px;
}

/* Featured Section */
.featured-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(233, 69, 96, 0.2);
}

.featured-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.featured-item img {
    max-width: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.featured-info h3 {
    font-size: 2em;
    color: #e94560;
    margin-bottom: 10px;
}

.featured-info .type {
    display: inline-block;
    background: #e94560;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.featured-info p {
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Albums List */
.albums-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.album-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(233, 69, 96, 0.2);
}

.album-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(233, 69, 96, 0.3);
}

.album-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.album-info {
    padding: 20px;
}

.album-info h3 {
    color: #e94560;
    margin-bottom: 10px;
    font-size: 1.5em;
}

.album-info .year {
    color: #999;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.album-info .description {
    color: #ccc;
    line-height: 1.6;
}

.album-info .track-count {
    margin-top: 15px;
    color: #e94560;
    font-weight: bold;
}

/* Songs List */
.songs-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.song-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid rgba(233, 69, 96, 0.2);
    transition: transform 0.3s ease;
}

.song-card:hover {
    transform: translateX(5px);
    border-color: #e94560;
}

.song-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.song-card h3 {
    color: #e94560;
    margin-bottom: 8px;
    font-size: 1.2em;
}

.song-card .album-name {
    color: #999;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.song-card .duration {
    color: #ccc;
    font-size: 0.9em;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px 0;
    text-align: center;
    border-top: 3px solid #e94560;
    margin-top: 60px;
}

footer p {
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }
    
    .featured-item {
        flex-direction: column;
    }
    
    .featured-item img {
        max-width: 100%;
    }
    
    .albums-list,
    .songs-list {
        grid-template-columns: 1fr;
    }
}
