/* Stiluri Generale */
* { box-sizing: border-box; }
body { 
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background: #0f1218; 
    color: #111; 
    margin: 0; padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* HEADER & FOOTER - Rămân închise la culoare */
header, footer { background: #1a1f29; color: white; border: none; }
header { padding: 15px 20px; display: flex; justify-content: center; }
.header-container, .footer-container { width: 100%; max-width: 1200px; display: flex; justify-content: space-between; align-items: center; }
.nav-links { display: flex; gap: 15px; }
.nav-links a { color: #8a94a6; text-decoration: none; font-size: 14px; font-weight: 600; }
.nav-links a.active { color: #fff; }

/* CONTAINER ALB - Design Responsive */
.main-wrapper { 
    flex: 1; 
    background: #ffffff; /* Fundal alb cerut */
    padding: 40px 0 140px 0; 
}

.container-1200 { 
    width: 95%; 
    max-width: 1200px; 
    margin: 0 auto; 
    display: flex; 
    flex-wrap: wrap; /* Permite asezarea pe mobil */
    gap: 30px;
}

/* Zona de continut principal (stânga + info) */
.content-area { flex: 3; display: flex; flex-wrap: wrap; gap: 30px; align-items: flex-start; }
.hero-left { flex: 0 0 300px; }
.hero-right { flex: 1; min-width: 280px; }

/* --- MODIFICARE: Sidebar Sticky --- */
.sidebar-area { 
    flex: 1; 
    min-width: 250px; 
    border-left: 1px solid #eee; 
    padding-left: 20px; 
    position: sticky; 
    top: 20px; 
    height: fit-content; 
}

.station-logo-main {
    width: 100%; max-width: 300px; height: 300px;
    background: #fff; border-radius: 40px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}
.station-logo-main img { width: 80%; height: auto; }

.live-badge {
    background: #fff5f5; color: #000; padding: 6px 14px; border-radius: 20px;
    font-size: 12px; font-weight: 800; display: inline-flex; align-items: center;
    margin-bottom: 20px; border: 1px solid #ffebeb;
}
.dot { height: 8px; width: 8px; background: #ff4d4d; border-radius: 50%; margin-right: 8px; animation: pulse 1.5s infinite; }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }

/* PLAYERUL DE JOS - Sticky */
.player-bar {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: #161b22; color: white; padding: 15px 0;
    border-top: 1px solid #2d343f; z-index: 1000;
}
.player-container-1200 { width: 95%; max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.now-playing { display: flex; align-items: center; gap: 12px; flex: 1; }
.mini-thumb { width: 45px; height: 45px; background: #fff; border-radius: 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mini-thumb img { width: 85%; }
.track-info b { display: block; font-size: 14px; }
.track-info span { color: #8a94a6; font-size: 11px; }

/* Volum Slider */
.volume-control { display: flex; align-items: center; gap: 10px; margin: 0 20px; }
input[type=range] { width: 80px; cursor: pointer; accent-color: #ff4d4d; }

.play-trigger, .hero-play-btn {
    background: #ff4d4d; border: none; border-radius: 50%; color: white; cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: 0.3s;
}
.hero-play-btn { width: 80px; height: 80px; margin-top: 20px; box-shadow: 0 8px 20px rgba(255, 77, 77, 0.3); }
.play-trigger { width: 50px; height: 50px; }

.svg-icon { width: 24px; height: 24px; fill: #fff; }
.btn-pause { display: none; }
.is-playing .btn-play { display: none; }
.is-playing .btn-pause { display: block; }
.is-playing .play-trigger, .is-playing .hero-play-btn { background: #22c55e; }

/* --- MODIFICARE: Centrare Logo și Titlu pe Mobil --- */
@media (max-width: 768px) {
    .content-area { flex-direction: column; align-items: center; text-align: center; }
    
    .hero-left { 
        flex: 0 0 auto; 
        width: 100%; 
        display: flex; 
        justify-content: center; 
        margin-bottom: 20px;
    }
    .station-logo-main { margin: 0 auto; }
    
    .sidebar-area { border-left: none; padding-left: 0; border-top: 1px solid #eee; padding-top: 20px; width: 100%; position: static; }
    .hero-right { 
        text-align: center; 
        display: flex; 
        flex-direction: column; 
        align-items: center; 
        width: 100%;
    }
    .volume-control { display: none; }
}

/* Sectiune SEO Info */
.seo-section { margin-top: 40px; border-top: 2px solid #f4f4f4; padding-top: 30px; }
.seo-section h2 { color: #1a1f29; font-size: 22px; margin-bottom: 15px; border-left: 4px solid #ff4d4d; padding-left: 10px; }
.seo-section p { line-height: 1.6; color: #111; }

/* Grid Frecvente */
.freq-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); 
    gap: 10px; 
    margin: 20px 0;
}
.freq-item { 
    background: #f9f9f9; 
    padding: 8px 12px; 
    border-radius: 8px; 
    font-size: 13px; 
    border: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}
.freq-item b { color: #000; }

/* Contact Box */
.contact-box { 
    background: #1a1f29; 
    color: white; 
    padding: 20px; 
    border-radius: 15px; 
    margin-top: 20px;
    font-size: 14px;
}
.contact-item { margin-bottom: 8px; display: flex; gap: 10px; }
.contact-item span { color: #8a94a6; min-width: 80px; }

/* --- MODIFICARE: Sidebar List (Fără puncte, Hover Negru) --- */
.sidebar-list { list-style: none; padding: 0; margin: 0; }
.sidebar-list li { 
    padding: 4px 0; 
    border-bottom: none; 
    display: block; 
}
.sidebar-list a { 
    text-decoration: none; 
    color: #000; 
    font-weight: 700; 
    font-size: 15px; 
    transition: 0.2s; 
    display: block;
    padding: 10px 15px;
    border-radius: 8px;
    background: #fdfdfd;
    border: 1px solid #eee;
}
.sidebar-list a:hover { 
    color: #fff !important; 
    background: #000 !important; 
    border-color: #000;
}
.mini-dot { display: none !important; } /* Eliminăm bulina definitv */

/* --- SECȚIUNE RECENZII OPTIMIZATĂ --- */
.seo-section {
    width: 100% !important;
    max-width: 100% !important;
    display: block;
    clear: both;
    margin-top: 30px;
    box-sizing: border-box;
}

/* Cardul de Scor General */
.rating-summary-card {
    background: #ffffff;
    border: 1px solid #ddd;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.big-score { 
    font-size: 60px; 
    font-weight: 900; 
    color: #000; 
    line-height: 1;
}

/* Formularul de trimitere - Full Width */
.review-form-container {
    width: 100%;
    background: #fff;
    border: 1px solid #000; 
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-sizing: border-box;
}

.review-form-container input[type="text"],
.review-form-container textarea {
    width: 100% !important;
    max-width: 100%;
    display: block;
    box-sizing: border-box;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    color: #000;
}

/* Stelutele Interactive */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    margin-bottom: 20px;
}
.star-rating input { display: none !important; }
.star-rating label {
    font-size: 35px;
    color: #ddd;
    cursor: pointer;
    padding: 0 5px;
    transition: color 0.2s;
}
.star-rating label:before { content: '\2605'; }
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: #fecb00 !important;
}

/* Lista de Recenzii Afișate */
.reviews-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.review-item {
    width: 100%;
    background: #ffffff;
    padding: 25px;
    border-left: 8px solid #000;
    border: 1px solid #eee;
    border-left: 8px solid #000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    box-sizing: border-box;
    margin-bottom: 20px;
}
.review-user { font-weight: 900; color: #000; font-size: 18px; display: block; }
.review-text { font-size: 16px; color: #000 !important; line-height: 1.6; font-weight: 500; margin-top: 10px; }

/* Butonul de trimitere */
.btn-submit-review {
    background: #000;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s;
}
.btn-submit-review:hover { transform: scale(1.02); background: #333; }

.main-footer {
    background-color: #000000; /* Negru pur */
    color: #ffffff;           /* Text alb */
    padding: 30px 0;          /* Spațiere sus-jos */
    text-align: center;       /* Centrare text */
    width: 100%;
    margin-top: 50px;         /* Distanță față de grila de radio */
}

.main-footer p {
    margin: 0;
    font-size: 14px;
    letter-spacing: 0.5px;
}