:root {
    --accent: var(--radio-accent, #e50914);
    --accent-blue: var(--radio-accent-blue, #1e6fe8);
    --bg-dark: #0d0f14;
    --bg-darker: #08090c;
    --bg-card: #14171f;
    --text-muted: #9aa0ac;
}

body {
    background-color: var(--bg-dark);
    color: #f1f1f1;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
}

a {
    text-decoration: none;
}

.navbar-vozstation {
    background-color: var(--bg-darker);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 10px 0;
}

.navbar-vozstation .navbar-brand {
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
    padding: 0;
}

.brand-logo-chip {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 8px 14px;
}

.brand-logo-chip img {
    display: block;
    height: clamp(46px, 6vw, 70px);
    width: auto;
    max-width: 260px;
}

.brand-mic-icon {
    color: var(--accent);
    font-size: 1.5rem;
    margin-right: 8px;
}

.brand-wordmark {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.brand-voz {
    color: var(--accent);
}

.brand-station {
    color: var(--accent-blue);
}

.brand-badge {
    background: #000;
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 2px 10px;
    border-radius: 999px;
    margin-top: 4px;
    width: fit-content;
}

.navbar-vozstation .nav-link {
    color: #d0d3d9;
    font-weight: 500;
}

.navbar-vozstation .nav-link:hover,
.navbar-vozstation .nav-link.active {
    color: var(--accent);
}

.hero {
    background:
        radial-gradient(circle at top right, color-mix(in srgb, var(--accent) 22%, transparent), transparent 60%),
        radial-gradient(circle at top left, color-mix(in srgb, var(--accent-blue) 20%, transparent), transparent 55%),
        var(--bg-darker);
    padding: 170px 0 90px;
    min-height: 92vh;
    display: flex;
    align-items: center;
}

.hero.has-bg-image h1,
.hero.has-bg-image .tagline,
.hero.has-bg-image .live-badge {
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}

.hero h1 {
    font-weight: 800;
    font-size: 3.5rem;
}

.hero .tagline {
    color: var(--text-muted);
    font-size: 1.25rem;
}

.hero .social-icons a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: color-mix(in srgb, var(--accent) 12%, transparent);
    color: var(--accent);
    border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
    border-radius: 999px;
    padding: 8px 20px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 1.4s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 60%, transparent); }
    70% { box-shadow: 0 0 0 10px transparent; }
    100% { box-shadow: 0 0 0 0 transparent; }
}

.player-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.play-btn {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--accent);
    border: none;
    color: #fff;
    font-size: 1.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.play-btn:hover {
    transform: scale(1.05);
}

.play-btn:disabled {
    opacity: 0.6;
    cursor: wait;
}

.now-playing-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.now-playing-title {
    font-weight: 700;
    font-size: 1.1rem;
}

.volume-row input[type="range"] {
    accent-color: var(--accent);
}

.mute-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    padding: 0;
    width: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mute-btn:hover i {
    color: #fff;
}

.visualizer-canvas {
    width: 100%;
    height: 64px;
    display: block;
    margin-top: 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
}

section {
    padding: 70px 0;
}

.section-title {
    font-weight: 800;
    margin-bottom: 8px;
}

.section-subtitle {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.schedule-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 24px;
    height: 100%;
}

.schedule-day {
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-item .time {
    color: var(--text-muted);
    font-size: 0.85rem;
    white-space: nowrap;
}

.schedule-item .program {
    font-weight: 600;
}

.schedule-item .host {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.program-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
}

.program-card-media {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--bg-darker);
}

.program-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.program-card-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-blue));
}

.program-card-time {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

.program-card-body {
    padding: 16px;
}

.program-card-title {
    font-weight: 700;
    margin-bottom: 4px;
}

.program-card-host {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.about-section {
    background: var(--bg-darker);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f1f1f1;
    margin-right: 10px;
    font-size: 1.1rem;
    transition: background 0.15s ease, color 0.15s ease;
}

.social-icons a:hover {
    background: var(--accent);
    color: #fff;
}

.navbar-social a {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
    margin-right: 8px;
}

footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    z-index: 1030;
    transition: transform 0.15s ease;
}

.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.08);
}

@media (max-width: 575.98px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 1.6rem;
        bottom: 16px;
        right: 16px;
    }
}

.mini-player {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.35);
    padding: 10px 0;
    z-index: 1020;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
    pointer-events: none;
}

.mini-player.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mini-play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.15s ease;
}

.mini-play-btn:hover {
    transform: scale(1.06);
}

.mini-player-title {
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.2;
}

.mini-player-status {
    color: var(--text-muted);
    font-size: 0.78rem;
}

body.mini-player-active .whatsapp-float {
    bottom: 88px;
}

@media (max-width: 575.98px) {
    body.mini-player-active .whatsapp-float {
        bottom: 78px;
    }
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 30px;
}

.map-embed {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    overflow: hidden;
    min-height: 300px;
    height: 100%;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: 0;
    display: block;
}

.btn-accent {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.btn-accent:hover {
    background: #c40711;
    border-color: #c40711;
    color: #fff;
}
