/* HEADER WRAPPER */
.site-header {
    width: 100%;
    background: radial-gradient(circle at top, #ffcf7a 0%, #5b2b12 55%, #120a06 100%);
    border-bottom: 2px solid rgba(255, 220, 160, 0.6);
    box-shadow:
        0 0 18px rgba(255, 200, 120, 0.7),
        inset 0 -6px 12px rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

/* INNER LAYOUT */
.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* BRAND BLOCK */
.brand-block {
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand-logo {
    height: 72px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.7));
}

/* TEXT */
.station-name {
    margin: 0;
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 1.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f7e3c5;
    text-shadow:
        0 0 8px rgba(255, 240, 210, 0.9),
        0 0 14px rgba(255, 200, 120, 0.6);
}

.station-tagline {
    margin: 2px 0 0;
    font-size: 0.95rem;
    color: #ffe9c9;
    opacity: 0.9;
}

/* BUTTONS */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-btn {
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 230, 180, 0.8);
    background: linear-gradient(135deg, #ffb347, #ffcc33);
    color: #3b1b0a;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    box-shadow:
        0 0 12px rgba(255, 200, 120, 0.9),
        inset 0 0 6px rgba(255, 255, 255, 0.4);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.header-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 18px rgba(255, 220, 160, 1),
        inset 0 0 8px rgba(255, 255, 255, 0.6);
}
