/*
Theme Name: Sorot Rakyat Gold
Author: Ara
Description: Tema Berita Premium Masa Keemasan dengan Streaming Integrasi.
Version: 1.0
*/

/* --- RESET & DASAR --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background-color: #111111; color: #e0e0e0; font-family: 'Times New Roman', Times, serif; padding-bottom: 80px; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; border: 0; }
.container { width: 95%; max-width: 1100px; margin: 0 auto; }

/* --- GRADASI EMAS --- */
.gold-gradient {
    background: linear-gradient(to bottom, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    color: #000; text-shadow: 0px 1px 0px rgba(255,255,255,0.4);
}
.logo { font-size: 1.8rem; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; color: #000; }
.nav-wrapper { padding: 15px 0; display: flex; justify-content: space-between; align-items: center; }

/* Menu Navigasi Bawaan WP */
.main-navigation ul { display: flex; gap: 20px; }
.main-navigation a { font-weight: bold; font-size: 0.9rem; color: #222; text-transform: uppercase; }
.main-navigation a:hover { color: #555; text-decoration: underline; }

/* --- SLOT IKLAN (Widget Area) --- */
.ad-slot { 
    background: #222; border: 1px dashed #444; color: #666; 
    display: flex; align-items: center; justify-content: center; 
    text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; margin: 20px 0; min-height: 90px;
}

/* --- LAYOUT --- */
.main-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; margin-top: 20px; }

/* --- KATEGORI & BERITA --- */
.category-header { border-bottom: 2px solid #D4AF37; margin-bottom: 15px; padding-bottom: 5px; display: flex; justify-content: space-between; align-items: flex-end; }
.cat-title { color: #D4AF37; font-size: 1.4rem; text-transform: uppercase; font-weight: bold; }

.news-item { display: flex; gap: 15px; margin-bottom: 20px; border-bottom: 1px solid #222; padding-bottom: 15px; }
.news-thumb { width: 120px; height: 80px; object-fit: cover; border: 1px solid #333; }
.news-details h4 { color: #fff; font-size: 1rem; margin-bottom: 5px; line-height: 1.3; }
.news-meta { font-size: 0.75rem; color: #D4AF37; text-transform: uppercase; }

/* --- BROADCAST AREA --- */
.broadcast-section { background: #000; border: 1px solid #D4AF37; padding: 10px; margin-bottom: 20px; }
.broadcast-label { background: #D4AF37; color: #000; padding: 2px 10px; font-weight: bold; font-size: 0.8rem; display: inline-block; margin-bottom: 5px; }
.tv-frame { width: 100%; height: 300px; background: #222; display: flex; align-items: center; justify-content: center; color: #555; }

/* --- SIDEBAR --- */
.sidebar-widget { background: #1a1a1a; padding: 15px; border: 1px solid #333; margin-bottom: 20px; }
.widget-title { color: #fff; font-size: 1rem; border-left: 3px solid #D4AF37; padding-left: 10px; margin-bottom: 15px; }

/* --- FOOTER & RADIO --- */
footer { background: #000; border-top: 1px solid #333; color: #666; padding: 20px 0; text-align: center; font-size: 0.8rem; margin-top: 30px; }

.radio-sticky { position: fixed; bottom: 0; left: 0; width: 100%; height: 50px; background: #000; border-top: 2px solid #D4AF37; z-index: 2000; display: flex; align-items: center; }
.radio-container { display: flex; align-items: center; justify-content: space-between; width: 95%; max-width: 1100px; margin: 0 auto; }
.radio-logo { color: #D4AF37; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; }

/* --- WIDGETS --- */
.floating-widgets { position: fixed; bottom: 60px; right: 15px; display: flex; flex-direction: column; gap: 10px; z-index: 1900; }
.float-btn { width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; box-shadow: 0 0 10px rgba(212, 175, 55, 0.5); border: 2px solid #D4AF37; background: #000; color: #D4AF37; cursor: pointer; }

/* Mobile */
@media (max-width: 768px) {
    .main-layout { grid-template-columns: 1fr; }
    .main-navigation ul { display: none; } /* Nanti kita buat menu mobile di langkah lanjut */
}