:root {
    --primary: #e63946;
    --gold: #b59d5c;
    --dark-bg: #0b0b0b;
    --card-bg: #161616;
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', sans-serif; background: var(--dark-bg); color: var(--text-main); padding-bottom: 90px; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* NAV */
.top-nav { background: #000; padding: 15px 0; border-bottom: 1px solid #222; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.site-logo { height: 45px; mix-blend-mode: lighten; }
.nav-links { display: flex; list-style: none; gap: 20px; }
.nav-links a { color: white; text-decoration: none; font-weight: bold; font-size: 0.85rem; text-transform: uppercase; }
.nav-links a.active { color: var(--primary); }

/* HERO PLAYER */
.hero-player { padding: 40px 0; background: linear-gradient(180deg, #111, #0b0b0b); }
.player-grid { display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: 20px; align-items: center; }
.track-card { background: var(--card-bg); padding: 20px; border-radius: 12px; text-align: center; border: 1px solid #222; position: relative; }
.label { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: #333; padding: 2px 12px; border-radius: 20px; font-size: 0.65rem; font-weight: bold; }
.label.live { background: var(--primary); }

.artwork-large { width: 100%; aspect-ratio: 1; border-radius: 10px; overflow: hidden; margin-bottom: 15px; position: relative; border: 1px solid #333; }
.artwork-large img { width: 100%; height: 100%; object-fit: cover; }
.artwork-small { width: 70px; height: 70px; margin: 0 auto 10px; border-radius: 5px; overflow: hidden; }
.artwork-small img { width: 100%; height: 100%; object-fit: cover; }
.play-btn-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); display: flex; justify-content: center; align-items: center; color: white; font-size: 3rem; opacity: 0; transition: 0.3s; }
.artwork-large:hover .play-btn-overlay { opacity: 1; }
.track-meta h2 { font-size: 1.4rem; }
.track-meta .slogan { margin-top: 10px; font-size: 0.75rem; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; }

/* NYHETER - TOTAL FIX */
.main-content { padding: 50px 0; }
.section-title { border-left: 4px solid var(--primary); padding-left: 15px; margin-bottom: 30px; font-size: 1.8rem; }
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.news-item.with-image { background: var(--card-bg); display: flex; height: 150px; border-radius: 8px; overflow: hidden; border-bottom: 3px solid var(--gold); }
.news-img { flex: 0 0 150px; height: 150px; background: #000; }
.news-img img { width: 100%; height: 100%; object-fit: cover; }
.news-text-content { padding: 15px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; text-align: left; }
.news-text-content h3 { font-size: 1rem; line-height: 1.2; margin-bottom: 5px; color: #fff; }
.news-text-content p { font-size: 0.8rem; color: var(--text-dim); }
.read-more { color: var(--primary); text-decoration: none; font-weight: bold; font-size: 0.75rem; text-transform: uppercase; }

/* FOOTER - TOTAL FIX */
.main-footer { background: #050505; padding: 60px 0; border-top: 1px solid #222; text-align: left; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.footer-logo { height: 50px; margin-bottom: 15px; }
.footer-info h3, .footer-contact-form h3 { color: var(--gold); margin-bottom: 15px; font-size: 1.3rem; }
.footer-info p { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 15px; }
.contact-details p { font-size: 0.9rem; margin-bottom: 5px; }
.contact-details i { color: var(--primary); margin-right: 10px; }

.footer-contact-form { background: #111; padding: 25px; border-radius: 10px; border: 1px solid #222; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.footer-contact-form input, .footer-contact-form textarea { width: 100%; padding: 10px; background: #000; border: 1px solid #333; color: #fff; border-radius: 4px; font-family: inherit; }
.footer-submit { background: var(--primary); color: #fff; border: none; padding: 12px; border-radius: 25px; width: 100%; font-weight: bold; cursor: pointer; margin-top: 10px; text-transform: uppercase; }
.footer-bottom { text-align: center; margin-top: 40px; color: #444; font-size: 0.8rem; border-top: 1px solid #111; padding-top: 20px; }

/* STICKY PLAYER */
.mini-player { position: fixed; bottom: 0; width: 100%; background: rgba(15,15,15,0.95); backdrop-filter: blur(10px); border-top: 2px solid var(--primary); padding: 10px 0; z-index: 2000; }
.player-flex { display: flex; justify-content: space-between; align-items: center; }
.mini-info { display: flex; align-items: center; gap: 12px; }
.mini-art { width: 45px; height: 45px; border-radius: 4px; }
.play-pause-circle { background: var(--primary); border: none; width: 40px; height: 40px; border-radius: 50%; color: #fff; cursor: pointer; }
.mini-controls { display: flex; gap: 20px; align-items: center; }
.volume-box { display: flex; align-items: center; gap: 10px; }
.volume-box input { accent-color: var(--primary); width: 80px; }

@media (max-width: 850px) {
    .player-grid, .footer-grid, .news-grid { grid-template-columns: 1fr; }
    .track-card.side, .volume-box { display: none; }
}