@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Oswald:wght@400;700&display=swap');

:root {
    --primary-color: #f20443;
    --primary-color-hover: #d0033a;
    --bg-dark: #000000;
    --bg-dark-90: rgba(0, 0, 0, 0.9);
    --bg-dark-80: rgba(0, 0, 0, 0.8);
    --bg-card: #1a1a1a;
    --text-white: #ffffff;
    --text-gray: #aaaaaa;
    --accent-blue: #03a9f4;
    --header-height: 80px;
    --top-bar-height: 40px;
    --transition-smooth: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition-smooth);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-center {
    text-align: center;
}

.section-header {
    margin: 0;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color-hover);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
}

.section-title {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 5px 15px;
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
}

/* Top Bar */
.top-bar {
    background-color: #0d0d0d;
    height: var(--top-bar-height);
    font-size: 0.7rem;
    font-weight: 700;
    border-bottom: 1px solid #222;
}

.top-nav ul {
    display: flex;
    gap: 20px;
}

.top-nav ul li a {
    color: #fff;
    transition: var(--transition-smooth);
}

.top-nav ul li a i {
    color: var(--primary-color);
    font-size: 0.6rem;
    margin-right: 5px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-links a {
    color: var(--text-white);
    font-size: 0.75rem;
    width: 26px;
    height: 26px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    color: #fff;
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.socket-social {
    display: flex;
    gap: 15px;
}

.socket-social a {
    color: var(--text-white);
    font-size: 0.8rem;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.socket-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Main Header Styling */
.main-header {
    background-color: #ffd000;
    height: 80px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: none;
}

.main-header .container {
    max-width: 100%;
    margin: 0;
    padding: 0 0 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.header-left,
.mobile-menu-toggle {
    display: none;
}

.logo img {
    height: 140px;
    z-index: 1001;
    position: relative;
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.4));
    margin-bottom: -15px;
    /* Fine-tuning vertical balance */
}

.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    display: flex;
    gap: 8px;
}

.main-nav ul li a {
    font-family: 'Oswald', sans-serif;
    font-style: italic;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 4px;
}

.main-nav ul li a i {
    font-size: 0.8rem;
    color: #000;
    transition: transform 0.3s ease;
}

.main-nav ul li.active a,
.main-nav ul li a:hover {
    color: var(--primary-color) !important;
    letter-spacing: 1px;
}

.top-nav ul li.active a,
.top-nav ul li a:hover {
    color: var(--primary-color) !important;
}

/* Red Hamburger Icon for Menu - Animated */
.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 18px;
    transition: all 0.3s ease;
}

.menu-icon span {
    display: block;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.menu-icon span:nth-child(1) {
    width: 12px;
}

.menu-icon span:nth-child(2) {
    width: 18px;
}

.menu-icon span:nth-child(3) {
    width: 12px;
}

.main-nav ul li a:hover .menu-icon span {
    width: 18px;
    background-color: #000;
}

.main-nav ul li.active a .menu-icon span {
    width: 18px;
}

/* Header Player - Right Side */
.header-player {
    display: flex;
    align-items: center;
    height: 80px;
    background: #ffd000;
}

.current-track-img {
    height: 80px;
    width: 80px;
}

.current-track-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.track-meta {
    padding: 0 25px;
    text-align: right;
    min-width: 180px;
}

.track-meta h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.1;
    color: #000;
    margin: 0;
    letter-spacing: 0.5px;
}

.track-meta p {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #000;
    margin: 0;
}

.play-square {
    background: var(--primary-color);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

/* Hero Section */
.hero-section {
    height: 450px;
    position: relative;
    overflow: hidden;
}

.hero-banner {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero-tags {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
}

.hero-tags span {
    background: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
    font-style: italic;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ddd;
}

.hero-menu-btn {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 2;
}

/* Currently On Air Section */
.current-show-section {
    padding: 10px 0 5px;
    background: #fff;
}

.section-title.italic {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    font-style: italic;
    background: #000;
    color: #fff;
    padding: 12px 35px;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: -1px 0 #03a9f4, 1px 0 #f20443;
    text-transform: uppercase;
}

.current-show-complex-banner {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
}

.current-show-complex-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000 0%, #000 35%, #f20443 35%, #f20443 50%, #000 50%, #000 100%);
    opacity: 0.9;
    z-index: 1;
}

.current-show-content {
    position: relative;
    z-index: 10;
    padding: 60px;
    width: 100%;
    text-align: center;
}

.now-on-air-tag {
    background: #fff;
    color: #000;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    padding: 5px 15px;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.8rem;
}

.show-title-main {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.show-description-main {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.show-social-meta {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.show-social-meta a {
    color: #fff;
    font-size: 1.2rem;
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.show-social-meta a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.show-time-meta {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 30px;
}

.show-time-meta span {
    margin: 0 10px;
}

.show-redirect-play {
    background: var(--primary-color);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(242, 4, 67, 0.4);
}

.presenter-image-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 5;
}

.presenter-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Decorations */
.deco-x {
    position: absolute;
    width: 100px;
    height: 100px;
    z-index: 10;
    pointer-events: none;
}

.deco-left {
    bottom: 50px;
    left: 40px;
    background: linear-gradient(45deg, transparent 45%, #fff 45%, #fff 55%, transparent 55%),
        linear-gradient(-45deg, transparent 45%, #fff 45%, #fff 55%, transparent 55%);
    width: 80px;
    height: 80px;
    opacity: 0.8;
}

.deco-bottom {
    bottom: -20px;
    right: 45%;
    border: 2px solid #f20443;
    width: 120px;
    height: 120px;
    transform: rotate(45deg);
    opacity: 0.3;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 15px solid rgba(255, 255, 255, 0.1);
    width: 200px;
    height: 200px;
    z-index: 2;
}

.deco-top-right {
    top: -50px;
    right: 10%;
}

.deco-dots {
    position: absolute;
    width: 60px;
    height: 100px;
    background-image: radial-gradient(#fff 2px, transparent 2px);
    background-size: 12px 12px;
    z-index: 10;
    opacity: 0.5;
}

.deco-top-left {
    top: 40px;
    left: 60px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

/* Mobile Menu Overlay */
/* Mobile Menu Overlay Redesign - Premium Feel */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, #1a1a1a 0%, #000 80%);
    z-index: 2000;
    transition: left 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu-overlay::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 300px;
    height: 300px;
    border: 30px solid rgba(242, 4, 67, 0.05);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    left: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 10;
}

.mobile-menu-close:hover {
    background: var(--primary-color);
    transform: rotate(90deg);
}

.mobile-logo {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.mobile-logo img {
    height: 70px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
}

.mobile-nav {
    position: relative;
    z-index: 1;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
}

.mobile-nav ul li {
    margin-bottom: 30px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active .mobile-nav ul li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu-overlay.active .mobile-nav ul li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-nav ul li:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu-overlay.active .mobile-nav ul li:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-nav ul li:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-menu-overlay.active .mobile-nav ul li:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-menu-overlay.active .mobile-nav ul li:nth-child(6) {
    transition-delay: 0.35s;
}

.mobile-nav ul li a {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    font-style: italic;
    color: white !important;
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.mobile-nav ul li.active a {
    color: var(--primary-color) !important;
}

.mobile-nav ul li.active a .menu-icon span {
    width: 15px;
}

.mobile-nav ul li a .menu-icon {
    width: 15px;
}

.mobile-nav ul li a:hover {
    padding-left: 10px;
}

.mobile-social {
    margin-top: auto;
    display: flex;
    gap: 15px;
    padding-top: 40px;
    position: relative;
    z-index: 1;
}

.mobile-social a {
    color: white;
    font-size: 1.2rem;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.mobile-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.mobile-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Coming Next Section */
.coming-next-section {
    padding: 40px 0 20px;
    background: #fff;
}

.coming-next-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 15px;
}

.show-card {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.show-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.show-card:hover img {
    transform: scale(1.1);
}

.show-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    color: #fff;
    z-index: 2;
}

.show-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.show-tags span {
    font-size: 0.65rem;
    color: var(--accent-blue);
    font-weight: 700;
}

.show-time {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.show-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.show-presenter {
    font-size: 0.8rem;
    opacity: 0.7;
}

.show-menu-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: #fff;
    font-size: 1.2rem;
    z-index: 3;
}

.carousel-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: calc(100% + 100px);
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.carousel-btn {
    pointer-events: auto;
    background: var(--accent-blue);
    color: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot-sm {
    width: 10px;
    height: 10px;
    border: 1px solid #555;
    border-radius: 50%;
}

.dot-sm.active {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
}

/* Footer widget fix */
.banner-widget-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.banner-widget-grid img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

/* --- Media Queries --- */

/* Laptop / Desktop Small (1200px) */
@media (max-width: 1200px) {
    .main-nav ul {
        gap: 15px;
    }

    .main-nav ul li a {
        font-size: 0.95rem;
    }
}

/* Tablet (1024px) */
@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        background: var(--primary-color) !important;
        color: #fff !important;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 0;
        z-index: 10;
    }

    .main-header {
        height: 80px;
        background-color: #ffd000 !important;
        position: sticky;
        top: 0;
        z-index: 1000;
        overflow: visible;
        /* Allow logo to pop out */
    }

    .main-header .container {
        padding: 0 15px;
        display: grid;
        grid-template-columns: 1fr 2fr 1fr;
        align-items: center;
        max-width: 100%;
        height: 100%;
    }

    .header-left {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .logo {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 80px;
        position: relative;
        /* Anchor for absolute img */
    }

    .logo img {
        height: 110px !important;
        object-fit: contain;
        z-index: 1001;
        position: absolute;
        /* Take out of flow to avoid stretching header */
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    }

    .header-player {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        height: 100%;
        background: transparent !important;
    }

    .track-meta,
    .current-track-img {
        display: none !important;
    }

    .play-square {
        width: 60px;
        height: 60px;
        background: var(--primary-color) !important;
        color: #fff !important;
        font-size: 1.5rem;
    }
}

/* Mobile Landscape / Large Phone (768px) */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .current-show-complex-banner {
        flex-direction: column;
        min-height: auto;
    }

    .current-show-complex-banner::before {
        width: 100%;
        height: 100%;
        /* Cover the whole area now that city img is gone */
    }

    .current-show-complex-banner::after {
        display: none !important;
        /* Remove background image on mobile */
    }

    .current-show-content {
        width: 100%;
        padding: 50px 20px;
        /* Reduced vertical space */
    }

    .presenter-image-container {
        display: none !important;
        /* Remove presenter image on mobile */
    }

    .show-title-main {
        font-size: 2.8rem;
        /* Slightly smaller for mobile */
    }

    .show-redirect-play {
        width: 60px;
        height: 60px;
        margin-top: 10px;
    }

    .coming-next-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .play-now-banner {
        padding: 20px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        height: auto;
        min-height: 200px;
    }

    .banner-play-btn {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

/* Mobile Portrait (480px) */
@media (max-width: 480px) {
    .current-track-img {
        display: none;
    }

    .header-player {
        margin-left: auto;
    }

    .hero-section {
        height: 320px;
        /* More compact hero on small mobile */
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .show-title-main {
        font-size: 2.2rem;
    }

    .current-show-section {
        padding: 15px 0;
        /* Further reduced spacing for small mobile */
    }

    .section-title.italic {
        margin-bottom: 15px;
    }

    .slide-tags span {
        font-size: 0.7rem;
        margin: 0 5px;
    }

    .banner-track-info h3 {
        font-size: 1.4rem;
    }

    .coming-next-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-widget {
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

    .socket-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .logo img {
        height: 90px !important;
        z-index: 1001;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    }

    .mobile-menu-toggle {
        font-size: 1.5rem;
    }
}

/* Schedule Page Specific Styles */
.schedule-main-content {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding-bottom: 80px;
}

.geometric-page-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.bg-slash-green {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a2f1f;
    clip-path: polygon(0 0, 75% 0, 35% 100%, 0% 100%);
    z-index: 1;
}

.bg-slash-red {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    clip-path: polygon(75% 0, 100% 0, 100% 100%, 35% 100%);
    z-index: 0;
}

/* Mobile Fix for Background Slashes */
@media (max-width: 768px) {
    .bg-slash-green {
        clip-path: polygon(0 0, 100% 0, 40% 100%, 0% 100%);
        width: 120%;
        /* Expansion to prevent gaps */
    }

    .bg-slash-red {
        clip-path: polygon(40% 0, 100% 0, 100% 100%, 0% 100%);
        opacity: 0.9;
    }
}

.relative-z {
    position: relative;
    z-index: 10;
}

.schedule-hero {
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    min-height: 600px;
    color: #fff;
}

.hero-show-display {
    width: 60%;
    position: relative;
    z-index: 15;
}

.now-tag {
    background: #fff;
    color: #000;
    padding: 5px 15px;
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}

.huge-title {
    font-size: 5rem;
    line-height: 0.9;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

.show-tagline {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.show-meta-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

.show-time-schedule {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
}

.big-play-btn {
    background: var(--primary-color);
    color: #fff;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-presenter-cutout {
    width: 35%;
    position: relative;
}

.hero-presenter-cutout img {
    width: 100%;
    max-width: 400px;
    position: relative;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
}

/* Coming Next Grid - Schedule Page */
.schedule-next {
    margin-top: 40px;
}

.section-label {
    margin-bottom: 40px;
}

.section-label span {
    background: #000;
    color: #fff;
    padding: 12px 35px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-shadow: -1px 0 #03a9f4, 1px 0 #f20443;
    text-transform: uppercase;
    display: inline-block;
}

.next-shows-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.schedule-show-card {
    background: #000;
    display: flex;
    height: 220px;
    position: relative;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.card-img {
    width: 40%;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    width: 60%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.card-tags span {
    font-size: 0.65rem;
    color: var(--accent-blue);
    font-weight: 700;
}

.card-time {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.schedule-show-card h3 {
    font-size: 1.6rem;
    margin-bottom: 5px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

.card-host {
    font-size: 0.85rem;
    opacity: 0.7;
}

.card-side-menu {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary-color);
    padding: 15px;
    font-size: 1.2rem;
}


@media (max-width: 1200px) {
    .huge-title {
        font-size: 4rem;
    }

    .hero-presenter-cutout img {
        width: 120%;
    }
}

@media (max-width: 1024px) {
    .huge-title {
        font-size: 3.5rem;
    }

    .schedule-hero {
        min-height: 500px;
    }

    .hero-presenter-cutout img {
        width: 100%;
        right: 0;
    }
}

@media (max-width: 768px) {
    .schedule-hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 0 20px;
        min-height: auto;
    }

    .hero-show-display {
        width: 100%;
    }

    .hero-presenter-cutout {
        display: none;
    }

    .show-meta-row {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }

    .next-shows-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bg-slash-black {
        width: 100%;
        height: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 45%, 0% 55%);
    }

    .bg-slash-red {
        clip-path: polygon(0 55%, 100% 45%, 100% 100%, 0% 100%);
        top: 0;
        height: 100%;
    }

    .huge-title {
        font-size: 3rem;
        margin-bottom: 10px;
    }

    .show-tagline {
        margin-bottom: 25px;
    }

    .schedule-next {
        margin-top: 20px;
    }

    .section-label {
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .huge-title {
        font-size: 2.2rem;
    }

    .show-tagline {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .schedule-show-card {
        height: auto;
        flex-direction: column;
    }

    .card-img {
        width: 100%;
        height: 180px;
    }

    .card-content {
        width: 100%;
        padding: 20px;
    }

    .weekly-schedule {
        margin-top: 40px;
    }
}

/* Weekly Schedule Section */
.weekly-schedule {
    margin-top: 80px;
    padding-bottom: 60px;
}

.day-selector {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    flex-wrap: wrap;
}

.day-btn {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    opacity: 0.6;
    padding: 10px 20px;
    position: relative;
    cursor: pointer;
    background: none;
    border: none;
    text-transform: uppercase;
}

.day-btn:hover {
    opacity: 1;
}

.day-btn:active {
    color: #ffd000 !important;
    /* Yellow feedback WHILE clicking */
}

.day-btn.active {
    opacity: 1;
    color: #ffd000;
    /* Yellow for high contrast on Green/Red bg */
}

.day-btn.active::after {
    content: '';
    position: absolute;
    bottom: -21px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ffd000;
}

.weekly-shows-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.weekly-show-banner {
    position: relative;
    height: 200px;
    background: #000;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.weekly-show-banner .banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.weekly-show-banner .banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.weekly-show-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.7) 40%,
            rgba(242, 4, 67, 0.4) 60%,
            rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

.weekly-show-banner .banner-content {
    position: relative;
    z-index: 10;
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.weekly-show-banner h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
    font-style: italic;
    letter-spacing: 1px;
}

.weekly-show-banner .time-slot {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.weekly-show-banner .time-slot span {
    font-size: 1.2rem;
    vertical-align: middle;
    margin-left: 5px;
}

.weekly-show-banner .day-label {
    position: absolute;
    bottom: 25px;
    right: 25px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    opacity: 0.8;
    text-transform: uppercase;
}

.current-show-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 12px;
    z-index: 20;
}

@media (max-width: 1100px) {
    .weekly-shows-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .weekly-shows-grid {
        grid-template-columns: 1fr;
    }

    .day-selector {
        gap: 5px;
    }

    .day-btn {
        font-size: 0.9rem;
        padding: 10px 12px;
    }
}

/* Professional Footer Styling */
.main-footer {
    background: #080808;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.footer-widgets {
    position: relative;
    z-index: 10;
    padding-bottom: 80px;
}

/* Background microphone overlay */
.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1590602847861-f357a9332bbc?w=1200&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-widget {
    position: relative;
}

.footer-widget h3,
.widget-title {
    margin-bottom: 35px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 15px;
    height: 30px;
}

.widget-title span {
    background: #fff;
    color: #000;
    padding: 5px 15px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    position: absolute;
    top: -10px;
    left: 0;
}

.contact-list {
    margin-top: 10px;
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-list li i {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.about-text {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.accent-link {
    color: var(--accent-blue);
    font-weight: 700;
    margin-top: 10px;
    display: inline-block;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-menu li a i {
    font-size: 0.7rem;
    color: var(--accent-blue);
}

.footer-menu li a:hover {
    color: #fff;
    padding-left: 5px;
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.footer-banner-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Socket */
.socket {
    background: #000;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10;
}

.socket-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .socket-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Professional Integrated Player Section */
.main-player-section {
    background: #000;
    padding: 20px 0;
    position: relative;
    z-index: 5;
}

.pro-player-container {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 30px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    gap: 40px;
}

.player-visual {
    flex-shrink: 0;
}

.album-art-wrapper {
    width: 200px;
    height: 200px;
    position: relative;
    border: 2px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.album-art-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.art-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.playing-bars {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 20px;
}

.playing-bars span {
    width: 3px;
    background: var(--primary-color);
    animation: bar-glow 1s ease-in-out infinite;
}

.playing-bars span:nth-child(1) {
    height: 100%;
    animation-delay: 0.1s;
}

.playing-bars span:nth-child(2) {
    height: 60%;
    animation-delay: 0.3s;
}

.playing-bars span:nth-child(3) {
    height: 85%;
    animation-delay: 0.2s;
}

.playing-bars span:nth-child(4) {
    height: 40%;
    animation-delay: 0.4s;
}

@keyframes bar-glow {

    0%,
    100% {
        transform: scaleY(1.0);
    }

    50% {
        transform: scaleY(0.4);
    }
}

.player-info-controls {
    flex-grow: 1;
}

.live-badge {
    background: rgba(242, 4, 67, 0.15);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border-radius: 20px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    display: block;
    box-shadow: 0 0 0 rgba(242, 4, 67, 0.4);
    animation: pulse-red-2 2s infinite;
}

@keyframes pulse-red-2 {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(242, 4, 67, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(242, 4, 67, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(242, 4, 67, 0);
    }
}

#main-track-name {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 5px;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
}

#main-artist-name {
    font-size: 1.1rem;
    opacity: 0.6;
    margin-bottom: 30px;
    color: #fff;
    text-transform: uppercase;
}

.player-controls-row {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-play-btn {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(242, 4, 67, 0.3);
}

.main-play-btn:hover {
    transform: scale(1.05);
    background: var(--primary-color-hover);
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0.6;
    color: #fff;
}

.volume-slider {
    -webkit-appearance: none;
    width: 150px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    border-radius: 2px;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
}

@media (max-width: 768px) {
    .pro-player-container {
        flex-direction: row;
        text-align: left;
        padding: 12px;
        gap: 12px;
        align-items: center;
        width: 100%;
    }

    .player-info-controls {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        flex-grow: 1;
    }

    .album-art-wrapper {
        width: 65px;
        height: 65px;
        margin: 0;
        flex-shrink: 0;
    }

    .player-text-meta {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .live-badge {
        margin-bottom: 3px;
        padding: 2px 8px;
        font-size: 0.55rem;
        width: fit-content;
    }

    #main-track-name {
        font-size: 1.05rem;
        margin-bottom: 2px;
    }

    #main-artist-name {
        font-size: 0.75rem;
        margin-bottom: 0;
    }

    .player-controls-row {
        margin-left: auto;
        flex-direction: row;
        gap: 0;
    }

    .main-play-btn {
        width: 48px;
        height: 48px;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .volume-container {
        display: none;
    }
}

/* Trending Songs Section */
.trending-songs-section {
    padding: 30px 0 60px 0;
    background: #ffd000;
    margin: 0;
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 0;
}

.trending-card {
    position: relative;
    background: #111;
    padding: 15px;
    border-radius: 12px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 20px;
}

.trending-card:hover {
    background: #1a1a1a;
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(242, 4, 67, 0.15);
}

.rank-badge {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.15;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition-smooth);
    pointer-events: none;
    font-style: italic;
}

.trending-card:hover .rank-badge {
    color: var(--primary-color);
    opacity: 0.3;
}

.song-thumb {
    position: relative;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.song-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.trending-card:hover .song-thumb img {
    transform: scale(1.1);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(242, 4, 67, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    color: #fff;
    font-size: 1.2rem;
}

.trending-card:hover .play-overlay {
    opacity: 1;
}

.song-info {
    position: relative;
    z-index: 2;
}

.song-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.song-info p {
    color: #888;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Trending Responsive */
@media (max-width: 1024px) {
    .trending-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .trending-grid {
        grid-template-columns: 1fr;
    }

    .trending-card {
        padding: 12px;
    }

    .song-thumb {
        width: 80px;
        height: 80px;
    }

    .rank-badge {
        font-size: 2rem;
    }
}

/* RJ Profiles Section */
.rj-team-section {
    padding: 30px 0 60px 0;
    background: #00a8e8;
    /* Water Blue */
    margin-top: 20px;
}

.rj-slider-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 20px;
    margin-top: 0;
}

.rj-slider-wrapper::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.rj-slider {
    display: flex;
    gap: 30px;
    padding: 10px 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.rj-slider::-webkit-scrollbar {
    display: none;
}

.rj-card {
    flex: 0 0 280px;
    background: #111;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
}

.rj-card:hover {
    background: #1a1a1a;
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(242, 4, 67, 0.2);
}

.rj-thumb {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 20px;
    border-radius: 12px;
    /* Square with rounded corners */
    overflow: hidden;
    border: 4px solid #ffd000;
    transition: var(--transition-smooth);
}

.rj-card:hover .rj-thumb {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.rj-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rj-user-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #ffd000;
    color: #000;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 2px solid #000;
    transition: var(--transition-smooth);
}

.rj-card:hover .rj-user-icon {
    background: var(--primary-color);
    color: #fff;
}

.rj-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.rj-info p {
    color: #fff;
    opacity: 0.8;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Nav Buttons */
.rj-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.rj-nav-btn:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.rj-nav-btn.prev {
    left: -22px;
}

.rj-nav-btn.next {
    right: -22px;
}

/* Indicators */
.rj-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.rj-indicators span {
    width: 25px;
    height: 4px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.rj-indicators span.active {
    background: #000;
    width: 40px;
}

@media (max-width: 1200px) {
    .rj-nav-btn.prev {
        left: 0;
    }

    .rj-nav-btn.next {
        right: 0;
    }
}

/* Featured Posts Section */
.featured-posts-section {
    padding: 60px 0;
    background: #fff;
    color: #333;
}

.editorial-header {
    margin-bottom: 40px;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.editorial-pill {
    background: #000 !important;
    color: #fff !important;
    padding: 4px 12px !important;
    font-size: 0.9rem !important;
    margin-bottom: 0 !important;
    letter-spacing: 1px;
}

.header-divider {
    flex-grow: 1;
    height: 2px;
    background: #dddddd;
    /* Darker grey for visibility */
}

/* Hero Slider */
.featured-hero-slider {
    position: relative;
    height: 500px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-slides {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.slide-content {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 800px;
    padding: 0 40px;
}

.slide-category {
    display: inline-block;
    color: #f20443;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 2px;
    position: relative;
}

.slide-category::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #f20443;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.slide-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.slide-action-btn {
    width: 50px;
    height: 50px;
    background: #f20443;
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(242, 4, 67, 0.8);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background: #f20443;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dots span {
    width: 30px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots span.active {
    background: #f20443;
    width: 50px;
}

/* Featured Grid */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.post-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.card-thumb {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .card-thumb img {
    transform: scale(1.1);
}

.card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(242, 4, 67, 0.9);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 2px;
    font-family: 'Oswald', sans-serif;
}

.card-save-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #fff;
    font-size: 1.1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: color 0.3s ease;
}

.card-save-btn:hover {
    color: #f20443;
}

.card-action-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    background: #f20443;
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.post-card .card-content {
    padding: 15px 0;
    /* Removing horizontal padding for full-width text look */
}

.post-card h3 {
    font-size: 0.95rem;
    /* Balanced size for full width */
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    text-transform: uppercase;
    transition: color 0.3s ease;
    margin: 0;
    font-family: 'Inter', sans-serif;
    width: 100%;
    display: block;
}

.post-card:hover h3 {
    color: #f20443;
}

.accent-title {
    color: #00a8e8 !important;
}

/* See More Button */
.see-more-btn {
    display: inline-block;
    padding: 12px 40px;
    background: #00a8e8;
    color: #fff;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.see-more-btn:hover {
    background: #008fca;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 168, 232, 0.3);
}

/* Featured Responsive */
@media (max-width: 1200px) {
    .featured-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .featured-hero-slider {
        height: 400px;
    }

    .slide-title {
        font-size: 2.5rem;
    }

    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .featured-hero-slider {
        height: 350px;
    }

    .slide-title {
        font-size: 1.8rem;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .slide-content {
        padding: 0 20px;
    }
}

.weekly-schedule-homepage.green-red-theme {
    padding: 0 0 60px;
    /* Removed top padding */
    background: #ffffff;
    color: #333;
    position: relative;
    overflow: hidden;
}

.green-red-theme .section-title {
    margin-bottom: 0 !important;
}

.green-red-theme .day-selector {
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}

.green-red-theme .day-btn {
    color: #666;
    opacity: 0.8;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
}

.green-red-theme .day-btn:hover {
    opacity: 1;
    color: #13543b;
}

.green-red-theme .day-btn.active {
    color: #f20443;
    opacity: 1;
}

.green-red-theme .day-btn.active::after {
    background: #f20443;
    bottom: -21px;
}

.green-red-theme .weekly-show-banner {
    background: #111;
    border-radius: 8px;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.green-red-theme .weekly-show-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.green-red-theme .banner-content {
    padding: 30px;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Align content to bottom initially */
}

.green-red-theme .banner-content h3 {
    margin-bottom: 10px;
    transition: transform 0.4s ease;
    font-size: 1.6rem;
}

.green-red-theme .hover-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    transform: translateY(20px);
}

/* Global Weekly Show Banner Styles & Transitions */
.weekly-show-banner {
    background: #111;
    border-radius: 8px;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.weekly-show-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.banner-content {
    padding: 30px;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.banner-content h3 {
    margin-bottom: 5px !important;
    transition: transform 0.4s ease;
    font-size: 1.6rem;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

.time-slot {
    color: #f20443;
    font-weight: 700;
    margin-bottom: 5px;
    transition: transform 0.4s ease;
    font-size: 0.9rem;
}

.hover-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    transform: translateY(10px);
}

.weekly-show-banner:hover h3,
.weekly-show-banner:hover .time-slot {
    transform: translateY(-15px);
}

.weekly-show-banner:hover .hover-details {
    max-height: 100px;
    opacity: 1;
    transform: translateY(-15px);
}

.show-desc {
    font-size: 0.85rem;
    color: #fff;
    opacity: 0.8;
    margin-bottom: 10px;
}

.day-label {
    color: #fff;
    opacity: 0.6;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
    transition: transform 0.4s ease;
}

.weekly-show-banner:hover .day-label {
    transform: translateY(-10px);
}

.banner-overlay {
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.95) 0%,
            transparent 100%);
    transition: all 0.4s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.weekly-show-banner:hover .banner-overlay {
    background: linear-gradient(to top,
            rgba(242, 4, 67, 0.6) 0%,
            transparent 100%);
}

.current-show-tag {
    background: #f20443;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    padding: 5px 15px;
    font-size: 0.7rem;
    letter-spacing: 1px;
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 15;
}

/* Theme specific overrides */
.green-red-theme .day-label {
    color: #333;
    /* Darker labels for white background on homepage section */
}

/* Team Page Styles */
.team-grid-section {
    padding: 60px 0;
    position: relative;
    z-index: 10;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.team-hero.full-bleed-hero {
    position: relative;
    min-height: 300px;
    /* Highly compressed height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 30px 0;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(10, 47, 31, 0.7) 100%);
    /* Greenish-black overlay */
    z-index: 2;
}

.full-bleed-hero .hero-show-display {
    max-width: 800px;
    padding: 0 20px;
}

.full-bleed-hero .huge-title {
    font-size: 3rem;
    /* Reduced for compressed look */
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
}

.full-bleed-hero .show-tagline {
    font-size: 1rem;
    /* Reduced */
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .team-hero.full-bleed-hero {
        min-height: 300px;
    }

    .full-bleed-hero .huge-title {
        font-size: 3rem;
    }
}

@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Top 100 Editorial Layout */
.editorial-layout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Year Blocks Main Area */
.year-blocks-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.year-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFD700;
    /* Yellow Background */
    border-left: 5px solid #1a1a1a;
    /* Darker border for contrast */
    padding: 30px 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.year-block:hover {
    transform: translateX(10px);
    background: #ffcc00;
    /* Darker Yellow on hover */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.year-number {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.year-label {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: #1a1a1a;
    /* Darker text for yellow bg */
    letter-spacing: 2px;
    flex-grow: 1;
    margin-left: 40px;
}

.year-block i {
    font-size: 1.5rem;
    color: #1a1a1a;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.year-block:hover i {
    opacity: 1;
    transform: translateX(5px);
}

/* Sidebar Widgets */
.editorial-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sidebar-widget {
    background: #FFD700;
    /* Yellow Sidebar Widgets */
    padding: 25px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.widget-header {
    border-bottom: 2px solid #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.widget-header span {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: #1a1a1a;
}

/* Widget: Now Playing */
.playing-card {
    display: flex;
    gap: 15px;
    align-items: center;
}

.playing-thumb {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
}

.playing-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.playing-loader {
    position: absolute;
    bottom: 5px;
    right: 5px;
    display: flex;
    gap: 20px;
}

.playing-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.playing-info p {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* Widget: News */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.news-img {
    width: 70px;
    height: 70px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-text h5 {
    font-size: 0.85rem;
    line-height: 1.3;
    margin-bottom: 5px;
}

.news-date {
    font-size: 0.7rem;
    color: #999;
}

/* Widget: Trending */
.compact-trending-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trending-mini-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.mini-rank {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.8;
    width: 30px;
}

.mini-thumb {
    width: 55px;
    height: 55px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.mini-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-info h6 {
    font-size: 0.95rem;
    margin-bottom: 2px;
    transition: color 0.3s ease;
}

.mini-info h6.red-title {
    color: #f20443;
    /* Red title as requested */
}

.mini-info p {
    font-size: 0.8rem;
    opacity: 0.6;
}

@media (max-width: 900px) {
    .editorial-layout-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Specific Background Overrides */
.top100-page {
    background-color: #ffffff;
    color: #333;
}

.top100-page .top-bar {
    background: #000;
    /* Keep top bar dark for contrast */
}

.top100-page .main-nav ul li a {
    color: #333;
}

.top100-page .main-nav ul li a:hover {
    color: var(--primary-color);
}

/* Ensure Hero Text visibility */
.full-bleed-hero .huge-title,
.full-bleed-hero .show-tagline {
    color: #ffffff !important;
}

.full-bleed-hero .now-tag {
    color: #000000 !important;
    /* Specific black color for the small tag */
}

/* Page Specific Background Overrides (Team & Posts) */
.posts-page {
    background-color: #ffffff;
    color: #333;
}

.posts-page .top-bar {
    background: #000;
}

.posts-page .main-header {
    background-color: #ffd000;
    border-bottom: 1px solid #eee;
}

.posts-page .main-nav ul li a {
    color: #333;
}

.posts-page .main-nav ul li a:hover {
    color: var(--primary-color);
}

/* Posts Listing Grid Styles */
.posts-listing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 40px 0 80px;
}

.listing-post-card {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.listing-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.listing-post-thumb {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.listing-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-category-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    border-radius: 2px;
}

.listing-post-content {
    padding: 30px;
}

.listing-post-meta {
    display: flex;
    gap: 20px;
    font-size: 0.75rem;
    color: #888;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.listing-post-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

.listing-post-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 15px;
    line-height: 1.3;
    color: #ffffff;
    /* White title as requested */
}

.listing-post-title a {
    color: #ffffff;
}

.listing-post-title a:hover {
    color: var(--primary-color);
}

.listing-post-excerpt {
    font-size: 0.95rem;
    color: #bbbbbb;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more-link {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.read-more-link:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .posts-listing-grid {
        grid-template-columns: 1fr;
    }
}

/* Post Detail Specific Styles */
.post-detail-header {
    margin-bottom: 30px;
}

.post-category-pill {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.post-detail-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
    /* White title as requested */
}

.detailed-meta {
    display: flex;
    gap: 30px;
    color: #ffffff;
    /* White meta info for contrast */
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 0;
}

.detailed-meta i {
    color: var(--primary-color);
    margin-right: 8px;
}

.post-detail-featured {
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.post-detail-featured img {
    width: 100%;
    display: block;
}

.post-detail-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.post-detail-content p {
    margin-bottom: 25px;
}

.post-detail-content .lead-text {
    font-size: 1.4rem;
    color: #1a1a1a;
    font-weight: 500;
    line-height: 1.6;
}

.post-detail-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: #1a1a1a;
}

.post-detail-content blockquote {
    border-left: 5px solid var(--primary-color);
    padding: 20px 40px;
    background: #fdfdfd;
    font-size: 1.5rem;
    font-style: italic;
    font-family: 'Oswald', sans-serif;
    margin: 40px 0;
    color: #1a1a1a;
    line-height: 1.4;
}

/* Schedule Hero V2 Refinements */
.show-time-bubble {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    padding: 12px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.show-time-bubble i {
    color: var(--primary-color);
    font-size: 1rem;
}

.live-pulse {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #ff0000;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 0 rgba(255, 0, 0, 0.4);
    animation: pulse 2s infinite;
    vertical-align: middle;
    margin-top: -3px;
}

.hero-presenter-cutout::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(242, 4, 67, 0.2) 0%, rgba(242, 4, 67, 0) 70%);
    z-index: -1;
    filter: blur(30px);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

/* Playlist History Specific Styles */
.history-timeline-container {
    position: relative;
    max-width: 900px;
    margin: 40px 0 100px;
    padding-left: 140px;
    border-left: 1px solid #eee;
}

.track-history-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}

.track-time {
    position: absolute;
    left: -140px;
    width: 120px;
    text-align: right;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #888;
}

.track-dot {
    position: absolute;
    left: -5px;
    width: 11px;
    height: 11px;
    background: var(--primary-color);
    border-radius: 50%;
    z-index: 5;
    box-shadow: 0 0 0 5px #fff;
}

.track-card {
    background: #fff;
    width: 100%;
    padding: 20px 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f9f9f9;
}

.track-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: #eee;
}

.track-thumb {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.track-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.track-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.track-info p {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.track-discovery {
    margin-left: auto;
    display: flex;
    gap: 15px;
    font-size: 1.4rem;
}

.track-discovery a {
    color: #ddd;
    transition: color 0.3s ease;
}

.track-discovery a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .history-timeline-container {
        padding-left: 0;
        border-left: none;
    }

    .track-dot {
        left: 22px;
        top: 48px;
        /* Positioned directly over the card's top-left area */
        z-index: 10;
        box-shadow: 0 0 0 4px #ffffff;
    }

    .track-time {
        position: static;
        width: auto;
        text-align: left;
        margin-bottom: 8px;
        padding-left: 5px;
        font-size: 0.85rem;
        font-weight: 700;
        color: #888;
    }

    .track-history-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 15px;
        margin-bottom: 30px;
    }

    .track-card {
        padding: 15px;
        gap: 15px;
        border: 1px solid #eeeeee;
    }

    .track-thumb {
        width: 50px;
        height: 50px;
    }

    .track-info h3 {
        font-size: 1.1rem;
    }
}

/* History Date Selection Styles */
.editorial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.history-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.date-selector-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #f5f5f5;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid #eee;
    color: #555;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    gap: 10px;
    transition: border-color 0.3s ease;
}

.date-selector-wrapper:hover {
    border-color: var(--primary-color);
}

.history-select {
    background: transparent;
    border: none;
    color: #1a1a1a;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    outline: none;
    padding-right: 10px;
}

.date-group-divider {
    position: relative;
    padding: 20px 0;
    margin: 40px 0 20px;
    text-align: center;
}

.date-group-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #eee;
    z-index: 1;
}

.date-label {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 5px 25px;
    color: #888;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    border: 1px solid #eee;
    border-radius: 50px;
}

/* Specific background override for history page */
body.history-page {
    background-color: #f9f9f9 !important;
}

/* Specific background override for team page */
body.team-page {
    background-color: #f9f9f9 !important;
}

/* Force hide any extraneous elements at the bottom */
html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Standardized Top Bar Visibility */
.top-bar {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 9999 !important;
}

/* Hide Top Bar on Mobile & Tablets */
@media (max-width: 1024px) {
    .top-bar {
        display: none !important;
    }
}

/* Targeted hiding for extraneous elements that are NOT our core layout */
body>div:not(.top-bar):not(.main-header):not(.mobile-menu-overlay):not(.geometric-page-bg):last-child {
    display: none !important;
}