@font-face {
    font-family: "BBH Bartle-Regular";
    src: url("../fonts/BBHBartle-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "Signatra";
    src: url("../fonts/Signatra.ttf") format("truetype");
}

:root {
    --accent-color: #ff8e53; /* Soft premium orange */
    --accent-glow: rgba(255, 142, 83, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(0, 0, 0, 0.12);
    --text-main: #000000;
    --text-muted: rgba(0, 0, 0, 0.7);

    /* Ported Wave design tokens linked to AVAVA colors */
    --primary-orange: #d14a1c; /* AVAVA rust-orange */
    --primary-orange-hover: #b03810;
    --bg-main: #ffffff;
    --border-grey: #b3b3b3;
    --accent-teal: #1299ad;
    --focus-blue: #4a90e2;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Page Wrapper to center content on wide displays */
.page-wrapper {
    width: 100%;
    max-width: 2560px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.9);
    border-left: 1px solid var(--glass-border);
    border-right: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
}

/* SECTION 1: Header / Hero Slide (2560.jpg Background) */
.header-section {
    width: 100%;
    height: 100vh;
    min-height: 800px;
    max-height: 1440px;
    position: relative;
    z-index: 1;
    background-image: url('../images/2560.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0 40px 0 40px;
}

/* TOP NAVIGATION HEADER */
.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0 8px 0;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.top-header .logo {
    position: relative;
    width: 274px;
    height: 70px;
    cursor: pointer;
}

.top-header .logo-title {
    top: 0;
    font-family: "BBH Bartle-Regular", sans-serif;
    color: #d14a1c;
    font-size: 38px;
    letter-spacing: -1.5px;
    position: absolute;
    left: 0;
    font-weight: 400;
    line-height: normal;
}

.top-header .logo i {
    position: absolute;
    font-size: 47px;
    color: #000000;
    top: 11px;
    left: 205px;
    height: 47px;
}

.top-header .logo-subtitle {
    position: absolute;
    top: 42px;
    left: 0;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 300;
    color: #000000;
    font-size: 20px;
    letter-spacing: 7px;
    line-height: normal;
    white-space: nowrap;
}

.top-header .top-menu {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-left: auto;
    margin-right: 50px;
}

.top-header .top-menu .menu-item {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
}

.top-header .top-menu .menu-item a {
    color: #0b191e;
    text-decoration: none;
    transition: color 0.25s ease-out;
}

.top-header .top-menu .menu-item:hover a {
    color: #f46127;
}

.top-header .top-menu .menu-item.active a {
    color: #ffffff;
}

.top-header .top-menu .menu-item.active::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -32px;
    height: 3px;
    width: calc(100% + 20px);
    background-color: #ffffff;
}

.top-header .right-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.top-header .search-button {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.top-header .search-button:hover {
    background-color: rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.top-header .search {
    font-size: 20px;
    color: #000000;
}

.top-header .mobile-menu-btn {
    display: none;
    font-size: 28px;
    color: var(--accent-color);
    cursor: pointer;
    z-index: 15;
}

.top-header .listen-live-button {
    width: 210px;
    height: 52px;
    background: transparent !important;
    border: none !important;
    border-radius: 0px !important;
    box-shadow: none !important;
    cursor: pointer;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0;
    transition: transform 0.2s ease;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 1px;
    position: relative;
}

.top-header .listen-live-button * {
    position: relative;
    z-index: 2;
}

.top-header .listen-live-button:hover {
    transform: translateY(-1px);
}

.top-header .listen-live-button.is-playing .fa-waveform-lines {
    display: none;
}

.top-header .listen-live-button.is-playing .css-waveform {
    display: flex !important;
}

.top-header .listen-live-button .css-waveform span {
    background-color: #ffffff;
}

/* CSS WAVEFORM ANIMATION */
.css-waveform {
    display: none;
    align-items: flex-end;
    gap: 2px;
    height: 16px;
    margin-left: 5px;
}

.css-waveform span {
    display: block;
    width: 3px;
    background-color: #ff7a00;
    border-radius: 2px;
    height: 4px;
    animation: wave-bar 1s ease-in-out infinite;
}

.css-waveform span:nth-child(1) { animation-delay: 0s; }
.css-waveform span:nth-child(2) { animation-delay: 0.2s; }
.css-waveform span:nth-child(3) { animation-delay: 0.4s; }
.css-waveform span:nth-child(4) { animation-delay: 0.1s; }
.css-waveform span:nth-child(5) { animation-delay: 0.3s; }

@keyframes wave-bar {
    0%, 100% { height: 4px; }
    50% { height: 16px; }
}

/* HERO CONTAINER & SCROLL DOWN */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 240px; /* Leave space for bottom scale box */
    box-sizing: border-box;
    flex-grow: 1;
}

.vertical-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: -70px;
    flex-shrink: 0;
}

.vertical-line .line-top {
    width: 2px;
    height: 350px;
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 100%);
}

.vertical-line .scroll-text {
    writing-mode: vertical-rl;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    color: #000000;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.vertical-line .arrow-bottom {
    color: var(--accent-color);
    font-size: 24px;
    animation: bounce-vertical 2s infinite;
}

/* HERO LEFT CONTENT */
.hero-left-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    max-width: 750px;
    box-sizing: border-box;
    margin-left: 60px; /* Space from vertical line */
}

.brand-logo-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.brand-logo-text {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 2px;
    color: #000000;
    text-transform: uppercase;
}

.brand-logo-text span {
    color: var(--accent-color);
    margin-left: 4px;
}

.brand-logo-waveform {
    display: flex;
    align-items: center;
}

.hero-on-air {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 10.5rem;
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -6px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-on-air span {
    color: var(--accent-color);
}

.hero-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: #000000;
}

.hero-description {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 30px;
}

.btn-container {
    margin-bottom: 40px;
}

.btn-listen-live {
    font-family: 'Roboto Condensed', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 6px 32px 6px 6px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    text-decoration: none;
    color: #000000;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-listen-live:hover {
    border-color: var(--accent-color);
    box-shadow: 0 0 25px var(--accent-glow);
    transform: translateY(-2px);
}

.play-icon-circle {
    width: 48px;
    height: 48px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1rem;
    padding-left: 3px;
    box-shadow: 0 0 15px var(--accent-glow);
}

.bottom-features {
    display: flex;
    gap: 40px;
}

.feature-col {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    font-size: 2rem;
    color: var(--accent-color);
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: #000000;
    letter-spacing: 1px;
    line-height: 1.1;
    text-transform: uppercase;
}

.feature-sub {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
    line-height: 1.1;
    text-transform: uppercase;
}

/* PORTED RADIO SHKALA BOX - Sleek Dark Glassmorphism */
.radio-shkala-box {
    position: absolute;
    bottom: 0;
    left: 40px;
    width: calc(100% - 80px);
    height: 199px;
    background: rgb(204 213 215 / 75%);
    border-radius: 25px;
    border: 1px solid rgb(35 69 76);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 10;
}

.close-radio-shkala {
    position: absolute;
    top: -12px;
    right: -12px;
    color: #fff;
    cursor: pointer;
    z-index: 100;
    transition: color 0.3s ease;
    font-size: 35px;
    line-height: 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-radio-shkala:hover {
    color: #d14a1c;
}

.radio-shkala-box .rectangle {
    position: relative;
    width: clamp(80px, 15vw, 159px);
    height: clamp(80px, 15vw, 159px);
    object-fit: cover;
    border-radius: 12px;
    padding: 5px;
    border: 0.5px solid rgb(41 51 52);
    flex-shrink: 0;
}

.scale-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding-top: 10px;
}

.scale-container {
    position: relative;
    flex: 1;
    margin: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 140px;
    cursor: ew-resize;
}

.radio-scale-svg {
    width: 100%;
    height: auto;
}

.img-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 110px;
    display: flex;
    z-index: 10;
    transition: left 0.1s ease-out;
}

.img-wrapper.dragging {
    transition: none;
}

.vector-4 {
    height: 100%;
}

.arrow-left-from, .arrow-right-from {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.arrow-left-from { margin: 0 -20px 0 20px; }
.arrow-right-from { margin: 0 20px 0 -20px; }

.arrow-left-from i, .arrow-right-from i {
    font-size: 28px;
    color: #000000;
    transition: color 0.2s ease, transform 0.2s ease;
}

.arrow-left-from:hover i, .arrow-right-from:hover i {
    color: #ff7a00;
    transform: scale(1.1);
}

.radio-play-btn {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    border: 2px solid #d14a1c;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    margin: 10px;
    flex-shrink: 0;
}

.radio-play-btn:hover {
    background-color: rgba(255, 122, 0, 0.15);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 122, 0, 0.3);
}

.radio-play-btn i {
    font-size: 24px;
    color: #d14a1c;
}

.radio-play-btn.playing {
    background-color: #ff7a00;
}

/* MOBILE DROPDOWN OVERLAY */
.mobile-dropdown-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(3, 3, 3, 0.98);
    z-index: 1000;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-dropdown-menu.open {
    top: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    color: var(--accent-color);
    cursor: pointer;
}

.mobile-menu-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.mobile-menu-items .menu-item {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.mobile-menu-items .menu-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.25s ease-out;
}

.mobile-menu-items .menu-item:hover a {
    color: #f46127;
}

.mobile-menu-items .menu-item.active a {
    color: #f46127;
}

/* Micro-animations */
@keyframes bounce-vertical {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Responsive Overrides */
@media (max-width: 1100px) {
    .top-header .top-menu {
        display: none;
    }
    .top-header .mobile-menu-btn {
        display: block;
    }
    .header-section {
        padding: 0 30px;
    }
}

@media (max-width: 991px) {
    .vertical-line {
        display: none;
    }
    .hero-left-content {
        margin-left: 0;
    }
    .hero-container {
        margin-bottom: 200px;
        flex-grow: 0;
    }
    .radio-shkala-box {
        position: relative;
        left: auto;
        width: 100%;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .header-section {
        height: auto;
        min-height: 100vh;
        padding: 0 20px;
    }
    .top-header {
        padding: 20px 0;
    }
    .top-header .listen-live-button {
        display: none;
    }
    .hero-on-air {
        font-size: 6rem;
        letter-spacing: -4px;
    }
    .hero-subtitle {
        font-size: 1.8rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .radio-shkala-box {
        flex-direction: column;
        height: auto;
        padding: 20px;
        gap: 15px;
        margin-bottom: 0;
        border-radius: 25px;
    }
    .scale-wrapper {
        width: 100%;
    }
    .scale-container {
        margin: 0 10px;
    }
    .volume-slider-container {
        width: 140px;
    }
}

/* ==========================================================================
   MONUMENTAL VERSION HERO STYLES (Syncopate Giant Fonts Layout)
   ========================================================================== */
.monumental-version {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    padding: 40px 0;
    margin-left: 80px;
}

.monumental-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.glowing-orb {
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-color);
    animation: pulse-glow 1.5s infinite alternate;
}

.hero-giant-title {
    font-family: 'Syncopate', sans-serif;
    font-size: 5.8rem;
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -2px;
    margin-bottom: 35px;
    text-transform: uppercase;
    color: #000000;
}

.hero-giant-title .accent-outline {
    -webkit-text-stroke: 2px #000000;
    color: transparent;
}

.hero-giant-sub {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: #000000;
    margin-bottom: 40px;
    text-transform: uppercase;
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
}

/* SPEC GRID */
.monumental-spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 45px;
    max-width: 650px;
}

.spec-card {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.spec-card:hover {
    background: rgba(255, 142, 83, 0.05);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.spec-label {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
}

.spec-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #000000;
}

/* FUTURISTIC PLAYER BAR */
.futuristic-player-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 100px;
    padding: 12px 30px 12px 12px;
    max-width: 580px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.futuristic-player-bar:hover {
    border-color: var(--accent-color);
    box-shadow: 0 25px 50px rgba(255, 142, 83, 0.12);
}

.futuristic-play-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: #000000;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 142, 83, 0.3);
    flex-shrink: 0;
}

.futuristic-play-btn:hover {
    background-color: #e57e43;
    transform: scale(1.06);
}

.player-track-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.track-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(0, 0, 0, 0.5);
}

.live-blink-dot {
    width: 6px;
    height: 6px;
    background-color: #ff3b30;
    border-radius: 50%;
    animation: pulse-dot 1s infinite alternate;
}

@keyframes pulse-dot {
    from { opacity: 0.3; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1.1); }
}

.track-title-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
}

.mini-equalizer-wrapper {
    display: flex;
    align-items: center;
}

.mini-eq {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 16px;
}

.mini-eq span {
    display: block;
    width: 3px;
    background-color: var(--accent-color);
    height: 3px;
    border-radius: 2px;
    animation: eq-bar-mini 0.8s ease-in-out infinite alternate;
}

.mini-eq.paused span {
    animation-play-state: paused;
    height: 3px !important;
}

.mini-eq span:nth-child(1) { animation-duration: 0.4s; }
.mini-eq span:nth-child(2) { animation-duration: 0.6s; }
.mini-eq span:nth-child(3) { animation-duration: 0.5s; }
.mini-eq span:nth-child(4) { animation-duration: 0.7s; }
.mini-eq span:nth-child(5) { animation-duration: 0.3s; }

@keyframes eq-bar-mini {
    0% { height: 3px; }
    100% { height: 16px; }
}

@media (max-width: 1100px) {
    .monumental-version {
        margin-left: 40px;
    }
    .hero-giant-title {
        font-size: 4.8rem;
    }
}

@media (max-width: 768px) {
    .monumental-version {
        margin-left: 0;
        padding: 20px 0;
    }
    .hero-giant-title {
        font-size: 3.2rem;
    }
    .hero-giant-sub {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }
    .monumental-spec-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }
    .futuristic-player-bar {
        border-radius: 20px;
        padding: 15px;
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    .futuristic-play-btn {
        align-self: center;
    }
    .track-title-name {
        text-align: center;
    }
    .track-status {
        justify-content: center;
    }
    .mini-equalizer-wrapper {
        justify-content: center;
    }
}

/* ==========================================================================
   SKETCH / WATERCOLOR VERSION HERO STYLES (Custom rustic sketch look)
   ========================================================================== */

.sketch-version {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    margin-left: 40px;
}

.hero-accent-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #142a3a;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-accent-tag .orange-dot {
    width: 8px;
    height: 8px;
    background-color: #d14a1c;
    border-radius: 50%;
    display: inline-block;
}

.hero-sketch-title {
    font-family: 'Rubik Distressed', 'Special Elite', sans-serif;
    font-size: 9rem;
    font-weight: 400;
    line-height: 1.0;
    letter-spacing: normal;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #0c1c28; /* Dark slate charcoal color */
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.03);
}

@media (max-width: 1920px) {
    .hero-sketch-title {
        font-size: 7rem;
    }
}

.hero-sketch-title .accent-orange {
    color: #d14a1c; /* Warm textured rust-orange */
    display: inline-block;
}

@media (min-width: 1200px) and (max-height: 1080px) {
    .hero-sketch-title .accent-orange {
        font-size: 185px;
        line-height: 0.95;
    }
}

@media (min-width: 2000px) {
    .vertical-line {
        margin-top: -140px;
    }
    .vertical-line .line-top {
        height: 500px;
    }
    .hero-sketch-title .accent-orange {
        font-size: 285px;
        line-height: 0.95;
    }
}

.hero-sketch-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: #4a5c6a; /* Muted gray-blue */
    line-height: 1.65;
    max-width: 620px;
    margin-bottom: 40px;
}

/* Sketched Buttons styling */
.hero-sketch-buttons {
    display: flex;
    gap: 25px;
    margin-bottom: 50px;
    align-items: center;
}

/* Solid Sketched Button */
.btn-sketch-solid {
    position: relative;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 1px;
    color: #ffffff;
    background: transparent !important;
    border: none !important;
    border-radius: 0px !important;
    padding: 15px 35px;
    cursor: pointer;
    box-shadow: none !important;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-sketch-solid * {
    position: relative;
    z-index: 2;
}

.btn-sketch-solid:hover {
    transform: translateY(-1px);
}

.btn-sketch-solid:active {
    transform: translateY(1px);
}

/* Outlined Sketched Button */
.btn-sketch-outline {
    position: relative;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 1px;
    color: #0c1c28;
    background: transparent !important;
    border: none !important;
    border-radius: 0px !important;
    padding: 15px 35px;
    cursor: pointer;
    box-shadow: none !important;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-sketch-outline * {
    position: relative;
    z-index: 2;
}

.btn-sketch-outline:hover {
    transform: translateY(-1px);
}

.btn-sketch-outline:active {
    transform: translateY(1px);
}

.btn-sketch-outline .btn-icon {
    font-weight: 700;
    font-size: 1.1rem;
    color: #0c1c28; /* inherits dark slate */
}

/* SVG styling classes for wobbly hover transitions */
.sketch-button-svg {
    pointer-events: none;
}

.sketch-button-svg .sketch-fill {
    fill: #d14a1c;
    transition: fill 0.2s ease;
}

.btn-sketch-solid:hover .sketch-fill,
.listen-live-button:hover .sketch-fill {
    fill: #df5425;
}

.sketch-button-svg .sketch-fill-outline {
    fill: transparent;
    transition: fill 0.2s ease;
}

.btn-sketch-outline:hover .sketch-fill-outline {
    fill: rgba(12, 28, 40, 0.05);
}

.sketch-button-svg .sketch-border {
    stroke: #0c1c28;
    stroke-width: 1.5;
}

.sketch-button-svg .sketch-border-double {
    stroke: #0c1c28;
    stroke-width: 1.0;
}

.sketch-button-svg .sketch-diag {
    stroke: #0c1c28;
    stroke-width: 0.8;
}

.sketch-button-svg .sketch-diag-faint {
    stroke: #0c1c28;
    stroke-width: 0.5;
    opacity: 0.55;
}

/* Stats Row styling */
.hero-sketch-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 700px;
    border-top: 1.5px solid rgba(12, 28, 40, 0.1);
    padding-top: 30px;
    margin-top: 10px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.stat-icon-wrapper {
    font-size: 2.2rem;
    color: #d14a1c; /* orange icons in screenshot */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    opacity: 0.85;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-num {
    font-family: 'Zilla Slab', 'Special Elite', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #0c1c28;
    line-height: 1.1;
}

.stat-lbl {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #728390; /* muted label color */
    text-transform: uppercase;
}

.stat-sep {
    width: 1px;
    height: 45px;
    background-color: rgba(12, 28, 40, 0.15);
    flex-shrink: 0;
}

/* Responsive Overrides for Sketch version */
@media (max-width: 1100px) {
    .sketch-version {
        margin-left: 40px;
    }
    .hero-sketch-title {
        font-size: 4.5rem;
    }
}

@media (max-width: 991px) {
    .sketch-version {
        margin-left: 0;
        margin-bottom: 120px;
    }
}

@media (max-width: 768px) {
    .sketch-version {
        margin-left: 0;
        padding: 20px 0;
    }
    .hero-sketch-title {
        font-size: 3.2rem;
    }
    .hero-sketch-desc {
        font-size: 1.05rem;
    }
    .hero-sketch-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    .btn-sketch-solid, .btn-sketch-outline {
        justify-content: center;
        width: 100%;
    }
    .hero-sketch-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        border-top: 1.5px solid rgba(12, 28, 40, 0.1);
        padding-top: 25px;
    }
    .stat-sep {
        display: none;
    }
    .stat-item {
        width: 100%;
    }
}

.main-content {
  background-color: var(--bg-main);
  /* Matching global background */
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

/* Stations Section */
.stations-section {
  padding: 40px 40px 0 40px;
  max-width: 100%;
}

.search-section {
  padding: 40px 40px 0 40px;
  max-width: 100%;
}

/* Stations Search Form */
.stations-search-container {
  width: 100%;
  margin-bottom: 20px;
}

.stations-search-form {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #b0b0b0;
  border-radius: 50px;
  padding: 6px 6px 6px 30px;
  box-shadow: none;
}

.stations-search-form input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  color: #333;
  outline: none;
}

.stations-search-form input::placeholder {
  color: #a0a0a0;
}

.stations-search-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-orange);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  transition: background-color 0.3s ease;
  flex-shrink: 0;
  box-shadow: none;
}

.stations-search-btn:hover {
  background-color: #e04b00;
}

.search-hint {
  font-size: 13px;
  color: #a0a0a0;
  margin-top: 15px;
  margin-left: 30px;
}

.live-section {
  padding: 40px 40px 0 40px;
  max-width: 100%;
}

/* Schedule Card Styles */
.station-card.schedule-card {
  display: block;
  /* Override grid */
  padding: 40px;
}

.schedule-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.schedule-item {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #dcdcdc;
}

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

.schedule-item.active {
  background-color: var(--primary-orange);
  border-radius: 8px;
  border-bottom: none;
  color: #fff;
}

/* Hide border of the item preceding the active item to avoid double lines/artifacts */
.schedule-item:has(+ .schedule-item.active) {
  border-bottom-color: transparent;
}

.schedule-time {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 18px;
  width: 120px;
}

.schedule-item.active .schedule-time {
  color: #fff;
}

.schedule-item:not(.active) .schedule-time {
  color: #000;
}

.schedule-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.schedule-info h4 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin: 0;
}

.schedule-item:not(.active) .schedule-info h4 {
  color: #000;
}

.schedule-item.active .schedule-info h4 {
  color: #fff;
}

.schedule-info p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  margin: 0;
}

.schedule-item:not(.active) .schedule-info p {
  color: #000;
  /* Or #333 / #666 if preferred */
}

.schedule-item.active .schedule-info p {
  color: #fff;
}

.schedule-icon {
  font-size: 24px;
  color: #fff;
}

/* Schedule Header and Extras */
.schedule-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 45px;
  padding-bottom: 15px;
  border-bottom: 2px solid #eaeaea;
}

.schedule-header h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
}

.schedule-header h3 i {
  color: var(--primary-orange);
}

.schedule-header a {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #666;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}

.schedule-header a:hover {
  color: var(--primary-orange);
}

.schedule-badge {
  background-color: #e0e0e0;
  color: #555;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.notify-btn {
  background: none;
  border: 1px solid #ccc;
  color: #555;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.notify-btn:hover {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
}


.stations-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10px;
}

.stations-header .box-title {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.stations-header .subtitle {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  color: var(--primary-orange);
  font-size: 19px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.stations-header .title {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 24px;
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
}

.stations-header .view-all-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  color: #ec5500;
  font-size: 18px;
  text-decoration: none;
  margin-bottom: 5px;
}

.stations-header .view-all-link img {
  height: 14px;
}

.stations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.station-card {
  flex: 0 0 calc(25% - 15px);
  border: 1px solid #b0b0b0;
  border-radius: 20px;
  min-height: 390px;
  background-color: transparent;
  transition: border-color 0.3s ease;
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: 1fr auto;
  padding: 40px;
  overflow: hidden;
}

.stations-grid.two-cards .station-card {
  grid-template-columns: 2.05fr 1fr;
  grid-template-rows: 1fr;
  gap: 40px;
  padding: 40px;
}

.stations-grid.two-cards .station-card:first-child {
  flex: 1 1 calc(50% - 10px);
  min-width: 400px;
}

.stations-grid.two-cards .station-card:last-child {
  flex: 1 1 calc(50% - 10px);
  min-width: 400px;
}


.station-card:hover {
  border-color: var(--primary-orange);
}

.station-card .card-text {
  grid-row: 1;
  grid-column: 1 / 3;
}

.station-card .card-text h3 {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 36px;
  margin: 0;
  text-transform: uppercase;
  line-height: 1;
}

.station-card .card-text p {
  font-family: "Roboto", Helvetica, sans-serif;
  font-weight: 400;
  color: #000000;
  font-size: 24px;
  margin: 0;
}

.station-card .card-stats {
  grid-row: 2;
  grid-column: 1;
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.station-card .card-play-btn {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 2px solid #000000;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.station-card .card-play-btn i {
  font-size: 24px;
  color: #000000;
  margin-left: 0px;
  /* slightly offset play triangle to appear centered */
  transition: color 0.3s ease;
}

.station-card .card-play-btn:hover,
.station-card .card-play-btn.playing {
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
}

.station-card .card-play-btn:hover i,
.station-card .card-play-btn.playing i {
  color: #ffffff;
}

.station-card .listening-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.station-card .listening-count {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 18.5px;
}

.station-card .waveform-icon {
  color: var(--primary-orange);
  font-size: 20px;
}

.station-card .station-img {
  grid-row: 2;
  grid-column: 2;
  align-self: end;
  width: 195px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  border: 0.5px solid #b0b0b0;
  padding: 5px;
}

.station-card .live-left {
  grid-column: 1;
  height: 100%;
  display: flex;
  align-items: center;
}

.station-card .live-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
}

.station-card .live-info {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.live-info .live-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-orange);
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 25px;
  text-transform: uppercase;
  margin: 0;
}

.live-info .live-badge .dot {
  width: 10px;
  height: 10px;
  background-color: var(--primary-orange);
  border-radius: 50%;
}

.live-info .track-info h3 {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 36px;
  margin: 0;
  text-transform: uppercase;
  line-height: 1;
}

.live-info .track-info p {
  font-family: "Roboto", Helvetica, sans-serif;
  font-weight: 400;
  color: #000000;
  font-size: 24px;
  margin: 0;
}

.live-info .play-wave-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  /* Отступ между кнопкой Play и волнами */
}

.live-info .waveforms {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
}

.live-info .live-waveform {
  color: var(--primary-orange) !important;
  font-size: 32px;
  margin: 0;
}

.live-info .live-time {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 24px;
  margin: 0;
}

/* --- Stations Page Dedicated Grid and Cards --- */
.stations-page-section {
  padding: 40px 40px 0 40px;
  max-width: 100%;
}

.stations-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stations-page-card {
  border: 1px solid #b0b0b0;
  border-radius: 20px;
  min-height: 390px;
  background-color: transparent;
  transition: border-color 0.3s ease;
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: 1fr auto;
  padding: 40px;
  position: relative;
}

.close-sp-card {
  position: absolute;
  top: -8px;
  right: -8px;
  font-size: 30px;
  width: 27px;
  height: 27px;
  color: #777;
  text-decoration: none;
  background-color: var(--bg-main);
  border-radius: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-sp-card:hover {
  color: #ffffff;
  background-color: var(--primary-orange);
}

.stations-page-grid.two-cards .stations-page-card {
  grid-template-columns: 2.05fr 1fr;
  grid-template-rows: 1fr;
  gap: 40px;
  padding: 40px;
}

.stations-page-grid.two-cards .stations-page-card:first-child,
.stations-page-grid.two-cards .stations-page-card:last-child {
  flex: 1 1 calc(50% - 10px);
  min-width: 400px;
}

.stations-page-card:hover {
  border-color: var(--primary-orange);
}

.stations-page-card .sp-card-text {
  grid-row: 1;
  grid-column: 1 / 3;
}

.stations-page-card .sp-card-text h3 {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 36px;
  margin: 0;
  text-transform: uppercase;
  line-height: 1;
}

.stations-page-card .sp-card-text p {
  font-family: "Roboto", Helvetica, sans-serif;
  font-weight: 400;
  color: #000000;
  font-size: 24px;
  margin: 0;
}

.stations-page-card .sp-card-stats {
  grid-row: 2;
  grid-column: 1;
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stations-page-card .sp-card-play-btn {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 2px solid #000000;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.stations-page-card .sp-card-play-btn i {
  font-size: 24px;
  color: #000000;
  margin-left: 0px;
  transition: color 0.3s ease;
}

.stations-page-card .sp-card-play-btn:hover,
.stations-page-card .sp-card-play-btn.playing {
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
}

.stations-page-card .sp-card-play-btn:hover i,
.stations-page-card .sp-card-play-btn.playing i {
  color: #ffffff;
}

.stations-page-card .sp-listening-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stations-page-card .sp-listening-count {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 18.5px;
}

.stations-page-card .sp-waveform-icon {
  color: var(--primary-orange);
  font-size: 20px;
}

.css-waveform {
  display: none;
  align-items: flex-end;
  gap: 2px;
  height: 16px;
  margin-left: 5px;
}

.stations-page-card.is-playing .sp-waveform-icon,
.station-card.is-playing .waveform-icon,
.station-card.is-playing .live-waveform {
  display: none;
}

.stations-page-card.is-playing .css-waveform,
.station-card.is-playing .css-waveform {
  display: flex !important;
}

.css-waveform span {
  display: block;
  width: 3px;
  background-color: var(--primary-orange);
  border-radius: 2px;
  height: 4px;
  animation: wave-bar 1s ease-in-out infinite;
}

.css-waveform span:nth-child(1) {
  animation-delay: 0s;
}

.css-waveform span:nth-child(2) {
  animation-delay: 0.2s;
}

.css-waveform span:nth-child(3) {
  animation-delay: 0.4s;
}

.css-waveform span:nth-child(4) {
  animation-delay: 0.1s;
}

.css-waveform span:nth-child(5) {
  animation-delay: 0.3s;
}

@keyframes wave-bar {

  0%,
  100% {
    height: 4px;
  }

  50% {
    height: 16px;
  }
}

.header .radio-play-btn.playing {
  background-color: var(--primary-orange);
}

.header .radio-play-btn.playing i {
  color: #fff;
}

.stations-page-card .sp-station-img {
  grid-row: 2;
  grid-column: 2;
  align-self: end;
  width: 195px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  border: 0.5px solid #b0b0b0;
  padding: 5px;
}

.stations-page-card .sp-live-left {
  grid-column: 1;
  height: 100%;
  display: flex;
  align-items: center;
}

.stations-page-card .sp-live-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
}

.stations-page-card .sp-live-info {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.stations-page-card .sp-live-info .sp-live-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-orange);
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 25px;
  text-transform: uppercase;
  margin: 0;
}

.stations-page-card .sp-live-info .sp-live-badge .sp-dot {
  width: 10px;
  height: 10px;
  background-color: var(--primary-orange);
  border-radius: 50%;
}

.stations-page-card .sp-live-info .sp-track-info h3 {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 36px;
  margin: 0;
  text-transform: uppercase;
  line-height: 1;
}

.stations-page-card .sp-live-info .sp-track-info p {
  font-family: "Roboto", Helvetica, sans-serif;
  font-weight: 400;
  color: #000000;
  font-size: 24px;
  margin: 0;
}

.stations-page-card .sp-live-info .sp-play-wave-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stations-page-card .sp-live-info .sp-waveforms {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
}

.stations-page-card .sp-live-info .sp-live-waveform {
  color: var(--primary-orange) !important;
  font-size: 32px;
  margin: 0;
}

.stations-page-card .sp-live-info .sp-live-time {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 24px;
  margin: 0;
}

/* App Banner Section */
.app-banner-section {
  padding: 40px 40px;
}

.app-station-banner-section {
  padding: 0px 0 40px 0;
}

.app-banner {
  background-size: auto 100%;
  background-position: right center;
  background-repeat: no-repeat;
  border: 1px solid #b0b0b0;
  border-radius: 20px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  min-height: 250px;
}

.banner-text {
  padding: 40px;
  flex: 1;
  max-width: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-text h2 {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-size: 40px;
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
  text-transform: uppercase;
  color: #000;
}

.title-with-apps {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 15px;
}

.banner-text .script-title {
  font-family: "Signatra", Helvetica, sans-serif;
  font-size: 60px;
  color: var(--primary-orange);
  text-transform: none;
  font-weight: 400;
  margin: -10px 0 0 0;
  letter-spacing: 1px;
}

.banner-text p {
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  margin: 0;
}

.banner-apps {
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 2;
}

.banner-apps a {
  display: inline-block;
  transition: transform 0.2s;
}

.banner-apps a:hover {
  transform: scale(1.05);
}

.banner-apps a.app-btn-apple {
  position: relative;
}

.banner-apps a.app-btn-google {
  position: relative;
}

.banner-apps img {
  height: 45px;
  width: auto;
  display: block;
}

/* Hide mobile dropdown menu by default on desktop */
.mobile-dropdown-menu {
  display: none;
}

/* Responsive Fix for Header Overlap */
@media (min-width: 950px) and (max-width: 1250px) {
  .header .top-menu {
    gap: 20px;
    margin-right: 20px;
  }

  .header .top-menu .menu-item {
    font-size: 16px;
  }

  .header .right-actions {
    gap: 15px;
  }

  .header .listen-live-button {
    padding: 0 15px;
  }

  .header .listen-live-button .btn-text {
    font-size: 14px;
    letter-spacing: 1px;
  }

  .header .logo {
    zoom: 0.75;
  }
}

@media (max-width: 991px) {
  .about-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }

  .about-img-col {
    height: 300px;
  }

  .about-mission-col h2 {
    font-size: 30px;
  }

  .app-banner {
    flex-direction: column;
    text-align: center;
    background-image: none !important;
    background-color: transparent !important;
    padding-bottom: 0;
  }

  .banner-text {
    padding: 40px 20px;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .title-with-apps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
  }

  .banner-apps {
    justify-content: center;
    padding-bottom: 0;
  }

  /* Header Responsive Fixes */
  .main-container {
    padding: 0;
  }

  .header .top-menu {
    display: none;
  }

  .header .mobile-menu-btn {
    display: flex;
  }

  .header .search-button {
    display: none;
  }

  .header .right-actions {
    gap: 20px;
  }

  .header .listen-live-button {
    display: none;
    /* Hide listen live on mobile to save space */
  }

  .header .logo {
    transform: scale(0.65);
    transform-origin: left center;
  }

  .header .hero-title {
    display: none;
  }

  .header .subtitle {
    display: none;
    /* Hide thousands of stations text on mobile as it overlaps */
  }

  .header .vertical-line {
    display: none;
    /* Hide vertical scroll line to save space on mobile */
  }

  .header .radio-shkala-box {
    display: none;
    /* Hide entire radio scale box on mobile */
  }

  .header .slide {
    display: none !important;
  }

  .header .hero-container {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .header .hero-content {
    margin-left: 0;
    width: 100%;
  }

  .header .listen-now {
    left: 0;
    top: auto;
    bottom: 40px;
    width: 100%;
  }

  .header .hero-actions {
    width: 100%;
    gap: 0;
  }

  /* Mobile Dropdown Menu */
  .mobile-dropdown-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    /* Changed to dark overlay */
    z-index: 1000;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: top 0.4s ease-in-out;
    overflow-y: auto;
  }

  .mobile-dropdown-menu.open {
    top: 0;
  }

  .mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    color: var(--primary-orange);
    cursor: pointer;
  }

  .mobile-menu-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
  }

  .mobile-menu-items .menu-item {
    color: white;
    font-family: "Roboto", sans-serif;
    /* Applied Roboto font as requested */
    font-size: 28px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s;
    text-transform: uppercase;
  }

  .mobile-menu-items .menu-item:hover,
  .mobile-menu-items .menu-item.active {
    color: var(--primary-orange);
  }

  .stations-header .title {
    font-size: 20px;
  }

  .stations-header .view-all-link {
    font-size: 16px;
  }

  .station-card,
  .station-card.schedule-card,
  .live-station-card {
    padding: 20px !important;
  }

  .stations-grid.two-cards .station-card:first-child,
  .stations-grid.two-cards .station-card:last-child {
    min-width: 0;
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .header-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .stations-section,
  .live-section,
  .search-section,
  .stations-page-section,
  .blog-page-section,
  .team-section,
  .contact-page-section,
  .about-live-stream-box {
    padding: 40px 20px 0 20px;
  }

  .app-banner-section {
    padding: 40px 20px;
  }
}


/* Footer Styles */
.site-footer {
  background-color: #2e4952;
  color: #a0a0a0;
  padding: 40px 40px 20px;
  font-family: "Roboto", Helvetica, sans-serif;
  border-radius: 17px 17px 0 0;
  margin-left: 40px;
  margin-right: 40px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 60px;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-col-logo {
  flex: 1.5 1 250px;
}

.footer-col-newsletter {
  flex: 2 1 300px;
}

.site-footer .footer-logo {
  position: relative;
  width: 313px;
  height: 70px;
  margin-bottom: 30px;
  transform: scale(0.8);
  transform-origin: left top;
}

.site-footer .footer-logo .logo-subtitle {
  position: absolute;
  top: 40px;
  left: 0;
  width: 208px;
  font-family: "Roboto Condensed", Helvetica;
  font-weight: 300;
  color: #ffffff;
  font-size: 20.5px;
  letter-spacing: 8px;
  line-height: normal;
  white-space: nowrap;
}

.site-footer .footer-logo i {
  position: absolute;
  font-size: 49px;
  width: 29.65%;
  top: calc(50.00% - 25px);
  left: 63.35%;
  height: 49px;
  color: #ffffff;
}

.site-footer .footer-logo .logo-title {
  top: 0;
  width: 312px;
  font-family: "BBH Bartle-Regular", Helvetica;
  color: var(--primary-orange);
  font-size: 40px;
  letter-spacing: -2.8px;
  position: absolute;
  left: 1px;
}

.footer-tagline {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #ffffff;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #1a1e22;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a.social-btn {
  font-size: 20px;
}

.social-icons a.fb-icon {
  color: #1877F2;
}

.social-icons a.ig-icon {
  color: #E4405F;
}

.social-icons a.tt-icon {
  color: #1DA1F2;
}

.social-icons a.yt-icon {
  color: #FF0000;
}

.social-icons a.social-btn:hover {
  background-color: var(--primary-orange);
  transform: translateY(-3px);
  color: #ffffff;
}

.footer-col h4 {
  color: #ffffff;
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #ffffff;
  font-size: 16px;
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: var(--primary-orange);
}

.footer-col-newsletter p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #a0a0a0;
}

.newsletter-form {
  position: relative;
  display: flex;
  border: 1px solid #84a0a9;
  border-radius: 30px;
  overflow: hidden;
  background-color: transparent;
}

.newsletter-form input {
  flex-grow: 1;
  background-color: transparent;
  border: none;
  padding: 15px 20px;
  color: #ffffff;
  font-size: 14px;
}

.newsletter-form input:focus {
  outline: none;
}

.newsletter-form button {
  background-color: var(--primary-orange);
  color: #ffffff;
  border: none;
  padding: 15px 50px;
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  cursor: pointer;
  border-radius: 30px;
  margin: 3px;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: var(--primary-orange-hover);
}

.footer-bottom {
  border-top: 1px solid #84a0a9;
  padding-top: 25px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: #666666;
}

.scroll-top-btn {
  position: absolute;
  right: 0;
  top: calc(50% + 12.5px);
  /* 12.5px offsets the 25px padding-top to perfectly center with text */
  transform: translateY(-50%);
  font-size: 30px;
  color: #666666;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}

.scroll-top-btn:hover {
  color: var(--primary-orange);
  transform: translateY(calc(-50% - 3px));
}

@media (max-width: 991px) {
  .site-footer {
    padding: 40px 20px 20px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .footer-columns {
    flex-direction: column;
    gap: 40px;
  }

  .newsletter-form {
    flex-direction: column;
    border: none;
    width: 100%;
  }

  .newsletter-form input {
    border: 1px solid #84a0a9;
    border-radius: 30px;
    margin-bottom: 15px;
    width: 100%;
    box-sizing: border-box;
  }

  .newsletter-form button {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .footer-col-newsletter p {
    font-size: 13px;
  }

  /* Schedule Card mobile adjustments */
  .schedule-badge,
  .schedule-icon,
  .notify-btn {
    display: none !important;
  }
}

@media (min-width: 2000px) {

  .header .hero-content {
    gap: 40px;
  }

  .header .hero-bottom-info {
    gap: 0px;
  }

  .header .hero-title {
    zoom: 1.35;
    top: 26px;
    /* User requested top: 26px */
  }

  .header .vertical-line .line-top {
    height: 500px;
  }

  .main-content {
    margin-top: 0;
  }
}

/* --- Blog Page Styles --- */
.blog-page-section {
  padding: 40px 40px 0 40px;
  max-width: 100%;
}

.blog-container {
  display: grid;
  grid-template-columns: 380px 1fr 380px;
  grid-template-areas: "left-sidebar main-content right-sidebar";
  gap: 40px;
  width: 100%;
  align-items: start;
}

.blog-sidebar-left {
  grid-area: left-sidebar;
}

.blog-main-content {
  grid-area: main-content;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.blog-sidebar-right {
  grid-area: right-sidebar;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.blog-posts-area {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.single-post-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 40px;
  background-color: transparent;
  overflow: hidden;
  /* clear floats */
}

.single-post-image {
  float: left;
  width: 40%;
  margin-right: 30px;
  margin-bottom: 20px;
  border-radius: 12px;
  object-fit: cover;
}

.single-post-text {
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #4a4a4a;
  text-align: justify;
  margin-bottom: 20px;
}

.single-post-text:last-child {
  margin-bottom: 0;
}

/* Post Comments Section */
.post-comments-section {
  margin-top: 40px;
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  background-color: transparent;
}

.comments-title {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-size: 22px;
  margin-bottom: 30px;
  color: #000;
}

.comments-list {
  margin-bottom: 50px;
}

.comment {
  display: flex;
  margin-bottom: 30px;
  gap: 20px;
}

.comment-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 24px;
  flex-shrink: 0;
}

.comment-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.comment-content {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 12px;
  flex: 1;
}

.comment-content h4 {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  margin: 0 0 5px;
  font-size: 16px;
  color: #000;
}

.comment-date {
  font-family: "Roboto", Helvetica, sans-serif;
  display: block;
  font-size: 13px;
  color: #888;
  margin-bottom: 15px;
}

.comment-content p {
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.reply-btn {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: var(--primary-orange);
  text-decoration: none;
  transition: color 0.3s;
}

.reply-btn:hover {
  color: #000;
}

.leave-comment-form h3 {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-size: 22px;
  margin-bottom: 10px;
}

.leave-comment-form p {
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 14px;
  color: #777;
  margin-bottom: 25px;
}

.leave-comment-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.leave-comment-form .form-group {
  flex: 1;
  margin-bottom: 20px;
}

.leave-comment-form input,
.leave-comment-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #b0b0b0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  background: transparent;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.leave-comment-form input:focus,
.leave-comment-form textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
}

.submit-comment-btn {
  background-color: var(--primary-orange);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-comment-btn:hover {
  background-color: #000;
}

/* Sidebar Blocks */
.sidebar-block {
  background: transparent;
  border: 1px solid #b0b0b0;
  border-radius: 20px;
  padding: 40px 30px;
}

.sidebar-block h3 {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-top: 0;
  margin-bottom: 25px;
  text-transform: uppercase;
}

/* Categories List */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.category-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: color 0.3s;
}

.category-list li:hover .cat-name,
.category-list li.active .cat-name {
  color: var(--primary-orange);
  font-weight: 700;
}

.category-list li .cat-badge {
  background-color: #e6ecef;
  color: #333;
  font-size: 12px;
  font-weight: 700;
  min-width: 28px;
  height: 28px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}

.category-list li.active .cat-badge {
  background-color: var(--primary-orange);
  color: #fff;
}

/* Tags Block */
.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tags-container .tag {
  background-color: #f4f6f8;
  color: #333;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 20px;
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s;
}

.tags-container .tag:hover {
  background-color: var(--primary-orange);
  color: #fff;
}

/* Newsletter Block */
.newsletter-block {
  text-align: center;
}

.newsletter-icon-wrapper {
  width: 80px;
  height: 80px;
  background-color: #fff5f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.newsletter-icon-wrapper i {
  font-size: 36px;
  color: var(--primary-orange);
}

.newsletter-block h3 {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  color: #111;
  margin-top: 0;
  margin-bottom: 10px;
  text-transform: none;
  font-size: 24px;
}

.newsletter-block p {
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 15px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 25px;
}

.blog-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.blog-newsletter-form input {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.blog-newsletter-form input:focus {
  border-color: var(--primary-orange);
}

.blog-newsletter-form button {
  width: 100%;
  padding: 14px 15px;
  background-color: var(--primary-orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s;
}

.blog-newsletter-form button:hover {
  background-color: #e65500;
}

/* Post Card */
.blog-post-card {
  display: flex;
  flex-direction: column;
  background-color: transparent;
  border: 1px solid #b0b0b0;
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.3s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.blog-post-card:hover {
  border-color: var(--primary-orange);
}

.blog-post-card .post-image {
  width: 100%;
  height: 500px !important;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-post-card:hover .post-image {
  transform: scale(1.03);
}

.blog-post-card .post-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.blog-post-card .post-category {
  color: var(--primary-orange);
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-post-card .post-title {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: #000;
  margin: 0 0 15px 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.blog-post-card .post-excerpt {
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 16px;
  color: #000;
  line-height: 1.6;
  margin: 0 0 15px 0;
}

.blog-post-card .post-meta-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-post-card .post-meta {
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #999;
}

.blog-post-card .post-arrow {
  color: var(--primary-orange);
  font-size: 22px;
  text-decoration: none;
  transition: transform 0.3s;
}

.blog-post-card:hover .post-arrow {
  transform: translateX(5px);
}

/* Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.blog-pagination a,
.blog-pagination span {
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s, color 0.3s;
}

.blog-pagination a.page-arrow {
  color: var(--primary-orange);
}

.blog-pagination a:hover:not(.active) {
  background-color: #f4f6f8;
}

.blog-pagination a.active {
  background-color: var(--primary-orange);
  color: #fff;
}

@media (width: 1728px) and (height: 1117px) {
  .header .slide {
    height: 100%;
  }

}

@media (max-width: 1999px) {
  .header .hero-container {
    padding-top: 40px;
  }

  .header .hero-bottom-info {
    gap: 20px;
  }

  .schedule-header {
    display: none;
  }

  .live-info .track-info h3 {
    font-size: 30px;
  }

  .live-info .track-info p {
    font-size: 20px;
  }

  .stations-header .title {
    font-size: 30px;
  }

  .station-card .card-text h3 {
    font-size: 30px;
  }

  .station-card .card-text p {
    font-size: 20px;
  }
}

@media (max-width: 1550px) {
  .station-card {
    flex: 0 0 calc(50% - 10px);
  }

  .stations-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1400px) {
  .blog-posts-area {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1250px) {
  .blog-container {
    grid-template-columns: 1fr;
    grid-template-areas: 
      "main-content"
      "left-sidebar"
      "right-sidebar";
    gap: 40px;
  }

  .blog-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .sidebar-block.newsletter-block {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .blog-sidebar {
    grid-template-columns: 1fr;
  }

  .sidebar-block.newsletter-block {
    grid-column: span 1;
  }

  .blog-post-card .post-image {
    height: 250px !important;
  }
}

@media (max-width: 935px) {
  .station-card {
    flex: 0 0 100%;
  }

  .stations-page-grid,
  .blog-posts-area {
    grid-template-columns: 1fr;
  }

  .station-card .station-img {
    width: 180px;
  }

  .stations-grid.two-cards .station-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
  }

  .station-card .live-left {
    grid-column: 1;
    grid-row: 1;
  }

  .station-card .live-info {
    grid-column: 1;
    grid-row: 2;
  }

  .stations-page-card .sp-station-img {
    width: 150px;
  }

  .stations-page-card .sp-card-text h3 {
    font-size: 30px;
  }

  .station-card .card-text h3 {
    font-size: 25px;
  }

  .station-card .card-text p {
    font-size: 18px;
  }

  .live-info .track-info h3 {
    font-size: 25px;
  }

  .live-info .live-time {
    font-size: 20px;
  }

  .stations-page-card .sp-card-text p {
    font-size: 20px;
  }

  .stations-page-card .sp-listening-info .sp-listening-count {
    font-size: 14px;
  }

  .stations-page-section .clear-all-btn {
    display: none !important;
  }

  .header .slide {
    height: 100%;
  }

  .header .browse-stations-text,
  .header .browse-arrow {
    display: none;
  }

  .stations-header .title {
    font-size: 20px;
  }

  .stations-header .subtitle {
    font-size: 16px;
  }
}

/* Custom Modal Overlay */
.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.custom-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.custom-modal {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.custom-modal-overlay.active .custom-modal {
  transform: translateY(0);
}

.custom-modal-icon {
  color: var(--primary-orange);
  font-size: 70px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.custom-modal-title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #111;
  margin: 0 0 10px 0;
}

.custom-modal-text {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: #666;
  margin: 0 0 30px 0;
  line-height: 1.5;
}

.custom-modal-actions {
  display: flex;
  gap: 5px;
  width: 100%;
  justify-content: space-between;
}

.modal-btn-cancel {
  flex: 1;
  padding: 12px 24px;
  border: 1px solid #ddd;
  background: transparent;
  color: #333;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-btn-cancel:hover {
  background: #f5f5f5;
  border-color: #ccc;
}

.modal-btn-confirm {
  flex: 1;
  padding: 12px 24px;
  border: none;
  background: var(--primary-orange);
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-btn-confirm:hover {
  background: #e63d00;
}

/* --- Contact Page Styles --- */
.contact-header-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 40px;
}

.contact-title-box {
  text-align: center;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 30px 40px;
  width: 100%;
  max-width: 800px;
  box-sizing: border-box;
}

.contact-title-box .subtitle {
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-orange);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.contact-title-box h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.contact-page-section {
  padding: 40px 40px 0 40px;
  max-width: 100%;
}

.contact-container {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 100%;
}

.contact-info-col {
  flex: 1;
}

.contact-form-col {
  flex: 1.5;
}

.contact-card {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 40px;
  box-sizing: border-box;
  height: 100%;
}

.contact-card h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 0;
  margin-bottom: 15px;
}

.contact-card p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 25px;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.info-list li:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-orange);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  flex-shrink: 0;
}

.info-text {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.5;
}

.contact-map {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form .form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  background-color: transparent;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 2px rgba(255, 99, 71, 0.1);
}

.contact-form textarea {
  resize: vertical;
}

@media (max-width: 935px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-form .form-row {
    flex-direction: column;
    gap: 20px;
  }
}



/* Search Dropdown & Player Styles */
.search-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
  display: none;
  border: 1px solid #e0e0e0;
}

.search-dropdown-menu.active {
  display: block;
}

.search-dropdown-item {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
}

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

.search-dropdown-item:hover {
  background-color: #f9f9f9;
}

.search-dropdown-item-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.search-dropdown-item-text {
  flex: 1;
}

.search-dropdown-item-title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #000;
  margin-bottom: 3px;
}

.search-dropdown-item-genre {
  font-size: 13px;
  color: #a0a0a0;
}

.search-dropdown-no-results {
  padding: 20px;
  text-align: center;
  color: #888;
  font-style: italic;
}

.stations-search-btn.playing {
  background-color: var(--primary-orange);
}

.stations-search-btn.playing:hover {
  background-color: #e04b00;
}

@media (min-width: 2000px) {
  .header .slide {
    height: auto;
  }
  .header .hero-bottom-info {
    gap: 20px;
  }
  .stations-section {
    padding: 40px 40px 0px 40px;
    max-width: 100%;
  }
}

/* Ultra-wide screens (MacBook external monitors, iMac, etc.) */
@media (min-width: 3400px) {

  .header.about-header,
  .header.contact-header,
  .header.blog-header {
    padding-bottom: 0px;
  }

  .header .slide.active {
    opacity: 1;
  }

  .header .hero-title {
    zoom: 1.95;
    top: 18px;
  }

  .header .hero-content {
    gap: 60px;
  }

  .header .hero-actions {
    gap: 80px;
  }

  .header .vertical-line {
    top: 300px;
  }

  .header .subtitle {
    zoom: 1.25;
  }

  .header .listen-now {
    zoom: 1.55;
  }

  .header .browse-stations-text {
    zoom: 1.25;
  }

  .header .browse-arrow {
    zoom: 1.25;
  }

  .header .top-header {
    zoom: 1.55;
  }

  .header .radio-shkala-box {
    zoom: 1.55;
  }

  .header .vertical-line .line-top {
    height: 759px;
  }
}

/* Experimental 50% scale for 13-inch laptops */
@media (min-width: 936px) and (max-width: 1450px) {
  body {
    zoom: 0.6;
    -moz-transform: scale(0.6);
    -moz-transform-origin: top center;
  }
  .header-section {
    height: calc(100vh / 0.6);
  }
}

@media (min-width: 1728px) and (max-width: 2200px) {
  body {
    zoom: 0.9;
    -moz-transform: scale(0.9);
    -moz-transform-origin: top center;
  }
  .header-section {
    height: calc(100vh / 0.9);
  }
}
.menu-item a {
  color: inherit;
  text-decoration: none;
}
.copyright-text {
  color: #84a0a9;
}
.copyright-text i.fa-heart {
  color: var(--primary-orange);
}
.copyright-text i.fa-copyright {
  color: #84a0a9;
}

.contact-map iframe {
  border: 0;
}
.stations-search-wrapper {
  position: relative;
}
.stations-header {
  align-items: center;
}

.clear-all-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  font-size: 16px;
}
.clear-all-btn i {
  color: var(--primary-orange);
  font-size: 18px;
}


.blog-posts-area .stations-header {
  margin-bottom: 20px;
}

/* --- Ported Page Styles for About and Team --- */

/* Short Page Headers for AVAVA */
.header-section.about-header,
.header-section.contact-header,
.header-section.blog-header {
  height: 380px !important;
  min-height: 380px !important;
  max-height: 380px !important;
  padding-bottom: 0px;
  background-image: none !important;
  background-color: #ffffff;
}

/* Active Menu overrides for light headers */
.about-header .top-menu .menu-item.active a,
.contact-header .top-menu .menu-item.active a,
.blog-header .top-menu .menu-item.active a {
  color: #d14a1c !important;
}

.about-header .top-menu .menu-item.active::after,
.contact-header .top-menu .menu-item.active::after,
.blog-header .top-menu .menu-item.active::after {
  background-color: #d14a1c !important;
}

/* Close Button overrides for light headers */
.about-header .close-radio-shkala,
.contact-header .close-radio-shkala,
.blog-header .close-radio-shkala {
  color: rgb(35 69 76) !important;
}

.about-header .close-radio-shkala:hover,
.contact-header .close-radio-shkala:hover,
.blog-header .close-radio-shkala:hover {
  color: #d14a1c !important;
}

.header-section.about-header .radio-shkala-box,
.header-section.contact-header .radio-shkala-box,
.header-section.blog-header .radio-shkala-box {
  margin-top: 40px;
  position: absolute;
  bottom: 0;
  left: 40px;
  width: calc(100% - 80px);
  background: rgb(204 213 215 / 25%) !important;
}

@media (max-width: 991px) {
  .header-section.about-header,
  .header-section.contact-header,
  .header-section.blog-header {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    padding-bottom: 20px;
  }
}

.about-live-stream-box {
  width: 100%;
  padding: 40px 40px 0 40px;
}

.about-card {
  background-color: transparent;
  border: 1px solid #b0b0b0;
  border-radius: 20px;
  width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  padding: 40px;
  align-items: center;
}

.about-img-col {
  height: 100%;
}

.about-main-img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.about-features-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary-orange);
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-text h4 {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-size: 18px;
  color: var(--text-main);
  margin-bottom: 5px;
  font-weight: 700;
}

.feature-text p {
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
  margin: 0;
}

.about-mission-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mission-label {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  color: var(--primary-orange);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-mission-col h2 {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-size: 42px;
  color: var(--text-main);
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
}

.about-mission-col p {
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 18px;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

/* --- Team Section Styles --- */
.team-section {
  padding: 40px 40px 0 40px;
  width: 100%;
  box-sizing: border-box;
}

.team-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 10px;
  scrollbar-width: thin;
}

.team-card {
  border: 1px solid #b0b0b0;
  border-radius: 20px;
  overflow: hidden;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(25% - 15px);
  min-width: 240px;
}

.team-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  padding: 3px 3px 0 3px;
  border-radius: 19px 20px 0 0;
}

.team-info {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.team-info h3 {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 5px 0;
}

.team-role {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-orange);
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.team-info p {
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.team-socials {
  display: flex;
  gap: 10px;
}

.team-socials a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #b0b0b0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  text-decoration: none;
  transition: all 0.3s ease;
}

.team-socials a:hover {
  background-color: var(--primary-orange);
  color: white;
  border-color: var(--primary-orange);
}

/* --- Light Theme Sidebar Widget Updates for Search and Recent Posts --- */
.blog-search-form {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.blog-search-form input {
  width: 100%;
  background: #f4f6f8;
  border: 1px solid #b0b0b0;
  padding: 14px 50px 14px 20px;
  border-radius: 30px;
  color: #000000;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.blog-search-form input:focus {
  border-color: var(--primary-orange);
  background: #ffffff;
  box-shadow: 0 0 10px rgba(209, 74, 28, 0.2);
}

.blog-search-form button {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #333333;
  cursor: pointer;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.blog-search-form button:hover {
  color: var(--primary-orange);
}

.recent-posts-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.recent-posts-list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 20px;
}

.recent-posts-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.recent-post-item {
  display: flex;
  gap: 15px;
  text-decoration: none;
  align-items: center;
}

.recent-post-item img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.recent-post-item:hover img {
  border-color: var(--primary-orange);
  transform: scale(1.05);
}

.recent-post-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.recent-post-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #000000;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.recent-post-item:hover .recent-post-title {
  color: var(--primary-orange);
}

.recent-post-date {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.8rem;
  color: #999999;
}

/* Language Selector Styles */
.lang-selector-wrapper {
  position: relative;
  display: inline-block;
}

.lang-selector-btn {
  width: 45px;
  height: 45px;
  background-color: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  overflow: hidden;
}

.lang-selector-btn:hover {
  background-color: rgba(0, 0, 0, 0.1);
  border-color: #d14a1c;
}

.lang-selector-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transform: scale(1.05); /* Slight zoom to hide raw edges */
  padding: 3px;
  box-sizing: border-box;
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  min-width: 150px;
  display: none;
  z-index: 1000;
}

.lang-dropdown::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 15px;
  background: transparent;
}

.lang-selector-wrapper:hover .lang-dropdown {
  display: block;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  cursor: pointer;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #0b191e;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.lang-option:hover {
  background-color: rgba(209, 74, 28, 0.08);
  color: #d14a1c;
}

.lang-option img {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  border: 0.5px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .header .lang-selector-wrapper {
    display: none;
  }

  .header-section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .stations-section,
  .live-section,
  .search-section,
  .stations-page-section,
  .blog-page-section,
  .team-section,
  .contact-page-section,
  .about-live-stream-box {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .app-banner-section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

