/*
Theme Name: Serinav Radio Ultimate Pro
Version: 3.5.0
Author: Yazılım Mimarı
*/

:root {
    --brand-red: #E11D48;
    --brand-dark: #020617;
    --brand-dark-soft: #0F172A;
    --bg-body: #F8FAFC;
    --white: #FFFFFF;
    --border: rgba(0,0,0,0.06);
    --radius-xl: 40px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* BASE */
* { margin:0; padding:0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: var(--bg-body); color: #1E293B; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 25px; }

/* HEADER PRO */
.site-header-pro { background: rgba(255,255,255,0.9); backdrop-filter: blur(15px); height: 85px; display: flex; align-items: center; position: sticky; top:0; z-index: 1000; border-bottom: 1px solid var(--border); }
.header-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo-area .site-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { font-size: 1.8rem; color: var(--brand-red); }
.logo-text { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 900; color: var(--brand-dark); }
.logo-text span { color: var(--brand-red); }

.primary-menu-pro { display: flex; list-style: none; gap: 30px; }
.primary-menu-pro a { font-weight: 700; text-transform: uppercase; font-size: 0.85rem; color: var(--brand-dark); position: relative; text-decoration: none; }
.primary-menu-pro a::after { content:''; position: absolute; bottom:-5px; left:0; width:0; height:2px; background: var(--brand-red); transition: 0.3s; }
.primary-menu-pro a:hover::after { width:100%; }

/* RADIO ROOM (SINGLE) */
.radio-room-layout { padding: 60px 0 120px; background: #020617; color: white; min-height: 100vh; }
.player-master-container { background: rgba(255,255,255,0.03); border-radius: var(--radius-xl); padding: 50px; text-align: center; border: 1px solid rgba(255,255,255,0.05); backdrop-filter: blur(20px); }

.visualizer-container { width: 280px; height: 280px; margin: 0 auto 30px; position: relative; }
.station-artwork-center { width: 180px; height: 180px; border-radius: 50%; overflow: hidden; position: absolute; top: 50px; left: 50px; border: 6px solid rgba(255,255,255,0.1); box-shadow: 0 0 40px rgba(225, 29, 72, 0.2); }
.station-artwork-center img { width: 100%; height: 100%; object-fit: cover; }

.status-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.05); padding: 6px 16px; border-radius: 100px; margin-bottom: 25px; border: 1px solid rgba(255,255,255,0.1); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #475569; transition: 0.3s; }
.status-loading .status-dot { background: #fbbf24; box-shadow: 0 0 12px #fbbf24; }
.status-playing .status-dot { background: #22c55e; box-shadow: 0 0 12px #22c55e; animation: pulse 1.5s infinite; }
.status-error .status-dot { background: #ef4444; }

.pro-control-box { display: flex; align-items: center; justify-content: center; gap: 40px; margin-top: 50px; background: rgba(255,255,255,0.02); padding: 25px; border-radius: 24px; }
.btn-main-play { width: 80px; height: 80px; border-radius: 50%; background: var(--brand-red); border: none; color: white; font-size: 1.8rem; cursor: pointer; transition: 0.3s; box-shadow: 0 15px 30px rgba(225, 29, 72, 0.4); }
.btn-main-play:hover { transform: scale(1.1); background: white; color: var(--brand-red); }
.ctrl-btn { background: none; border: none; color: #94a3b8; font-size: 1.3rem; cursor: pointer; transition: 0.3s; }
.ctrl-btn:hover { color: white; }
#volumeSlider { accent-color: var(--brand-red); width: 100px; cursor: pointer; }

/* RESPONSIVE */
@media (max-width: 992px) { .mobile-hide { display: none; } .mobile-menu-trigger { background: var(--brand-dark); color: white; border: none; width: 45px; height: 45px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; } }

@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.4; } 100% { opacity: 1; } }