@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: #ff7a00; /* Vibrant premium orange */
            --accent-glow: rgba(255, 122, 0, 0.4);
            --glass-bg: rgb(19 22 25 / 50%);
            --glass-border: rgba(255, 255, 255, 0.08);
            --text-main: #ffffff;
            --text-muted: rgba(255, 255, 255, 0.6);
        }

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

        /* Smooth scroll effect */
        html {
            scroll-behavior: smooth;
        }

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

        /* 2560x1440 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;
            background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('../images/bg.jpg');
            background-size: cover;
            background-position: top center;
            background-repeat: no-repeat;
        }

        .index-page .page-wrapper {
            background-image: url('../images/bg.jpg');
        }

        /* SECTION 1: Header / Hero Slide (2560.jpg) */
        .header-section {
            width: 100%;
            height: 100vh;
            max-height: 1440px;
            position: relative;
            z-index: 1; /* Establishes a local stacking context */
            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;
        }

        .header-section .background-video {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1; /* Renders behind all content inside the local stacking context */
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.25s ease;
        }

        .header-section .background-video.active {
            opacity: 1;
        }

        /* SECTION 2: Content Section (bg.jpg via page-wrapper) */
        .content-section {
            width: 100%;
            min-height: auto;
            position: relative;
            background: transparent;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            padding: 0px 40px 0px 40px;
            overflow: hidden;
        }

        @media (max-width: 991px) {
            .content-section {
                padding: 80px 20px 60px 20px;
            }
        }

        /* Premium Header / Navigation Bar */
        .top-navbar {
            position: relative;
            z-index: 10;
            width: 100%;
            padding: 40px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-group {
            display: flex;
            align-items: center;
            gap: 15px;
            cursor: pointer;
        }

        .logo-icon {
            font-size: 2.2rem;
            color: var(--accent-color);
            text-shadow: 0 0 15px var(--accent-glow);
            animation: pulse-glow 2s infinite alternate;
        }

        .logo-text {
            font-family: 'Roboto Condensed', sans-serif;
            font-weight: 700;
            font-size: 1.8rem;
            letter-spacing: 4px;
            text-transform: uppercase;
        }

        .logo-text span {
            color: var(--accent-color);
        }

        .nav-menu {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-item a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }

        .nav-item a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
            box-shadow: 0 0 8px var(--accent-glow);
        }

        .nav-item a:hover::after,
        .nav-item.active a::after {
            width: 100%;
        }

        .nav-item a:hover,
        .nav-item.active a {
            color: var(--text-main);
        }

        .action-button {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            color: var(--text-main);
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 600;
            letter-spacing: 1.5px;
            cursor: pointer;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .action-button:hover {
            background: var(--accent-color);
            border-color: var(--accent-color);
            box-shadow: 0 0 20px var(--accent-glow);
            transform: translateY(-2px);
        }

        /* Hero Content Section */
        .hero-section {
            position: relative;
            z-index: 10;
            padding: 0 40px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .tagline {
            color: var(--accent-color);
            font-weight: 800;
            font-size: 1.2rem;
            letter-spacing: 6px;
            text-transform: uppercase;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .tagline::before {
            content: '';
            display: inline-block;
            width: 30px;
            height: 2px;
            background-color: var(--accent-color);
            box-shadow: 0 0 8px var(--accent-glow);
        }

        .hero-title {
            font-size: 6.5rem;
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -2px;
            margin-bottom: 30px;
        }

        .hero-title span {
            display: block;
        }

        .hero-title .hollow-text {
            color: transparent;
            -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.8);
        }

        .hero-desc {
            font-size: 1.4rem;
            color: var(--text-muted);
            max-width: 600px;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .cta-group {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .btn-play-now {
            background: var(--accent-color);
            border: none;
            color: var(--text-main);
            padding: 20px 40px;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 800;
            letter-spacing: 2px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 10px 30px var(--accent-glow);
            transition: all 0.3s ease;
        }

        .btn-play-now:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 15px 40px rgba(255, 45, 85, 0.6);
        }

        .btn-play-now i {
            font-size: 1.1rem;
            background: #ffffff;
            color: var(--accent-color);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-left: 3px;
        }

        .btn-secondary {
            background: transparent;
            border: none;
            color: var(--text-main);
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            color: var(--accent-color);
            transform: translateX(5px);
        }

        /* Bottom Bar (Section 1) */
        .bottom-bar {
            position: relative;
            z-index: 10;
            width: 100%;
            padding: 40px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
        }

        .scroll-down {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 0.9rem;
            letter-spacing: 3px;
            color: var(--text-muted);
            cursor: pointer;
            text-transform: uppercase;
            transition: color 0.3s ease;
            text-decoration: none;
        }

        .scroll-down:hover {
            color: var(--text-main);
        }

        .scroll-down i {
            animation: bounce-vertical 2s infinite;
        }

        .social-links {
            display: flex;
            gap: 20px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            color: var(--text-main);
            background: var(--accent-color);
            border-color: var(--accent-color);
            box-shadow: 0 0 15px var(--accent-glow);
            transform: translateY(-3px);
        }

        /* Content Placeholder styles inside Section 2 */
        .placeholder-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 800px;
            padding: 40px;
        }

        .placeholder-title {
            font-family: 'Roboto Condensed', sans-serif;
            font-weight: 700;
            font-size: 2.5rem;
            letter-spacing: 4px;
            margin-bottom: 20px;
            color: var(--text-main);
        }

        .placeholder-desc {
            font-size: 1.2rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* Micro-animations */
        @keyframes pulse-glow {
            0% {
                transform: scale(1);
                opacity: 0.8;
            }
            100% {
                transform: scale(1.05);
                opacity: 1;
            }
        }

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

        /* HERO CONTAINER & SCROLL DOWN */
        .hero-container {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            width: 100%;
            margin-top: 20px;
            margin-bottom: 210px; /* Space reserved for absolute positioned scale box */
            box-sizing: border-box;
            flex-grow: 1;
        }

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

        .vertical-line .line-top {
            width: 2px;
            height: 350px;
            background-color: rgba(255, 255, 255, 0.3);
        }

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

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

        /* NEW HERO CONTENT STYLES (MATCHING USER IMAGE) */
        .hero-left-content {
            position: relative;
            z-index: 10;
            display: flex;
            flex-direction: column;
            padding: 40px 0; /* Left alignment aligns with page padding */
            max-width: 700px;
            box-sizing: border-box;
            margin-left: 60px; /* Separator margin from vertical line */
        }

        .brand-logo-group {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px; /* Tightly packed above ON AIR */
        }

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

        .brand-logo-text span {
            color: #ff7a00;
            margin-left: 4px;
        }

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

        .hero-on-air {
            font-family: 'Roboto Condensed', sans-serif;
            font-size: 11.5rem;
            font-weight: 900;
            line-height: 0.8;
            letter-spacing: -6px;
            margin-bottom: 12px; /* Tightly packed above subtitle */
            text-transform: uppercase;
        }

        .hero-on-air span {
            color: #ff7a00;
        }

        .hero-subtitle {
            font-family: 'Outfit', sans-serif;
            font-size: 2.2rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 15px; /* Tightly packed above description */
            color: #ffffff;
        }

        .hero-description {
            font-family: 'Outfit', sans-serif;
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.6;
            max-width: 580px;
            margin-bottom: 25px; /* Tightly packed above button */
        }

        .btn-container {
            margin-bottom: 35px; /* Tightly packed above features row */
        }

        .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(255, 255, 255, 0.3);
            border-radius: 50px;
            text-decoration: none;
            color: #ffffff;
            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: #ff7a00;
            box-shadow: 0 0 25px rgba(255, 122, 0, 0.4);
            transform: translateY(-2px);
        }

        .play-icon-circle {
            width: 48px;
            height: 48px;
            background-color: #ff7a00;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 1rem;
            padding-left: 3px;
            box-shadow: 0 0 15px rgba(255, 122, 0, 0.4);
        }

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

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

        .feature-icon {
            font-size: 2rem;
            color: #ff7a00;
        }

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

        .feature-title {
            font-family: 'Roboto Condensed', sans-serif;
            font-size: 0.95rem;
            font-weight: 800;
            color: #ffffff;
            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(255, 255, 255, 0.5);
            letter-spacing: 1px;
            line-height: 1.1;
            text-transform: uppercase;
        }

        /* PORTED TOP HEADER STYLES */
        .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 rgb(255 255 255 / 20%);
        }

        .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: #ff7a00;
            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: #ffffff;
            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: #ffffff;
            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: 500;
            font-size: 18px;
            letter-spacing: 0.5px;
            cursor: pointer;
            position: relative;
        }

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

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

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

        .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: #ff7a00;
        }

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

        .top-header .search-button {
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            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(255, 255, 255, 0.1);
            border-color: #ff7a00;
        }

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

        .top-header .mobile-menu-btn {
            display: none;
            font-size: 28px;
            color: #ff7a00;
            cursor: pointer;
            z-index: 15;
        }

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

        .top-header .listen-live-button:hover {
            background-color: #e06b00;
            transform: scale(1.02);
            box-shadow: 0 0 20px rgba(255, 122, 0, 0.4);
        }

        .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; }
        }

        /* PORTED RADIO SHKALA BOX - Sleek Dark Glassmorphism */
        .radio-shkala-box {
            position: absolute;
            bottom: 0;
            left: 40px;
            width: calc(100% - 80px);
            height: 199px;
            background: var(--glass-bg);
            border-radius: 25px;
            border: 1px solid rgb(255 255 255 / 20%);
            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: rgba(255, 255, 255, 0.4);
            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: #ff7a00;
        }

        .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(255 255 255 / 50%);
            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;
        }

        .radio-scale-svg {
            width: 100%;
            height: auto;
            filter: invert(1) brightness(1.2); /* Inverts black tick marks to white */
        }

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

        .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: rgba(255, 255, 255, 0.6);
            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 #ff7a00;
            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: #ffffff;
        }

        .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: #ff7a00;
            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: #ff7a00;
        }

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

        /* Responsive Overrides */
        @media (max-width: 1100px) {
            .top-header .top-menu {
                display: none; /* Hide standard menu on tablets/mobile */
            }
            .top-header .mobile-menu-btn {
                display: block; /* Show hamburger button */
            }
            .header-section {
                padding: 0 40px 0 40px;
            }
        }

        @media (max-width: 991px) {
            .vertical-line {
                display: none;
            }
            .hero-left-content {
                margin-left: 0;
            }
            .hero-container {
                margin-bottom: 0;
                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 0 20px;
            }
            .top-header {
                padding: 20px 0;
            }
            .top-header .listen-live-button {
                display: none; /* Hide menu live button on very small screens */
            }
            .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;
            }
            .placeholder-title {
                font-size: 1.8rem;
            }
        }

        /* Footer Styles */
        .site-footer {
          background-color: rgb(19 22 25 / 50%);
          backdrop-filter: blur(15px);
          -webkit-backdrop-filter: blur(15px);
          color: #a0a0a0;
          padding: 60px 40px 20px;
          font-family: "Outfit", sans-serif;
          border-radius: 17px 17px 0 0;
          border: 1px solid rgb(255 255 255 / 25%);
          border-bottom: none;
          position: relative;
          z-index: 10;
          margin: auto 40px 0 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(--accent-color);
          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(--accent-color);
          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(--accent-color);
        }

        .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 #333333;
          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(--accent-color);
          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: #e06c00;
        }

        .footer-bottom {
          border-top: 1px solid #333333;
          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);
          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(--accent-color);
          transform: translateY(calc(-50% - 3px));
        }

        @media (max-width: 991px) {
          .site-footer {
            padding: 60px 20px 20px;
            margin: auto 20px 0 20px;
          }

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

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

          .newsletter-form input {
            border: 1px solid #333333;
            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;
          }
        }

        /* -------------------------------------------------------------
           PORTED WAVE CONTENT SECTIONS STYLING (DARK GLASSMORPHIC THEME)
        ------------------------------------------------------------- */

        /* Common Section Container Adjustments */
        .stations-section {
            padding: 60px 0 20px 0;
            margin: 0 auto;
            width: 100%;
        }

        .live-section {
            padding: 20px 0;
            margin: 0 auto;
            width: 100%;
        }

        .app-banner-section {
            padding: 20px 0 40px 0;
            margin: 0 auto;
            width: 100%;
        }

        .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', sans-serif;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 3px;
            color: var(--accent-color);
            text-transform: uppercase;
            text-shadow: 0 0 10px rgba(255, 122, 0, 0.2);
        }

        .stations-header .title {
            font-family: 'Outfit', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            letter-spacing: -1px;
            color: var(--text-main);
            margin: 0;
            text-transform: uppercase;
        }

        .stations-header .view-all-link {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            color: var(--accent-color);
            font-size: 0.95rem;
            text-decoration: none;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .stations-header .view-all-link:hover {
            color: #ffffff;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }

        .stations-header .view-all-link i {
            font-size: 1.1rem;
            transition: transform 0.3s ease;
        }

        .stations-header .view-all-link:hover i {
            transform: translateX(5px);
        }

        /* Stations Grid & Cards */
        .stations-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            width: 100%;
        }

        .station-card {
            flex: 0 0 calc(25% - 22.5px);
            background: var(--glass-bg);
            border: 1px solid rgb(255 255 255 / 25%);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-radius: 20px;
            min-height: 390px;
            display: grid;
            grid-template-rows: auto 1fr;
            grid-template-columns: 1fr auto;
            padding: 40px;
            overflow: hidden;
            position: relative;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-sizing: border-box;
        }

        .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,
        .stations-grid.two-cards .station-card:last-child {
            flex: 1 1 calc(50% - 15px);
            min-width: 400px;
        }

        .station-card:hover {
            border-color: var(--accent-color);
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(255, 122, 0, 0.15);
        }

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

        .station-card .card-text h3 {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            color: var(--text-main);
            font-size: 1.8rem;
            margin: 0 0 8px 0;
            text-transform: uppercase;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        .station-card .card-text p {
            font-family: 'Outfit', sans-serif;
            font-weight: 400;
            color: var(--text-muted);
            font-size: 1.1rem;
            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 var(--text-main);
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .station-card .card-play-btn i {
            font-size: 20px;
            color: var(--text-main);
            margin-left: 3px; /* visual center */
            transition: all 0.3s ease;
        }

        .station-card .card-play-btn:hover,
        .station-card .card-play-btn.playing {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
            box-shadow: 0 0 15px var(--accent-glow);
        }

        .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: 'Outfit', sans-serif;
            font-weight: 600;
            color: var(--text-main);
            font-size: 0.95rem;
            letter-spacing: 0.5px;
        }

        .station-card .waveform-icon {
            color: var(--accent-color);
            font-size: 1.1rem;
        }

        .station-card .station-img {
            grid-row: 2;
            grid-column: 2;
            align-self: end;
            width: 170px;
            height: auto;
            border-radius: 50%;
            object-fit: cover;
            border: 1px solid rgb(255 255 255 / 30%);
            padding: 6px;
            background: rgba(255, 255, 255, 0.02);
            transition: transform 0.4s ease, border-color 0.4s ease;
        }

        .station-card:hover .station-img {
            transform: rotate(5deg) scale(1.05);
            border-color: var(--accent-color);
        }

        /* Show waveform inside the playing card */
        .station-card.is-playing .css-waveform {
            display: flex;
        }
        .station-card.is-playing .waveform-icon {
            display: none;
        }
        .station-card.is-playing .live-waveform {
            display: none;
        }

        /* Live Section Layout */
        .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;
            border: 1px solid var(--glass-border);
        }

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

        .live-info .live-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--accent-color);
            font-family: 'Roboto Condensed', sans-serif;
            font-weight: 700;
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin: 0;
        }

        .live-info .live-badge .dot {
            width: 8px;
            height: 8px;
            background-color: var(--accent-color);
            border-radius: 50%;
            box-shadow: 0 0 8px var(--accent-color);
            animation: live-pulse 1.5s infinite;
        }

        @keyframes live-pulse {
            0% { transform: scale(0.9); opacity: 1; }
            50% { transform: scale(1.3); opacity: 0.4; }
            100% { transform: scale(0.9); opacity: 1; }
        }

        .live-info .track-info h3 {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            color: var(--text-main);
            font-size: 2.2rem;
            margin: 0 0 8px 0;
            text-transform: uppercase;
            line-height: 1.1;
            letter-spacing: -0.5px;
        }

        .live-info .track-info p {
            font-family: 'Outfit', sans-serif;
            font-weight: 400;
            color: var(--text-muted);
            font-size: 1.2rem;
            margin: 0;
        }

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

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

        .live-info .live-waveform {
            color: var(--accent-color) !important;
            font-size: 28px;
            margin: 0;
            opacity: 0.8;
        }

        .live-info .live-time {
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            color: var(--text-main);
            font-size: 1.2rem;
            margin: 0;
        }

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

        .schedule-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 35px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--glass-border);
        }

        .schedule-header h3 {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 1.4rem;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-main);
        }

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

        .schedule-header a {
            font-family: 'Outfit', sans-serif;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-muted);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: color 0.3s ease;
        }

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

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

        .schedule-item {
            display: flex;
            align-items: center;
            padding: 15px 20px;
            border-bottom: 1px solid var(--glass-border);
            transition: all 0.3s ease;
            border-radius: 12px;
        }

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

        .schedule-item.active {
            background-color: var(--accent-color);
            border: 1px solid var(--accent-color);
            color: #ffffff;
            box-shadow: 0 5px 15px var(--accent-glow);
        }

        .schedule-item:has(+ .schedule-item.active) {
            border-bottom-color: transparent;
        }

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

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

        .schedule-item:not(.active) .schedule-time {
            color: var(--text-main);
        }

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

        .schedule-info h4 {
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            margin: 0;
        }

        .schedule-item:not(.active) .schedule-info h4 {
            color: var(--text-main);
        }

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

        .schedule-info p {
            font-family: 'Outfit', sans-serif;
            font-weight: 400;
            font-size: 0.9rem;
            margin: 0;
        }

        .schedule-item:not(.active) .schedule-info p {
            color: var(--text-muted);
        }

        .schedule-item.active .schedule-info p {
            color: rgba(255, 255, 255, 0.8);
        }

        .schedule-icon {
            font-size: 1.2rem;
            color: #ffffff;
        }

        .schedule-badge {
            background-color: rgba(255, 255, 255, 0.08);
            color: var(--text-main);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: 1px solid var(--glass-border);
        }

        .notify-btn {
            background: transparent;
            border: 1px solid var(--glass-border);
            color: var(--text-muted);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-family: 'Outfit', sans-serif;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s ease;
        }

        .notify-btn:hover {
            border-color: var(--accent-color);
            color: var(--accent-color);
            background-color: rgba(255, 122, 0, 0.08);
        }

        /* App Banner */

        .app-banner {
            position: relative;
            border: 1px solid rgb(255 255 255 / 25%);
            border-radius: 24px;
            overflow: hidden;
            min-height: 220px;
            display: flex;
            align-items: center;
            background: var(--glass-bg);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }

        .banner-text {
            padding: 40px;
            max-width: 100%;
            width: 100%;
            flex: 1;
            z-index: 2;
        }

        .banner-text h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            letter-spacing: -1.5px;
            margin: 0;
            line-height: 1;
            text-transform: uppercase;
            color: var(--text-main);
        }

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

        .banner-text .script-title {
            font-family: "Signatra", cursive, sans-serif;
            font-size: 4.8rem;
            color: var(--accent-color);
            text-transform: none;
            font-weight: 400;
            margin: -10px 0 0 0;
            letter-spacing: 1px;
            text-shadow: 0 0 20px rgba(255, 122, 0, 0.3);
        }

        .banner-text p {
            font-family: 'Outfit', sans-serif;
            font-size: 1.05rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0;
        }

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

        .banner-apps a {
            display: inline-block;
            transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .banner-apps a:hover {
            transform: translateY(-3px) scale(1.03);
        }

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

        /* --- About Page Styles (Dark Glassmorphism) --- */
        .about-header {
            height: auto !important;
            min-height: auto !important;
            max-height: none !important;
            background-image: none !important;
            background-color: transparent !important;
            padding-bottom: 0 !important;
        }

        .about-header .logo-subtitle {
            color: #ffffff;
        }

        .about-header .logo i {
            color: #ffffff;
        }

        .about-header .radio-shkala-box {
            position: relative;
            left: 0;
            bottom: 0;
            width: 100%;
            margin-top: 40px;
            margin-bottom: 40px;
        }

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

        .about-card {
            background: var(--glass-bg);
            border: 1px solid rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-radius: 20px;
            width: 100%;
            box-sizing: border-box;
            display: grid;
            grid-template-columns: 1.1fr 1.9fr;
            gap: 50px;
            padding: 50px;
            align-items: center;
            transition: border-color 0.4s ease, box-shadow 0.4s ease;
        }

        .about-card:hover {
            border-color: rgba(255, 255, 255, 0.4);
            box-shadow: 0 15px 35px rgba(255, 255, 255, 0.05);
        }

        .about-img-col {
            height: 100%;
            border-radius: 15px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

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

        .about-mission-col {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 24px;
        }

        .mission-label {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 13px;
            color: var(--accent-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(255, 122, 0, 0.2);
        }

        .about-mission-col h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.25;
            color: var(--text-main);
            margin: 0;
            text-transform: uppercase;
            letter-spacing: -0.5px;
        }

        .about-mission-col p {
            font-family: 'Outfit', sans-serif;
            font-size: 1.1rem;
            color: var(--text-muted);
            line-height: 1.65;
            margin: 0;
        }

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

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

        .team-grid::-webkit-scrollbar {
            height: 6px;
        }

        .team-grid::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
        }

        .team-grid::-webkit-scrollbar-thumb {
            background: rgba(255, 122, 0, 0.3);
            border-radius: 10px;
            transition: background 0.3s ease;
        }

        .team-grid::-webkit-scrollbar-thumb:hover {
            background: var(--accent-color);
        }

        .team-card {
            background: var(--glass-bg);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-radius: 20px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            flex: 0 0 calc(25% - 22.5px);
            min-width: 280px;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .team-card:hover {
            border-color: var(--accent-color);
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(255, 122, 0, 0.15);
        }

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

        .team-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .team-card:hover .team-img-wrapper img {
            transform: scale(1.05);
        }

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

        .team-info h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: var(--text-main);
            margin: 0 0 5px 0;
            text-transform: uppercase;
        }

        .team-role {
            font-family: 'Outfit', sans-serif;
            font-size: 13px;
            font-weight: 700;
            color: var(--accent-color);
            text-transform: uppercase;
            margin-bottom: 15px;
            display: block;
            letter-spacing: 1px;
        }

        .team-info p {
            font-family: 'Outfit', sans-serif;
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.5;
            margin: 0 0 20px 0;
            flex-grow: 1;
        }

        .team-socials {
            display: flex;
            gap: 12px;
            margin-top: auto;
        }

        .team-socials a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .team-socials a:hover {
            background-color: var(--accent-color);
            color: #ffffff;
            border-color: var(--accent-color);
            box-shadow: 0 0 10px var(--accent-glow);
        }

        /* --- Stations Page Styles (Dark Glassmorphism) --- */
        .search-section,
        .stations-page-section,
        .app-station-banner-section {
            width: 100%;
            margin-top: 0 !important;
            margin-bottom: 40px !important;
            padding-top: 0 !important;
            padding-bottom: 0 !important;
            box-sizing: border-box;
        }

        .search-section .stations-header .title {
            color: #000000;
        }

        .search-section .stations-header .title span,
        .search-section .stations-header .title .title-white {
            color: #ffffff;
        }

        .search-section .stations-header .title .title-black {
            color: #000000;
        }

        .stations-search-container {
            width: 100%;
            background: transparent;
            border: none;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            border-radius: 0;
            padding: 0;
            box-sizing: border-box;
            box-shadow: none;
        }

        .stations-search-wrapper {
            position: relative;
            width: 100%;
        }

        .stations-search-form {
            display: flex;
            width: 100%;
            gap: 15px;
        }

        .stations-search-form input {
            flex: 1;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgb(255 255 255 / 40%);
            border-radius: 12px;
            padding: 15px 25px;
            font-family: 'Outfit', sans-serif;
            font-size: 16px;
            color: #ffffff;
            transition: all 0.3s ease;
        }

        .stations-search-form input::placeholder {
            color: rgba(255, 255, 255, 0.7);
            opacity: 1;
        }

        .stations-search-form input:focus {
            outline: none;
            border-color: var(--accent-color);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 10px rgba(255, 122, 0, 0.1);
        }

        .stations-search-btn {
            background: var(--accent-color);
            border: none;
            border-radius: 12px;
            width: 54px;
            height: 54px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .stations-search-btn:hover {
            background: #e06c00;
            box-shadow: 0 0 15px var(--accent-glow);
            transform: translateY(-2px);
        }

        .search-hint {
            margin-top: 15px;
            font-family: 'Outfit', sans-serif;
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 0;
            text-align: center;
        }

        /* Auto-suggest search dropdown */
        .search-dropdown-menu {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            width: 100%;
            background: #131619;
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            z-index: 100;
            display: none;
            max-height: 300px;
            overflow-y: auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

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

        .search-dropdown-item {
            padding: 12px 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            cursor: pointer;
            transition: background 0.2s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        }

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

        .search-dropdown-item:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .search-dropdown-item-img {
            width: 36px;
            height: 36px;
            border-radius: 6px;
            object-fit: cover;
            background: rgba(255, 255, 255, 0.05);
        }

        .search-dropdown-item-text {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 3px;
        }

        .search-dropdown-item-title {
            font-family: 'Outfit', sans-serif;
            font-size: 15px;
            font-weight: 500;
            color: #ffffff;
        }

        .search-dropdown-item-genre {
            font-family: 'Outfit', sans-serif;
            font-size: 11px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .search-dropdown-no-results {
            padding: 20px;
            text-align: center;
            font-family: 'Outfit', sans-serif;
            font-size: 14px;
            color: var(--text-muted);
        }

        /* Stations Grid Styling */
        .clear-all-btn {
            font-family: 'Roboto Condensed', sans-serif;
            font-size: 15px;
            font-weight: 700;
            color: var(--accent-color);
            text-decoration: none;
            letter-spacing: 1.5px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .clear-all-btn:hover {
            color: #ffffff;
            text-shadow: 0 0 10px var(--accent-glow);
        }

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

        .stations-page-card {
            position: relative;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-radius: 20px;
            min-height: 390px;
            display: grid;
            grid-template-rows: auto 1fr;
            grid-template-columns: 1fr auto;
            padding: 40px;
            box-sizing: border-box;
            transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
        }

        .stations-page-card:hover {
            border-color: rgba(255, 122, 0, 0.4);
            box-shadow: 0 12px 30px rgba(255, 122, 0, 0.05);
            transform: translateY(-5px);
        }

        .close-sp-card {
            position: absolute;
            top: -10px;
            right: -10px;
            color: rgba(255, 255, 255, 0.45);
            background: #121318; /* Mask the border behind */
            border-radius: 50%;
            width: 24px;
            height: 24px;
            font-size: 24px;
            transition: all 0.3s ease;
            z-index: 10;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        .close-sp-card:hover {
            color: #ffffff;
            background: #ff3b30;
            transform: rotate(90deg) scale(1.1);
        }

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

        .stations-page-card .sp-card-text h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 25px;
            font-weight: 700;
            color: #ffffff;
            margin: 0 0 6px 0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .stations-page-card .sp-card-text p {
            font-family: 'Outfit', sans-serif;
            font-size: 14px;
            color: var(--text-muted);
            margin: 0;
        }

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

        .stations-page-card .sp-card-play-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.05);
            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: 16px;
            color: #ffffff;
            transition: color 0.3s ease;
        }

        .stations-page-card .sp-card-play-btn:hover,
        .stations-page-card .sp-card-play-btn.playing {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
            box-shadow: 0 0 15px var(--accent-glow);
        }

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

        .stations-page-card .sp-listening-count {
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            color: var(--accent-color);
            font-size: 15px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .stations-page-card .sp-waveform-icon {
            color: rgba(255, 255, 255, 0.3);
            font-size: 14px;
        }

        .stations-page-card .sp-listening-info .css-waveform {
            display: none;
            align-items: flex-end;
            gap: 2px;
            height: 14px;
            margin-left: 0;
        }

        .stations-page-card .sp-listening-info .css-waveform span {
            width: 2px;
            background-color: var(--accent-color);
        }

        .stations-page-card.is-playing .sp-listening-info .sp-waveform-icon {
            display: none !important;
        }

        .stations-page-card.is-playing .sp-listening-info .css-waveform {
            display: flex !important;
        }

        .stations-page-card .sp-station-img {
            grid-row: 2;
            grid-column: 2;
            align-self: end;
            width: 195px;
            height: 195px;
            border-radius: 50%;
            object-fit: cover;
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 5px;
            background: rgba(255, 255, 255, 0.02);
            transition: transform 0.5s ease, border-color 0.5s ease;
        }

        .stations-page-card:hover .sp-station-img {
            transform: rotate(5deg) scale(1.05);
            border-color: var(--accent-color);
        }

        /* Custom Modal Dialog Styling */
        .custom-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 12, 14, 0.8);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

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

        .custom-modal {
            background: #131619;
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 40px;
            max-width: 450px;
            width: 90%;
            text-align: center;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
            transform: scale(0.9);
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .custom-modal-overlay.active .custom-modal {
            transform: scale(1);
        }

        .custom-modal-icon {
            font-size: 48px;
            color: #ff3b30;
            margin-bottom: 20px;
        }

        .custom-modal-title {
            font-family: 'Outfit', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: #ffffff;
            margin: 0 0 12px 0;
        }

        .custom-modal-text {
            font-family: 'Outfit', sans-serif;
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0 0 30px 0;
        }

        .custom-modal-actions {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        .custom-modal-actions button {
            flex: 1;
            padding: 14px 24px;
            font-family: 'Outfit', sans-serif;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 1px;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .modal-btn-cancel {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            color: #ffffff;
        }

        .modal-btn-cancel:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .modal-btn-confirm {
            background: #ff3b30;
            color: #ffffff;
        }

        .modal-btn-confirm:hover {
            background: #e02d22;
            box-shadow: 0 0 15px rgba(255, 59, 48, 0.3);
        }

        /* --- Responsive Adjustments --- */
        @media (max-width: 1550px) {
            .stations-page-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }
        }

        @media (max-width: 1240px) {
            .stations-section,
            .live-section,
            .app-banner-section {
                padding-left: 20px;
                padding-right: 20px;
            }
        }

        @media (max-width: 1199px) {
            .station-card {
                flex: 0 0 calc(50% - 15px);
            }
            
            .banner-text {
                max-width: 100%;
            }

            .team-card {
                flex: 0 0 calc(33.333% - 20px);
                min-width: 260px;
            }

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

        @media (max-width: 991px) {
            .stations-header .title {
                font-size: 1.8rem;
            }

            .station-card {
                padding: 30px;
                min-height: 350px;
            }

            .stations-page-grid {
                grid-template-columns: 1fr !important;
                gap: 20px !important;
            }

            .stations-page-card {
                padding: 20px !important;
                min-height: auto !important;
            }

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

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

            .stations-grid.two-cards .station-card {
                grid-template-columns: 1.5fr 1fr;
                padding: 30px;
            }

            .station-card.schedule-card {
                padding: 30px;
            }

            .schedule-badge,
            .schedule-icon,
            .notify-btn {
                display: none !important;
            }

            .app-banner {
                flex-direction: column;
                text-align: center;
                padding-bottom: 40px;
            }

            .banner-text {
                padding: 40px 20px;
                max-width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .title-with-apps {
                justify-content: center;
                gap: 20px;
            }

            .banner-apps {
                justify-content: center;
            }

            .about-card {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 35px;
            }

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

            .about-mission-col h2 {
                font-size: 2.2rem;
            }

            .team-card {
                flex: 0 0 calc(50% - 15px);
                min-width: 250px;
            }
        }

        @media (max-width: 767px) {
            .stations-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .stations-header .view-all-link {
                margin-bottom: 0;
            }

            .station-card {
                flex: 0 0 100%;
            }

            .stations-grid.two-cards .station-card {
                grid-template-columns: 1fr;
                grid-template-rows: auto auto;
                gap: 30px;
                flex: 0 0 100% !important;
                width: 100%;
                min-width: 0 !important;
            }

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

            .station-card .live-left {
                grid-row: 2;
                grid-column: 1;
                justify-content: center;
            }

            .station-card .live-img {
                max-width: 250px;
            }

            .station-card .live-info {
                grid-row: 1;
                grid-column: 1;
                align-items: center;
                text-align: center;
                gap: 15px;
            }

            .live-info .play-wave-wrapper {
                flex-direction: column;
                gap: 15px;
            }

            .banner-text h2 {
                font-size: 2.2rem;
            }

            .banner-text .script-title {
                font-size: 3.5rem;
            }

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

            .about-mission-col h2 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .stations-page-card .sp-station-img {
                width: 90px !important;
                height: 90px !important;
            }

            .station-card {
                padding: 20px;
                min-height: auto;
                grid-template-rows: auto auto auto;
                grid-template-columns: 1fr;
                gap: 20px;
            }

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

            .station-card .card-stats {
                grid-row: 2;
                grid-column: 1;
                align-self: start;
            }

            .station-card .station-img {
                grid-row: 3;
                grid-column: 1;
                align-self: center;
                margin: 0 auto;
            }

            .schedule-time {
                width: 90px;
                font-size: 0.95rem;
            }

            .schedule-info h4 {
                font-size: 0.95rem;
            }

            .schedule-item {
                padding: 12px 10px;
            }

            .team-card {
                flex: 0 0 100%;
            }
        }

        /* --- Blog & Contact Page Styles (Dark Glassmorphism) --- */
        .blog-page-section,
        .contact-page-section {
            width: 100%;
            margin-top: 0 !important;
            margin-bottom: 40px !important;
            padding-top: 0 !important;
            padding-bottom: 0 !important;
            box-sizing: border-box;
        }

        .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;
        }

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

        /* Sidebar Styling */
        .blog-sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .sidebar-block {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .sidebar-block:hover {
            border-color: rgba(255, 255, 255, 0.15);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }

        .sidebar-block h3 {
            font-family: 'Roboto Condensed', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 2px;
            margin-bottom: 25px;
            color: #ffffff;
            position: relative;
        }

        .sidebar-block h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--accent-color);
            box-shadow: 0 0 8px var(--accent-glow);
        }

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

        .category-list li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Outfit', sans-serif;
            font-weight: 500;
            font-size: 1.05rem;
            color: var(--text-muted);
        }

        .category-list li:hover {
            color: #ffffff;
            transform: translateX(5px);
        }

        .category-list li.active {
            color: var(--accent-color);
            font-weight: 600;
        }

        .category-list li.active .cat-name {
            color: var(--accent-color);
        }

        .cat-badge {
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--glass-border);
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-muted);
            transition: all 0.3s ease;
        }

        .category-list li:hover .cat-badge,
        .category-list li.active .cat-badge {
            background-color: var(--accent-color);
            color: #ffffff;
            border-color: var(--accent-color);
            box-shadow: 0 0 10px var(--accent-glow);
        }

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

        .tag {
            background-color: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--glass-border);
            color: var(--text-muted);
            padding: 8px 16px;
            border-radius: 30px;
            text-decoration: none;
            font-family: 'Outfit', sans-serif;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .tag:hover {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
            color: #ffffff;
            box-shadow: 0 0 12px var(--accent-glow);
            transform: translateY(-2px);
        }

        /* Newsletter Block */
        .newsletter-block {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .newsletter-icon-wrapper {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: rgba(255, 122, 0, 0.1);
            border: 1px solid rgba(255, 122, 0, 0.2);
            color: var(--accent-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 20px;
            text-shadow: 0 0 10px var(--accent-glow);
            animation: pulse-glow 2s infinite alternate;
        }

        .newsletter-block h3::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .newsletter-block p {
            font-size: 1rem;
            color: var(--text-muted);
            line-height: 1.5;
            margin-bottom: 25px;
            font-family: 'Outfit', sans-serif;
        }

        .blog-newsletter-form {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .blog-newsletter-form input {
            width: 100%;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid var(--glass-border);
            padding: 14px 20px;
            border-radius: 30px;
            color: #ffffff;
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            outline: none;
            transition: all 0.3s ease;
        }

        .blog-newsletter-form input:focus {
            border-color: var(--accent-color);
            background: rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 10px var(--accent-glow);
        }

        .blog-newsletter-form button {
            width: 100%;
            background-color: var(--accent-color);
            color: #ffffff;
            border: none;
            padding: 14px;
            border-radius: 30px;
            font-family: 'Roboto Condensed', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px var(--accent-glow);
        }

        .blog-newsletter-form button:hover {
            background-color: #e06b00;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 122, 0, 0.5);
        }

        /* Search Widget */
        .blog-search-form {
            position: relative;
            display: flex;
            align-items: center;
            width: 100%;
        }

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

        .blog-search-form input:focus {
            border-color: var(--accent-color);
            background: rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 10px var(--accent-glow);
        }

        .blog-search-form button {
            position: absolute;
            right: 5px;
            background: none;
            border: none;
            color: var(--text-muted);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }

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

        /* Recent Posts Widget */
        .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(255, 255, 255, 0.05);
            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 var(--glass-border);
            transition: all 0.3s ease;
        }

        .recent-post-item:hover img {
            border-color: var(--accent-color);
            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: #ffffff;
            line-height: 1.3;
            transition: color 0.3s ease;
        }

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

        .recent-post-date {
            font-family: 'Roboto Condensed', sans-serif;
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* Blog Main Content & News Cards */
        .blog-main-content {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

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

        .blog-post-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            text-decoration: none;
            color: #ffffff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .blog-post-card:hover {
            border-color: rgba(255, 122, 0, 0.4);
            transform: translateY(-4px);
            box-shadow: 0 15px 35px rgba(255, 122, 0, 0.15);
        }

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

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

        .blog-post-card .post-content {
            padding: 30px 35px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 15px;
        }

        .blog-post-card .post-title {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            line-height: 1.35;
            color: #ffffff;
            margin: 0;
            transition: color 0.3s ease;
        }

        .blog-post-card:hover .post-title {
            color: var(--accent-color);
        }

        .blog-post-card .post-excerpt {
            font-family: 'Outfit', sans-serif;
            font-size: 1.05rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0;
        }

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

        .blog-post-card .post-meta {
            font-family: 'Roboto Condensed', sans-serif;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.4);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .blog-post-card .post-arrow {
            color: var(--text-muted);
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

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

        /* Pagination styling */
        .blog-pagination {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .blog-pagination a {
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--glass-border);
            color: #ffffff;
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .blog-pagination a:hover,
        .blog-pagination a.active {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
            color: #ffffff;
            box-shadow: 0 0 15px var(--accent-glow);
            transform: translateY(-2px);
        }

        .blog-pagination .page-dots {
            color: var(--text-muted);
            font-weight: 600;
            width: 30px;
            text-align: center;
        }

        /* --- Single Post Detail Page Styles --- */
        .single-post-area {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .single-post-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            padding: 40px;
        }

        .single-post-image {
            width: 100%;
            height: 550px;
            max-height: none;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 30px;
        }

        .single-post-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .single-post-text {
            font-family: 'Outfit', sans-serif;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.75;
            margin: 0;
        }

        /* Comments Section Styling */
        .post-comments-section {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .comments-title {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: #ffffff;
            position: relative;
        }

        .comments-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--accent-color);
            box-shadow: 0 0 8px var(--accent-glow);
        }

        .comments-list {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-bottom: 40px;
        }

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

        .comment-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
            border: 2px solid rgba(255, 255, 255, 0.1);
        }

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

        .comment-content {
            background-color: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--glass-border);
            border-radius: 18px;
            padding: 25px;
            flex-grow: 1;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: border-color 0.3s ease;
        }

        .comment-content:hover {
            border-color: rgba(255, 122, 0, 0.3);
        }

        .comment-content h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.15rem;
            font-weight: 600;
            color: #ffffff;
            margin: 0 0 5px 0;
        }

        .comment-date {
            font-family: 'Roboto Condensed', sans-serif;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.4);
            letter-spacing: 0.5px;
            display: block;
            margin-bottom: 15px;
        }

        .comment-content p {
            font-family: 'Outfit', sans-serif;
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.5;
            margin: 0 0 15px 0;
        }

        .reply-btn {
            font-family: 'Roboto Condensed', sans-serif;
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--accent-color);
            text-decoration: none;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .reply-btn:hover {
            color: #ffffff;
            text-shadow: 0 0 8px var(--accent-glow);
        }

        /* Leave a Comment Form */
        .leave-comment-form {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 40px;
        }

        .leave-comment-form h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 10px;
        }

        .leave-comment-form p {
            font-family: 'Outfit', sans-serif;
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-bottom: 25px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 20px;
            width: 100%;
        }

        .form-group label {
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            color: #ffffff;
            letter-spacing: 0.5px;
        }

        .leave-comment-form input,
        .leave-comment-form textarea,
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid var(--glass-border);
            padding: 14px 20px;
            border-radius: 12px;
            color: #ffffff;
            font-family: 'Outfit', sans-serif;
            font-size: 1.05rem;
            outline: none;
            transition: all 0.3s ease;
        }

        .leave-comment-form input:focus,
        .leave-comment-form textarea:focus,
        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: var(--accent-color);
            background: rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 10px var(--accent-glow);
        }

        .submit-comment-btn {
            background-color: var(--accent-color);
            color: #ffffff;
            border: none;
            padding: 16px 35px;
            border-radius: 30px;
            font-family: 'Roboto Condensed', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px var(--accent-glow);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .submit-comment-btn:hover {
            background-color: #e06b00;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 122, 0, 0.5);
        }

        /* --- Contact Page Styles --- */
        .contact-container {
            display: grid;
            grid-template-columns: 1.2fr 1.8fr;
            gap: 40px;
            width: 100%;
            align-items: stretch;
        }

        .contact-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 45px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: border-color 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .contact-card:hover {
            border-color: rgba(255, 255, 255, 0.12);
        }

        .contact-card h3 {
            font-family: 'Roboto Condensed', sans-serif;
            font-weight: 700;
            font-size: 1.4rem;
            letter-spacing: 2px;
            margin-bottom: 20px;
            color: #ffffff;
            position: relative;
        }

        .contact-card h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--accent-color);
            box-shadow: 0 0 8px var(--accent-glow);
        }

        .contact-card p {
            font-family: 'Outfit', sans-serif;
            font-size: 1.05rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 35px;
        }

        .info-list {
            list-style: none;
            padding: 0;
            margin: 0 0 35px 0;
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .info-list li {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: rgba(255, 122, 0, 0.1);
            border: 1px solid rgba(255, 122, 0, 0.2);
            color: var(--accent-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            flex-shrink: 0;
            box-shadow: 0 0 10px rgba(255, 122, 0, 0.15);
        }

        .info-text {
            font-family: 'Outfit', sans-serif;
            font-size: 1.05rem;
            color: #ffffff;
            line-height: 1.5;
        }

        .contact-map {
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--glass-border);
            margin-top: auto;
        }

        .contact-map iframe {
            display: block;
            border: 0;
        }

        /* --- Media Queries for Blog, Post, and Contact Pages --- */
        @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: 1100px) {
            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        @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;
                width: 100%;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .comment {
                flex-direction: column;
                gap: 15px;
            }

            .comment-avatar {
                width: 50px;
                height: 50px;
            }

            .contact-card {
                padding: 30px;
            }
        }

/* =========================
   RESPONSIVE INMINENTE
========================= */

/* TABLET */
@media screen and (max-width:1024px){

.top-header{
    padding:20px;
    flex-wrap:wrap;
    gap:20px;
}

.top-menu{
    display:none;
}

.mobile-menu-btn{
    display:flex !important;
}

.hero-container{
    padding:40px 30px;
}

.hero-on-air{
    font-size:80px !important;
    line-height:1;
}

.hero-subtitle{
    font-size:24px !important;
}

.hero-description{
    max-width:100%;
    font-size:15px;
}

.bottom-features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}

.stations-grid{
    display:grid !important;
    grid-template-columns:1fr !important;
}

.footer-columns{
    display:grid !important;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.radio-shkala-box{
    display:none;
}

.live-section{
    padding:20px;
}

.app-banner{
    padding:40px;
}

.banner-text h2{
    font-size:35px;
}

}


/* MOBILE */

@media screen and (max-width:768px){

body{
overflow-x:hidden;
}

.header-section{
min-height:auto;
}

.top-header{
padding:15px;
justify-content:space-between;
}

.logo-title{
font-size:22px !important;
}

.logo-subtitle{
display:none;
}

.listen-live-button{
display:none;
}

.vertical-line{
display:none;
}

.hero-container{
padding:25px;
}

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

.hero-on-air{
font-size:50px !important;
line-height:1;
}

.hero-subtitle{
font-size:18px !important;
margin-top:10px;
}

.hero-description{
font-size:14px;
line-height:1.7;
}

.btn-container{
margin-top:25px;
}

.bottom-features{
grid-template-columns:1fr;
gap:15px;
margin-top:30px;
}

.feature-col{
justify-content:center;
}

.live-section{
padding:10px;
}

.station-card{
flex-direction:column;
}

.live-img{
width:100%;
height:auto;
}

.footer-columns{
grid-template-columns:1fr !important;
text-align:center;
}

.social-icons{
justify-content:center;
display:flex;
flex-wrap:wrap;
}

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

.newsletter-form input,
.newsletter-form button{
width:100%;
}

.footer-bottom{
flex-direction:column;
gap:20px;
text-align:center;
}

.scroll-top-btn{
margin:auto;
}

.app-banner{
padding:25px;
}

.banner-apps{
display:flex;
flex-direction:column;
gap:15px;
}

.banner-apps img{
width:180px;
}

iframe{
width:100%!important;
height:100%!important;
}

}


/* EXTRA PEQUEÑO */

@media screen and (max-width:480px){

.hero-on-air{
font-size:40px !important;
}

.hero-subtitle{
font-size:16px !important;
}

.hero-description{
font-size:13px;
}

.banner-text h2{
font-size:28px;
}

.script-title{
font-size:28px !important;
}

}

/* ===== MENÚ CELULAR ===== */

.mobile-dropdown-menu{
    background:#ffffff !important; /* fondo */
}

.mobile-menu-items .menu-item a{
    color:#000 !important; /* texto */
    font-size:20px;
    font-weight:700;
}

.mobile-menu-items .menu-item{
    border-bottom:1px solid rgba(0,0,0,.1);
    padding:15px 0;
}

.mobile-menu-items .menu-item.active a{
    color:#ff7a00 !important;
}

.mobile-menu-items .menu-item a:hover{
    color:#ff7a00 !important;
}

.mobile-menu-close{
    color:#000 !important;
}
