:root {
    --bg-primary: #08090d;
    --card-bg: rgba(22, 27, 46, 0.65);
    --card-border: rgba(255, 255, 255, 0.08);
    --accent-color: #ff2a5f;
    --accent-hover: #e0224f;
    --cyan-neon: #00f3ff;
    --wa-color: #25D366;
    --wa-hover: #1EBE5D;
    --text-primary: #ffffff;
    --text-secondary: #9da5bc;
    --border-color: rgba(255, 255, 255, 0.1);
    --status-green: #00e676;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --font-cyber: 'Orbitron', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    transition: background-color 0.5s ease;
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(8, 9, 13, 0.5) 0%, rgba(12, 16, 28, 0.88) 100%), 
                url('Image/bg.png') center/cover no-repeat;
    z-index: -1;
    filter: blur(8px);
    transform: scale(1.05);
    transition: all 0.5s ease;
}

body.power-on .bg-overlay {
    filter: blur(4px);
    background: radial-gradient(circle at center, rgba(0, 243, 255, 0.15) 0%, rgba(255, 42, 95, 0.2) 50%, rgba(8, 9, 13, 0.95) 100%),
                url('Image/bg.png') center/cover no-repeat;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* NAVBAR HEADER */
.navbar {
    background: rgba(12, 15, 25, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--card-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.site-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
}

.site-tagline {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.btn-auth-trigger {
    background: linear-gradient(135deg, var(--accent-color), #b80036);
    color: #fff;
    border: none;
    padding: 9px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 42, 95, 0.3);
    transition: all 0.3s ease;
}

.btn-auth-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 42, 95, 0.5);
}

.user-profile-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 14px;
    border-radius: 30px;
    border: 1px solid var(--card-border);
}

.user-profile-bar img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.btn-logout {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
}

/* STYLING GOOGLE ADSENSE INTEGRATION */
.adsense-top-banner {
    margin-top: 20px;
    text-align: center;
    background: rgba(15, 20, 32, 0.6);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 10px;
    position: relative;
    overflow: hidden;
}

.ad-label-adsense {
    display: block;
    font-size: 0.6rem;
    color: var(--cyan-neon);
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
}

/* HERO PLAYER */
.hero-player-section {
    padding: 30px 0 40px;
}

.now-playing-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    gap: 32px;
    align-items: center;
    border: 1px solid var(--card-border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.artwork-wrapper {
    position: relative;
    width: 210px;
    height: 210px;
    flex-shrink: 0;
    border-radius: 18px;
    overflow: hidden;
}

.artwork-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: src 0.3s ease-in-out;
}

.live-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.75);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--status-green);
    border-radius: 50%;
}

.track-details { flex-grow: 1; }

.live-status-bar {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.listeners-badge {
    color: var(--accent-color);
    font-weight: 700;
}

.track-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.track-artist {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

#visualizer {
    width: 100%;
    height: 40px;
    margin-bottom: 18px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-switch-wave {
    background: #121624;
    border: 2px solid #ff2a5f;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--font-cyber);
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 0 15px rgba(255, 42, 95, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.switch-light {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #555;
    box-shadow: inset 0 0 4px #000;
    transition: all 0.3s ease;
}

.btn-switch-wave:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(255, 42, 95, 0.6);
}

body.power-on .btn-switch-wave {
    background: #000;
    border-color: var(--cyan-neon);
    color: var(--cyan-neon);
    box-shadow: 0 0 20px var(--cyan-neon), inset 0 0 10px var(--cyan-neon);
}

body.power-on .switch-light {
    background-color: var(--cyan-neon);
    box-shadow: 0 0 10px var(--cyan-neon);
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.volume-container input[type="range"] {
    accent-color: var(--accent-color);
    cursor: pointer;
}

/* STYLING BEACON NEWS AGGREGATOR */
.news-section {
    margin-bottom: 40px;
}

.news-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.news-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.news-search-box {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2px 5px 2px 15px;
}

.news-search-box input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 0.85rem;
    width: 160px;
}

.news-search-box button {
    background: var(--accent-color);
    border: none;
    color: #fff;
    padding: 6px 12px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background 0.2s;
}

.news-search-box button:hover {
    background: var(--accent-hover);
}

.news-categories {
    display: flex;
    gap: 8px;
    overflow-x: auto;
}

.news-cat-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    color: var(--text-secondary);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.news-cat-btn.active, .news-cat-btn:hover {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.news-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 42, 95, 0.4);
}

.news-img-wrapper {
    position: relative;
    width: 100%;
    height: 160px;
    background: #101424;
}

.news-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--cyan-neon);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.news-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-card h3 a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.news-card h3 a:hover {
    color: var(--cyan-neon);
}

.news-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 14px;
    flex-grow: 1;
}

.news-date {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.news-status-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 30px;
    color: var(--text-secondary);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
}

/* MAIN CONTENT GRID */
.main-grid {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr;
    gap: 28px;
    margin-bottom: 60px;
}

.content-section, .content-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid var(--card-border);
    margin-bottom: 24px;
}

.section-header h2 {
    font-size: 1.2rem;
}

/* STYLING ASIA POP 40 CHART WIDGET */
.chart-card-section {
    background: linear-gradient(145deg, rgba(22, 27, 46, 0.8), rgba(12, 16, 28, 0.95));
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.ap40-badge {
    background: rgba(0, 243, 255, 0.15);
    color: var(--cyan-neon);
    border: 1px solid var(--cyan-neon);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 12px;
    letter-spacing: 0.5px;
}

.ap40-subtext {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.ap40-chart-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 480px;
    overflow-y: auto;
    padding-right: 5px;
}

.ap40-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    padding: 10px 14px;
    border-radius: 12px;
    transition: all 0.25s ease;
}

.ap40-item:hover {
    background: rgba(0, 243, 255, 0.05);
    border-color: rgba(0, 243, 255, 0.3);
    transform: translateX(4px);
}

.ap40-rank {
    font-family: var(--font-cyber);
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--text-secondary);
    min-width: 28px;
    text-align: center;
}

.ap40-item:nth-child(1) .ap40-rank { color: #ffd700; text-shadow: 0 0 10px rgba(255,215,0,0.5); }
.ap40-item:nth-child(2) .ap40-rank { color: #c0c0c0; }
.ap40-item:nth-child(3) .ap40-rank { color: #cd7f32; }

.ap40-info {
    flex-grow: 1;
    overflow: hidden;
}

.ap40-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ap40-artist {
    font-size: 0.75rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* STYLING WIDGET IKLAN SIDEBAR */
.advertising-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.ad-network-card {
    background: rgba(15, 20, 32, 0.85);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 18px;
    text-align: center;
    position: relative;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.ad-label-network {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 0.6rem;
    color: var(--cyan-neon);
    letter-spacing: 0.5px;
    font-weight: 700;
}

.ad-banner-box {
    background: linear-gradient(135deg, rgba(255, 42, 95, 0.1), rgba(18, 22, 36, 0.8));
    border: 1px dashed var(--accent-color);
    border-radius: 16px;
    padding: 18px;
    text-align: center;
    position: relative;
}

.ad-label {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 10px;
    letter-spacing: 1px;
}

.ad-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.ad-content h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.ad-content p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.btn-ad {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    transition: background 0.2s;
}

.btn-ad:hover {
    background: var(--accent-hover);
}

.program-card {
    display: flex;
    gap: 16px;
    background: rgba(255, 255, 255, 0.03);
    padding: 16px;
    border-radius: 14px;
    margin-bottom: 14px;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.program-card.active-program {
    border-color: #ff2a5f !important;
    background: rgba(255, 42, 95, 0.12) !important;
    box-shadow: 0 0 15px rgba(255, 42, 95, 0.35);
}

.active-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff2a5f;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    animation: pulseGlow 1.5s infinite alternate;
}

.program-logo {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 10px;
}

.program-time {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.program-days {
    color: #00d2d3;
    font-weight: 700;
    font-size: 0.8rem;
    margin-left: 5px;
}

.program-title {
    font-size: 1rem;
    margin: 2px 0;
}

.program-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.btn-request {
    background: transparent;
    border: 1px solid var(--wa-color);
    color: var(--wa-color);
    padding: 5px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-request:hover {
    background: var(--wa-color);
    color: #fff;
}

.event-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--card-border);
}

.event-header-info {
    display: flex;
    gap: 16px;
    align-items: center;
}

.event-date {
    background: var(--accent-color);
    color: #fff;
    font-weight: 800;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.85rem;
    text-align: center;
    white-space: nowrap;
}

.event-details h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.event-details p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.countdown-container {
    background: rgba(0, 0, 0, 0.25);
    padding: 14px;
    border-radius: 12px;
    border: 1px dashed rgba(255, 42, 95, 0.3);
}

.countdown-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-timer {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
}

.timer-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    min-width: 60px;
}

.timer-box span {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    display: block;
    line-height: 1.1;
}

.timer-box small {
    font-size: 0.65rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.event-started-msg {
    color: var(--status-green);
    font-weight: 800;
    font-size: 1rem;
    padding: 8px 0;
}

.chat-card {
    display: flex;
    flex-direction: column;
    height: 420px;
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.chat-messages {
    flex-grow: 1;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-input-area {
    display: flex;
    gap: 10px;
}

.chat-input-area input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    padding: 10px 14px;
    border-radius: 10px;
    color: #fff;
    outline: none;
}

.chat-input-area button {
    background: var(--accent-color);
    border: none;
    color: #fff;
    padding: 0 18px;
    border-radius: 10px;
    cursor: pointer;
}

.chat-input-area button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.quiz-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.status-badge.coming-soon { 
    background: rgba(255, 193, 7, 0.15); 
    color: #ffc107; 
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
}

.quiz-state-box { 
    text-align: center; 
    padding: 24px 12px; 
}

.quiz-state-icon { 
    font-size: 2.5rem; 
    color: #ffc107; 
    margin-bottom: 12px; 
}

.quiz-info-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 6px;
}

.modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background: var(--bg-primary);
    padding: 32px;
    border-radius: 20px;
    width: 100%;
    max-width: 450px;
    position: relative;
    border: 1px solid var(--card-border);
}

.auth-modal-content {
    text-align: center;
    background: radial-gradient(circle at top, rgba(255, 42, 95, 0.15), var(--bg-primary) 70%);
}

.auth-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
}

.auth-logo {
    width: 75px;
    height: 75px;
    object-fit: contain;
    margin-bottom: 10px;
}

.auth-header h2 {
    font-size: 1.3rem;
    font-weight: 800;
}

.auth-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.5;
}

.g-login-wrapper {
    display: flex;
    justify-content: center;
}

.close-modal {
    position: absolute;
    top: 16px; right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.modal-sub {
    font-size: 0.85rem;
    color: var(--accent-color);
    margin-bottom: 18px;
    font-weight: 600;
}

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; margin-bottom: 6px; color: var(--text-secondary); }
.form-group input, .form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    padding: 12px;
    border-radius: 10px;
    color: #fff;
    outline: none;
}

.btn-wa {
    background-color: var(--wa-color);
    color: #fff;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-wa:hover { background-color: var(--wa-hover); }

.footer {
    background: rgba(8, 9, 13, 0.95);
    padding: 48px 0 24px;
    border-top: 1px solid var(--card-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 18px;
    color: #fff;
}

.footer-logo-wrapper { margin-bottom: 12px; }
.footer-logo-img { height: 36px; width: auto; }
.footer-site-name { font-weight: 800; color: #fff; font-size: 1rem; }
.footer-desc { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.5; }
.copyright { font-size: 0.75rem; color: rgba(255, 255, 255, 0.4); }

.clocks-wrapper { display: flex; flex-direction: column; gap: 10px; }
.clock-item {
    display: flex;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.clock-label { color: var(--text-secondary); }
.clock-time { font-weight: 700; color: var(--accent-color); }

.station-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.station-list li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.station-list li a:hover { color: var(--accent-color); }

.social-links { display: flex; gap: 12px; }
.social-btn {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    color: #fff;
    display: flex; justify-content: center; align-items: center;
    text-decoration: none;
    transition: all 0.2s;
}

.social-btn:hover { background: var(--accent-color); border-color: var(--accent-color); }

@keyframes pulseGlow {
    from { opacity: 0.7; }
    to { opacity: 1; }
}

@media (max-width: 992px) {
    .nav-container { position: relative; }
    .mobile-menu-btn { display: block; }

    .nav-menu {
        display: none;
        position: absolute;
        top: 75px; left: 0;
        width: 100%;
        background: rgba(12, 15, 25, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px 20px;
        gap: 18px;
        border-bottom: 1px solid var(--card-border);
        box-shadow: 0 15px 30px rgba(0,0,0,0.6);
        z-index: 999;
    }

    .nav-menu.active { display: flex; }
    .nav-link { font-size: 1rem; padding: 10px 0; width: 100%; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }

    .auth-box {
        margin-top: 10px;
        width: 100%;
        display: flex;
        justify-content: center;
        padding-top: 10px;
    }

    .main-grid, .footer-grid { grid-template-columns: 1fr; }
    .now-playing-card { flex-direction: column; text-align: center; }
    .artwork-wrapper { width: 180px; height: 180px; }
    .live-status-bar, .player-controls { justify-content: center; }
    
    .news-header-wrapper { flex-direction: column; align-items: flex-start; }
    .news-controls { width: 100%; flex-direction: column; align-items: stretch; }
    .news-search-box { width: 100%; }
    .news-search-box input { width: 100%; }
}