/* Logo circular grande entre header y player */
.logo-circular {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 100px auto auto auto;
    z-index: 2;
}
.logo-circular img {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18), 0 2px 8px rgba(253,122,0,0.10);
    background: rgba(255,255,255,0.12);
    object-fit: cover;
}

body {
    font-family: 'Impact', 'Montserrat', 'Segoe UI', Arial, sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    background: linear-gradient(135deg, #4d3405 0%, #653203e5 100%);
    color: #2d1a00;
    position: relative;
}
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
    background: url('imagenes/fondo.jpg') center center / cover no-repeat;
    pointer-events: none;
}
#creditos-img {
    position: fixed;
    bottom: 8px;
    right: 12px;
    z-index: 100;
    font-size: 0.95em;
    color: #fff;
    background: rgba(253,122,0,0.55);
    padding: 4px 12px;
    border-radius: 12px;
    font-family: 'Montserrat', Arial, sans-serif;
    box-shadow: 0 2px 8px rgba(253,122,0,0.10);
    letter-spacing: 0.01em;
}
.navbar {
    width: 100%;
    background: #fd7a00e5;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 0.7em 0;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(253,122,0,0.10);
}
.navbar a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1em;
    padding: 8px 18px;
    border-radius: 20px;
    transition: background-color 0.2s, color 0.2s;
    background: rgba(255,255,255,0.08);
}
.navbar a:hover, .navbar a:focus {
    background: #fd7a00;
    color: #fff4e0;
}
.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 13px 7px 7px 7px;
    background: #fd7a00e5;
    box-shadow: 0 4px 16px rgba(253,122,0,0.10);
    margin-bottom: 6px;
    position: relative;
    z-index: 2;
}
.logo-placeholder {
    width: 90px;
    height: 90px;
    font-size: 0.6em;
    border-width: 2px;
    margin-bottom: 18px;
}
.logo-placeholder img {
    width: 110px !important;
    height: 110px !important;
    padding-bottom: 10px;
}
.slogan {
    font-size: 0.93em;
    margin-bottom: 3px;
    color: #fff;
    font-weight: 200;
    text-shadow: 0 2px 8px rgba(253,122,0,0.18);
}
.audio-player {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    flex: 1;
    min-height: 200px;
}

audio {
    width: 100%;
    max-width: 400px;
    border: none;
    background-color: #67240b;
    color: #673f0b;
}
.footer {
    margin-top: auto;
    background: #4f2803;
    color: #fff4e0;
    padding: 28px 20px;
    text-align: center;
    font-size: 1.08em;
    letter-spacing: 0.02em;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    box-shadow: 0 -2px 8px rgba(253,122,0,0.10);
    position: relative;
    z-index: 2;
}
.footer strong {
    color: #fff;
}
.station-name {
    color: #271408;
    font-size: 1.35em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4px;
    margin-top: 2px;
    text-shadow: 0 2px 8px rgba(253,122,0,0.18);
    border-radius: 8px;
    padding: 2px 10px;
    box-shadow: 0 2px 8px rgba(253,122,0,0.10);
    display: inline-block;
}
.footer-icon-link {
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
    margin-left: 4px;
    margin-right: 8px;
    transition: color 0.2s;
}
.footer-icon-link:hover {
    color: #ffe0b2;
}
.footer-icon {
    font-size: 1.1em;
    vertical-align: middle;
    margin-right: 4px;
}
.current-song {
    text-align: center;
    font-size: 1.15em;
    font-weight: 600;
    color: #2d1a00;
    margin: 18px 0 10px 0;
    letter-spacing: 0.03em;
    background: rgb(255, 255, 255);
    border-radius: 12px;
    padding: 8px 18px;
    box-shadow: 0 2px 8px rgba(253,122,0,0.08);
    display: inline-block;
}
@media (max-width: 480px) {
    body {
        font-size: 1em;
        min-height: 100vh;
        padding: 0;
    }
    .navbar {
        gap: 8px;
        font-size: 0.95em;
        padding: 0.5em 0;
    }
    .navbar a {
        font-size: 1em;
        padding: 4px 8px;
    }
    .header {
        padding: 8px 3px 4px 3px;
        border-bottom-left-radius: 18px;
        border-bottom-right-radius: 18px;
        margin-bottom: 3px;
        position: relative;
        z-index: 2;
    }
    .logo-placeholder {
        width: 60px;
        height: 60px;
        font-size: 0.45em;
        border-width: 1px;
        margin-bottom: 4px;
    }
    .logo-placeholder img {
        width: 45px !important;
        height: 45px !important;
    }
    .slogan {
        font-size: 0.3em;
        margin-bottom: 2px;
        color: #fff;
        font-weight: 600;
        text-shadow: 0 2px 8px rgba(253,122,0,0.18);
    }
    .audio-player {
        margin: 18px 0;
        min-height: 120px;
    }
    audio {
        width: 95vw;
        min-width: 180px;
        font-size: 0.95em;
        border-radius: 8px;
    }
    .footer {
        padding: 16px 8px;
        font-size: 0.95em;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        position: relative;
        z-index: 2;
    }
    #creditos-img {
        font-size: 0.85em;
        padding: 2px 8px;
        right: 6px;
        bottom: 4px;
    }
    .station-name {
        font-size: 0.95em;
        padding: 1px 6px;
        margin-bottom: 2px;
        margin-top: 1px;
    }
    .current-song {
        font-size: 1em;
        padding: 6px 10px;
        margin: 12px 0 6px 0;
    }
}
