:root { --primary-color: #8D2A43; --secondary-color: #F4D35E; --background-color: #FFF8F0; --text-color: #333; --light-gray: #f0e6e6; }
body { font-family: 'Poppins', sans-serif; background-color: var(--background-color); color: var(--text-color); margin: 0; padding: 10px; display: flex; justify-content: center; line-height: 1.6; }
.container { width: 100%; max-width: 1200px; margin-bottom: 50px; }
.hero-header { text-align: center; margin-bottom: 40px; padding: 20px 0; border-bottom: 1px solid var(--light-gray); }
.hero-header h1 { font-family: 'Playfair Display', serif; font-size: 4.5em; color: var(--primary-color); margin: 0; line-height: 1.2; }
.hero-header p { font-family: 'Poppins', sans-serif; font-size: 1.1em; text-transform: uppercase; letter-spacing: 3px; color: var(--text-color); margin-top: 5px; }
header { text-align: center; margin-bottom: 20px; }
header h1 { font-family: 'Playfair Display', serif; color: var(--primary-color); font-size: 2.5em; margin-bottom: 10px; }
.player-section { display: flex; flex-direction: column; align-items: center; margin-bottom: 20px; background: #fff; padding: 15px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); }
#youtube-player { width: 100%; max-width: 560px; min-height: 250px; aspect-ratio: 16/9; height: auto; background: #000; border-radius: 8px; margin-bottom: 15px; }
#now-playing { font-weight: bold; color: var(--primary-color); text-align: center; }
.play-list-btn { width: 100%; max-width: 560px; margin-top: 15px; padding: 12px; font-weight: bold; background-color: var(--primary-color); color: white; border: none; cursor: pointer; transition: background-color 0.3s; border-radius: 8px; }
.play-list-btn:hover { background-color: #6a1f32; }
.playlist-container { display: grid; grid-template-columns: 1fr; gap: 20px; }
.playlist-category { background-color: #fff; border-radius: 12px; padding: 20px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.playlist-category h2 { color: var(--primary-color); border-bottom: 2px solid var(--secondary-color); padding-bottom: 10px; margin-top: 0; }
.song-list { list-style: none; padding: 0; min-height: 50px; }
.song-item { display: flex; align-items: center; padding: 10px; background-color: var(--light-gray); border-radius: 8px; margin-bottom: 10px; cursor: pointer; transition: background-color 0.3s; }
.song-item:hover { background-color: #e6dada; }
.song-item img { width: 50px; height: 50px; border-radius: 4px; margin-right: 15px; object-fit: cover; flex-shrink: 0; }
.song-title { flex-grow: 1; font-size: 0.9em; word-break: break-word; }
#footer-stats { text-align: center; margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--light-gray); color: #555; font-size: 1.1em; font-weight: bold; }
@media (max-width: 600px) { .hero-header h1 { font-size: 3em; } }
@media (min-width: 600px) { .playlist-container { grid-template-columns: repeat(2, 1fr); } header h1 { font-size: 3em; } }
@media (min-width: 992px) { .playlist-container { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); } }