:root {
    --primary: #0f172a;
    --accent: #f97316;
    --light: #f8fafc;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; background: var(--light); color: #334155; scroll-behavior: smooth; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* PLAYER BAR */
.live-player-bar { background: var(--primary); color: white; padding: 12px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
.player-flex { display: flex; align-items: center; justify-content: space-between; }
.now-playing { display: flex; align-items: center; gap: 15px; flex: 1; }
.cover-wrapper { position: relative; width: 65px; height: 65px; }
#current-cover { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; border: 2px solid var(--accent); transition: opacity 0.5s ease; }
.live-badge { position: absolute; bottom: -5px; left: 50%; transform: translateX(-50%); background: #ef4444; font-size: 9px; padding: 2px 6px; border-radius: 4px; font-weight: bold; animation: pulse 2s infinite; }

.track-info h4 { font-size: 14px; margin-bottom: 2px; color: var(--white); }
.track-info p { font-size: 12px; color: #94a3b8; }

.control-btn { background: var(--accent); border: none; width: 50px; height: 50px; border-radius: 50%; color: white; cursor: pointer; font-size: 20px; transition: 0.3s; }
.control-btn:hover { background: #ea580c; transform: scale(1.05); }
.volume-container { display: flex; align-items: center; gap: 10px; margin-left: 20px; color: #94a3b8; }
#volume-slider { accent-color: var(--accent); width: 80px; }

/* HEADER */
header { background: white; padding: 20px 0; border-bottom: 1px solid #e2e8f0; }
nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 800; font-size: 24px; color: var(--primary); }
.logo span { color: var(--accent); }
.nav-links { display: flex; list-style: none; gap: 20px; }
.nav-links a { text-decoration: none; color: var(--primary); font-weight: 600; font-size: 14px; text-transform: uppercase; }
.nav-links a:hover { color: var(--accent); }

/* HERO */
.hero { height: 50vh; background: linear-gradient(rgba(15,23,42,0.7), rgba(15,23,42,0.7)), url('https://images.unsplash.com/photo-1478737270239-2f02b77fc618?q=80&w=1500') center/cover; display: flex; align-items: center; justify-content: center; text-align: center; color: white; }
.hero h1 { font-size: 3rem; margin-bottom: 10px; }
.btn-main { background: var(--accent); color: white; padding: 12px 25px; border-radius: 30px; text-decoration: none; font-weight: 600; margin: 5px; display: inline-block; }

/* GRIDS */
.section-title { margin: 40px 0 20px; border-left: 5px solid var(--accent); padding-left: 15px; font-size: 24px; color: var(--primary); }
.history-grid, .news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }

.history-item { display: flex; align-items: center; background: white; padding: 15px; border-radius: 10px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.history-cover { width: 55px; height: 55px; border-radius: 5px; margin-right: 15px; object-fit: cover; }
.history-time { font-size: 11px; color: var(--accent); font-weight: 700; }

.news-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.news-img { height: 180px; background-size: cover; background-position: center; }
.news-body { padding: 20px; }
.news-body h3 { font-size: 16px; margin-bottom: 10px; color: var(--primary); }
.read-more { color: var(--accent); text-decoration: none; font-weight: 700; font-size: 13px; }

@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }
@media (max-width: 768px) { .nav-links, .volume-container, .player-spacer { display: none; } .hero h1 { font-size: 2rem; } }