/* 
 * PICCADILLY RADIO 261 - RETRO STICKER STYLESHEET
 * Brand Hex Codes:
 * - Deep Plum/Purple: #3F1B4F (Borders, text contrast, dark backgrounds)
 * - Vibrant Red/Hot Pink: #FF1A53 (Highlights, '261' numbers, primary buttons)
 * - Classic Sky Blue: #66C2FF (Subtle backgrounds, arches, card framing)
 * - Off-White/Base White: #FFFFFF (Clean content areas, typography contrast)
 */

:root {
    --color-plum: #0a0a0a;
    --color-plum-light: #1a1a1a;
    --color-plum-dark: #000000;
    --color-hotpink: #ff6f00; /* Warm 1970s Orange */
    --color-hotpink-light: #ffaa00; /* Warm Amber */
    --color-skyblue: #fcf9f2; /* Cream/Soft White */
    --color-skyblue-light: #222222; /* Dark Gray elements */
    --color-white: #111111; /* Off-black */
    --color-offwhite: #0a0a0a; /* Dark Background */
    --color-dark-text: #ffffff; /* White text by default */
    --color-light-text: #ffffff;
    --color-muted-plum: #9ca3af; /* Soft Gray */
    
    --font-main: 'Outfit', sans-serif;
    --font-sticker-bold: 'Fredoka', sans-serif;
    --font-sticker-script: 'Pacifico', cursive;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-retro: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-retro-hover: 0 8px 30px rgba(255, 111, 0, 0.2);
    --shadow-glow: 0 0 20px rgba(255, 111, 0, 0.4);
    
    --border-width-retro: 1px;
}


/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-offwhite);
    color: var(--color-dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

img, svg {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background-color: var(--color-skyblue-light);
    color: var(--color-plum);
    border: 2px solid var(--color-plum);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    box-shadow: 2px 2px 0px var(--color-plum);
}

.section-badge.badge-alt {
    background-color: var(--color-hotpink);
    color: var(--color-white);
    border-color: var(--color-white);
    box-shadow: 2px 2px 0px var(--color-white);
}

.section-title {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--color-plum);
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.section-title.text-white {
    color: var(--color-white);
}

.section-description {
    font-size: 1.15rem;
    color: var(--color-muted-plum);
    max-width: 600px;
    margin: 0 auto;
}

.loading-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    color: var(--color-muted-plum);
    font-size: 1.2rem;
    font-weight: 600;
    gap: 1rem;
    width: 100%;
}

/* ==========================================================================
   GLOBAL NETWORK HEADER
   ========================================================================== */
.network-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: var(--color-plum);
    border-bottom: 2px solid var(--color-hotpink);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.network-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.network-title {
    color: var(--color-skyblue);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.network-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.network-links a {
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.2rem 0;
    opacity: 0.85;
    border-bottom: 1.5px solid transparent;
}

.network-links a:hover, .network-links a.active-network {
    opacity: 1;
    color: var(--color-skyblue);
    border-bottom-color: var(--color-skyblue);
}

.network-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

/* ==========================================================================
   MAIN NAVIGATION
   ========================================================================== */
.main-navigation {
    position: sticky;
    top: 40px;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: var(--border-width-retro) solid var(--color-plum);
    z-index: 999;
    transition: transform var(--transition-normal);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo sticker styling */
.brand-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo-svg {
    width: 65px;
    height: 65px;
    filter: drop-shadow(2px 2px 0px var(--color-plum));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brand-logo-container:hover .brand-logo-svg {
    transform: rotate(5deg) scale(1.05);
}

.brand-text-container {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--color-plum);
    letter-spacing: -0.5px;
    line-height: 1;
}

.brand-subtitle {
    font-family: var(--font-sticker-bold);
    font-size: 0.9rem;
    color: var(--color-hotpink);
    letter-spacing: 1px;
}

.nav-toggle {
    display: none;
    background: none;
    border: var(--border-width-retro) solid var(--color-plum);
    border-radius: 8px;
    color: var(--color-plum);
    width: 44px;
    height: 44px;
    cursor: pointer;
    font-size: 1.25rem;
    align-items: center;
    justify-content: center;
}

.nav-links-menu {
    display: flex;
    gap: 0.5rem;
}

.nav-link-item {
    color: var(--color-plum);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    border: 2px solid transparent;
    transition: all var(--transition-fast);
}

.nav-link-item:hover, .nav-link-item.active {
    background-color: var(--color-skyblue-light);
    border-color: var(--color-plum);
    color: var(--color-plum);
}

/* ==========================================================================
   SECTION 1: HERO & VINTAGE PLAYER
   ========================================================================== */
.section-hero {
    position: relative;
    padding: 6rem 0 7rem;
    background-color: var(--color-white);
    border-bottom: var(--border-width-retro) solid var(--color-plum);
    overflow: hidden;
}

/* Retro concentric arches overlay decoration */
.hero-retro-arches {
    position: absolute;
    bottom: -100px;
    left: -150px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 15px solid var(--color-skyblue-light);
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}

.hero-retro-arches::before {
    content: '';
    position: absolute;
    inset: 30px;
    border-radius: 50%;
    border: 10px solid var(--color-skyblue-light);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-headline {
    font-size: 3.75rem;
    font-weight: 900;
    color: var(--color-plum);
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.highlight-plum {
    color: var(--color-hotpink);
    display: block;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: var(--color-muted-plum);
    margin-bottom: 2.5rem;
    max-width: 620px;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--color-hotpink);
    color: var(--color-white);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    padding: 1.1rem 2.2rem;
    border: var(--border-width-retro) solid var(--color-plum);
    border-radius: 50px;
    box-shadow: var(--shadow-retro);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-primary:hover {
    transform: translate(-3px, -3px);
    box-shadow: var(--shadow-retro-hover);
    background-color: var(--color-hotpink-light);
}

.btn-primary:active {
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0px var(--color-plum);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--color-white);
    color: var(--color-plum);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    padding: 1.1rem 2.2rem;
    border: var(--border-width-retro) solid var(--color-plum);
    border-radius: 50px;
    box-shadow: var(--shadow-retro);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-secondary:hover {
    transform: translate(-3px, -3px);
    box-shadow: var(--shadow-retro-hover);
    background-color: var(--color-skyblue-light);
}

.btn-secondary:active {
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0px var(--color-plum);
}

/* Vintage Audio Streaming Player Card */
.vintage-player-card {
    background-color: var(--color-plum);
    border: var(--border-width-retro) solid var(--color-plum);
    border-radius: 24px;
    padding: 2.2rem;
    color: var(--color-white);
    box-shadow: 10px 10px 0px var(--color-skyblue);
    position: relative;
    border: 4px solid var(--color-white);
    outline: var(--border-width-retro) solid var(--color-plum);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.player-top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px dashed rgba(255, 255, 255, 0.15);
    padding-bottom: 1rem;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--color-hotpink);
    border: 2px solid var(--color-white);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 1px;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

/* Glowing Indicator animation */
.live-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-white);
    border-radius: 50%;
    animation: livePulse 1.2s infinite;
}

@keyframes livePulse {
    0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6); }
    70% { transform: scale(1.3); opacity: 0.5; box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
    100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.frequency-indicator {
    font-size: 0.75rem;
    color: var(--color-skyblue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Player sticker artwork frame */
.player-art-frame {
    position: relative;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticker-glow-ring {
    position: absolute;
    width: 105%;
    height: 105%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 194, 255, 0.4) 0%, transparent 70%);
    animation: glowRing 4s linear infinite;
}

@keyframes glowRing {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.08); opacity: 1; }
}

.player-sticker-container {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--color-white);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.player-track-info {
    text-align: center;
}

.track-station {
    font-size: 0.9rem;
    color: var(--color-skyblue);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.track-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Player slider controls */
.player-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-play-pause {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-hotpink);
    border: 3px solid var(--color-white);
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 10px rgba(255, 26, 83, 0.3);
}

.btn-play-pause:hover {
    transform: scale(1.08);
    background-color: var(--color-hotpink-light);
    box-shadow: 0 0 15px rgba(255, 26, 83, 0.6);
}

.btn-play-pause.playing {
    background-color: var(--color-skyblue);
    color: var(--color-plum);
}

.player-volume-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 180px;
    color: rgba(255, 255, 255, 0.7);
}

.player-volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    cursor: pointer;
}

.player-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-skyblue);
    border: 2px solid var(--color-white);
}

.player-channel-selector {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.player-channel-selector label {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.player-dropdown {
    width: 100%;
    background-color: var(--color-plum-dark);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--color-white);
    padding: 0.6rem;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    outline: none;
}

.player-dropdown:focus {
    border-color: var(--color-skyblue);
}

/* ==========================================================================
   SECTION 2: PRESENTER LINEUP (CSS GRID)
   ========================================================================== */
.section-presenters {
    padding: 7rem 0;
    background-color: var(--color-offwhite);
    border-bottom: var(--border-width-retro) solid var(--color-plum);
}

.presenters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Card design utilizing authentic colors and retro details */
.presenter-card {
    background-color: var(--color-white);
    border: var(--border-width-retro) solid var(--color-plum);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-retro);
    display: flex;
    flex-direction: column;
    transition: all var(--transition-normal);
}

.presenter-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: var(--shadow-retro-hover);
}

.presenter-img-box {
    position: relative;
    height: 250px;
    background-color: var(--color-plum-dark);
    overflow: hidden;
    border-bottom: var(--border-width-retro) solid var(--color-plum);
}

.presenter-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.presenter-card:hover .presenter-img-box img {
    transform: scale(1.05);
}

.presenter-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background-color: var(--color-skyblue);
    color: var(--color-plum);
    border: 2px solid var(--color-plum);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    box-shadow: 2px 2px 0px var(--color-plum);
}

.presenter-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.presenter-name {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-plum);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.presenter-bio {
    font-size: 0.95rem;
    color: var(--color-muted-plum);
}

/* ==========================================================================
   SECTION 3: HISTORY & LEGACY BLOG
   ========================================================================== */
.section-blog {
    padding: 7rem 0;
    background-color: var(--color-white);
    border-bottom: var(--border-width-retro) solid var(--color-plum);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.blog-card {
    background-color: var(--color-white);
    border: var(--border-width-retro) solid var(--color-plum);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-retro);
    display: flex;
    flex-direction: column;
    transition: all var(--transition-normal);
}

.blog-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: var(--shadow-retro-hover);
}

.blog-img-box {
    position: relative;
    height: 240px;
    background-color: var(--color-plum-dark);
    overflow: hidden;
    border-bottom: var(--border-width-retro) solid var(--color-plum);
}

.blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-box img {
    transform: scale(1.05);
}

.blog-meta {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
}

.blog-tag {
    background-color: var(--color-hotpink);
    color: var(--color-white);
    border: 2px solid var(--color-plum);
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    box-shadow: 2px 2px 0px var(--color-plum);
}

.blog-date {
    background-color: var(--color-white);
    color: var(--color-plum);
    border: 2px solid var(--color-plum);
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    box-shadow: 2px 2px 0px var(--color-plum);
}

.blog-info {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--color-plum);
    line-height: 1.2;
}

.blog-excerpt {
    font-size: 1rem;
    color: var(--color-muted-plum);
}

.blog-read-more {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--color-hotpink);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    width: fit-content;
}

.blog-read-more:hover {
    color: var(--color-plum);
}

/* ==========================================================================
   SECTION 4: LISTENER MEMORIES - MEMORY VAULT
   ========================================================================== */
.section-vault {
    padding: 7rem 0;
    background-color: var(--color-plum);
    color: var(--color-white);
    border-bottom: var(--border-width-retro) solid var(--color-plum);
    position: relative;
    overflow: hidden;
}

.section-vault::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(102, 194, 255, 0.1);
    z-index: 1;
    pointer-events: none;
}

.vault-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-sky {
    color: var(--color-skyblue) !important;
}

.vault-description {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-top: 1.5rem;
}

.vault-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    font-weight: 600;
}

.feature-item i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--color-white);
    color: var(--color-plum);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 3px 3px 0px var(--color-skyblue);
}

/* Form Container Styling */
.memory-vault-form {
    background-color: var(--color-white);
    border: var(--border-width-retro) solid var(--color-white);
    outline: var(--border-width-retro) solid var(--color-plum);
    border-radius: 24px;
    padding: 2.5rem;
    color: var(--color-plum);
    box-shadow: 10px 10px 0px var(--color-skyblue);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
    border-bottom: 2px dashed var(--color-border);
    padding-bottom: 0.75rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    background-color: var(--color-offwhite);
    border: var(--border-width-retro) solid var(--color-plum);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: var(--color-plum);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: all var(--transition-fast);
}

.form-input::placeholder {
    color: var(--color-muted-plum);
    opacity: 0.6;
}

.form-input:focus {
    background-color: var(--color-white);
    box-shadow: 0 0 0 4px rgba(102, 194, 255, 0.4);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Custom file upload input wrapper styling */
.file-upload-label {
    display: flex;
    flex-direction: column;
}

.file-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.file-subtitle {
    font-size: 0.7rem;
    color: var(--color-muted-plum);
}

.file-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.file-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-dummy-button {
    background-color: var(--color-skyblue-light);
    border: 2px solid var(--color-plum);
    color: var(--color-plum);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 2px 2px 0px var(--color-plum);
}

.file-input-wrapper:hover .file-dummy-button {
    background-color: var(--color-skyblue);
}

.file-selected-name {
    font-size: 0.85rem;
    color: var(--color-muted-plum);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

/* Submit in Vibrant Hot Pink */
.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: var(--color-hotpink);
    color: var(--color-white);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1.1rem;
    border: var(--border-width-retro) solid var(--color-plum);
    border-radius: 12px;
    box-shadow: var(--shadow-retro);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-submit:hover {
    transform: translate(-3px, -3px);
    box-shadow: var(--shadow-retro-hover);
    background-color: var(--color-hotpink-light);
}

.btn-submit:active {
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0px var(--color-plum);
}

/* Submission feedback */
.submit-feedback {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.progress-bar-wrapper {
    width: 100%;
    height: 8px;
    background-color: var(--color-offwhite);
    border-radius: 4px;
    border: 1px solid var(--color-plum);
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background-color: var(--color-hotpink);
    transition: width 0.1s linear;
}

.feedback-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-hotpink);
}

/* ==========================================================================
   FOOTER (Deep Plum Background)
   ========================================================================== */
.site-footer {
    background-color: var(--color-plum);
    color: var(--color-white);
    padding: 5rem 0 3rem;
    border-top: var(--border-width-retro) solid var(--color-plum);
    outline: var(--border-width-retro) solid var(--color-white);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-title-text {
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 1.75rem;
    color: var(--color-skyblue);
    text-shadow: 2px 2px 0px var(--color-plum-dark);
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-social-links {
    display: flex;
    gap: 0.75rem;
}

.footer-social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all var(--transition-fast);
}

.footer-social-links a:hover {
    background-color: var(--color-hotpink);
    border-color: var(--color-white);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-skyblue);
    margin-bottom: 1.5rem;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-links-list a:hover {
    color: var(--color-white);
    text-decoration: underline;
}

.footer-contact-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-email {
    color: var(--color-skyblue);
    font-weight: 700;
}

.footer-email:hover {
    color: var(--color-white);
    text-decoration: underline;
}

/* cPanel Exporter Panel */
.cpanel-export-panel {
    background-color: var(--color-plum-dark);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 1.2rem;
}

.export-heading {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.export-heading i {
    color: var(--color-skyblue);
}

.export-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.btn-export-zip {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--color-skyblue);
    color: var(--color-plum);
    border: 2px solid var(--color-white);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    padding: 0.6rem;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 2px 2px 0px var(--color-plum);
    transition: all var(--transition-fast);
}

.btn-export-zip:hover {
    transform: translateY(-2px);
    box-shadow: 4px 4px 0px var(--color-plum);
    background-color: var(--color-white);
}

.footer-divider {
    border: none;
    border-top: 2px dashed rgba(255, 255, 255, 0.15);
    margin: 3rem 0;
}

.footer-bottom {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.legal-disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    text-align: justify;
    max-width: 900px;
    margin: 0 auto;
}

.copyright-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

/* ==========================================================================
   RESPONSIVE LAYOUTS & MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-headline {
        font-size: 3rem;
    }
    
    .hero-grid {
        gap: 2rem;
    }
    
    .presenters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    /* Network Header Collapsible Logic */
    .network-header {
        height: auto;
        padding: 0.5rem 0;
    }
    
    .network-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .network-toggle {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .network-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .network-links.open {
        display: flex;
    }
    
    .network-links a {
        width: 100%;
        padding: 0.4rem 0;
    }
    
    /* Navigation drawer logic */
    .main-navigation {
        top: 0; /* Let it slide over when mobile network is toggled */
        position: sticky;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-links-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        border-bottom: var(--border-width-retro) solid var(--color-plum);
        flex-direction: column;
        padding: 1rem 1.5rem;
        gap: 0.5rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .nav-links-menu.open {
        display: flex;
    }
    
    .nav-link-item {
        width: 100%;
        padding: 0.8rem;
    }
    
    /* Hero layout */
    .section-hero {
        padding: 3rem 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-text-col {
        text-align: center;
    }
    
    .hero-subheadline {
        margin-inline: auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    /* Section Titel adjustments */
    .section-title {
        font-size: 2.25rem;
    }
    
    /* Presenters Grid to single column */
    .presenters-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    /* Blog Grid to single column */
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin: 0 auto;
    }
    
    /* Vault Grid */
    .vault-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .vault-info-col {
        text-align: center;
    }
    
    .vault-features {
        max-width: 380px;
        margin-inline: auto;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2.25rem;
        letter-spacing: -1px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .vintage-player-card {
        padding: 1.5rem;
    }
    
    .player-art-frame {
        max-width: 160px;
    }
    
    .memory-vault-form {
        padding: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .brand-text-container {
        display: none; /* Hide brand text on super narrow screens, sticker is self-explanatory */
    }
}

/* ==========================================================================
   PREMIUM DARK STREAMING PLATFORM LAYOUT (SPOTIFY/APPLE MUSIC AESTHETIC)
   ========================================================================== */
body {
    background-color: var(--color-plum);
    color: var(--color-skyblue);
    font-family: var(--font-main);
}

.accent-orange {
    color: var(--color-hotpink) !important;
}

/* Selection Color */
::selection {
    background-color: var(--color-hotpink);
    color: #ffffff;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #0f0f0f;
}
::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-hotpink);
}

/* Header & Nav */
.main-navigation {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
    transition: all var(--transition-normal);
}

.nav-container {
    max-width: 1280px;
    height: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Badge */
.brand-logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand-logo-badge {
    width: 44px;
    height: 44px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sticker-bold);
    font-size: 1.15rem;
    font-weight: 900;
    color: #e6005c;
    border: 3px solid #e6005c;
    transform: rotate(-12deg);
    box-shadow: 0 0 10px rgba(230, 0, 92, 0.3);
}

.brand-title {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
}

.brand-subtitle {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #9ca3af;
    letter-spacing: 2px;
    margin: 0;
}

/* Navigation Menu */
.nav-links-menu {
    display: flex;
    gap: 1.5rem;
}

.nav-link-item {
    color: #9ca3af;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.5rem 0.75rem;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    transition: all var(--transition-fast);
}

.nav-link-item:hover {
    color: #ffffff;
    background: none;
    border-bottom-color: var(--color-hotpink);
}

.nav-link-item.active {
    color: var(--color-hotpink);
    background: none;
    border-bottom-color: var(--color-hotpink);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    color: #9ca3af;
}

.social-icons a {
    font-size: 1.1rem;
    transition: color var(--transition-fast);
}

.social-icons a:hover {
    color: var(--color-hotpink);
}

.btn-listen-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: transparent;
    border: 2px solid var(--color-hotpink);
    color: var(--color-hotpink);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-listen-cta:hover {
    background-color: var(--color-hotpink);
    color: #000000;
    transform: scale(1.03);
}

/* Hero Section */
.section-hero {
    position: relative;
    padding: 10rem 0 5rem;
    background-color: #070707;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.hero-bg-media {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #0a0a0a 20%, rgba(10, 10, 10, 0.9) 50%, transparent 100%),
                linear-gradient(to top, #0a0a0a 0%, transparent 50%);
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 4rem;
    align-items: center;
}

.hero-slogan {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.05;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.15rem;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-action-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.btn-hero-play {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--color-hotpink);
    color: #000000;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 1px;
    padding: 1rem 2.25rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.4);
}

.btn-hero-play:hover {
    background-color: var(--color-hotpink-light);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(255, 111, 0, 0.6);
}

.frequencies-badge {
    display: inline-flex;
    gap: 1.5rem;
    padding-left: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.frequencies-badge span {
    position: relative;
}

.frequencies-badge span:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -10px;
    color: #374151;
}

/* Glassmorphic Split Player Widget */
.player-widget-wrapper {
    display: flex;
    background-color: rgba(26, 26, 26, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.main-player-card {
    flex: 1.1;
    padding: 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}

.player-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.live-status-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--color-hotpink);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.pulsing-red-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-hotpink);
    border-radius: 50%;
    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(255, 111, 0, 0.7); }
    70% { transform: scale(1.3); opacity: 0.4; box-shadow: 0 0 0 8px rgba(255, 111, 0, 0); }
    100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(255, 111, 0, 0); }
}

.player-icon-actions {
    display: flex;
    gap: 1rem;
}

.icon-action-btn {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 1rem;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.icon-action-btn:hover {
    color: var(--color-hotpink);
}

.player-station-branding {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.station-logo-box {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-hotpink) 0%, #d946ef 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
}

.logo-sticker-mini {
    width: 38px;
    height: 38px;
    background-color: #ffffff;
    border-radius: 50%;
    border: 2px solid #e6005c;
    color: #e6005c;
    font-family: var(--font-sticker-bold);
    font-size: 0.95rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-12deg);
}

.station-title-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
}

.station-subtitle-text {
    font-size: 0.8rem;
    color: #9ca3af;
    margin: 0.2rem 0 0;
}

/* Audio Visualizer */
.player-visualizer-bars {
    height: 60px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3px;
    opacity: 0.85;
    overflow: hidden;
}

.visualizer-bar {
    flex: 1;
    background-color: var(--color-hotpink);
    border-radius: 2px 2px 0 0;
    height: 4px; /* default passive height */
    transition: height 0.2s ease;
}

/* Control strip */
.player-control-strip {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.player-play-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: var(--color-hotpink);
    border: none;
    color: #000000;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 12px rgba(255, 111, 0, 0.3);
}

.player-play-btn i {
    margin-left: 2px; /* Slight alignment centering */
}

.player-play-btn:hover {
    transform: scale(1.08);
    background-color: var(--color-hotpink-light);
}

.player-volume-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #9ca3af;
}

.volume-slider-bar {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.volume-range-input {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 5px;
    background: #2a2a2a;
    outline: none;
    cursor: pointer;
}

.volume-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-hotpink);
    border: 2px solid #ffffff;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
    transition: transform var(--transition-fast);
}

.volume-range-input::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* Playlist Sidebar */
.playlist-sidebar {
    flex: 0.9;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    background-color: rgba(10, 10, 10, 0.3);
}

.playlist-section-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: #6b7280;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.now-playing-tile {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.75rem;
    border-radius: 12px;
}

.tile-art-box {
    width: 44px;
    height: 44px;
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-hotpink);
}

.tile-info {
    overflow: hidden;
}

.tile-song-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tile-artist-name {
    font-size: 0.75rem;
    color: #9ca3af;
    margin: 0.2rem 0 0;
}

.recently-played-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.recent-track-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    group: hover;
}

.recent-track-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    overflow: hidden;
}

.recent-play-hover-box {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background-color: #1f1f1f;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-hotpink);
    transition: all var(--transition-fast);
}

.recent-play-hover-box i {
    font-size: 0.65rem;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.recent-track-row:hover .recent-play-hover-box {
    background-color: rgba(255, 111, 0, 0.15);
}

.recent-track-row:hover .recent-play-hover-box i {
    opacity: 1;
}

.recent-info {
    overflow: hidden;
}

.recent-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #e5e7eb;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color var(--transition-fast);
}

.recent-track-row:hover .recent-title {
    color: var(--color-hotpink);
}

.recent-artist {
    font-size: 0.7rem;
    color: #6b7280;
    margin: 0.1rem 0 0;
}

.recent-time {
    font-size: 0.65rem;
    color: #4b5563;
    white-space: nowrap;
}

.link-view-log {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--color-hotpink);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.link-view-log:hover {
    color: var(--color-hotpink-light);
}

/* Dedicated Music Channels Grid */
.section-channels {
    padding: 6rem 0;
    background-color: #111111;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.channels-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.channels-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
}

.channels-title {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
}

.channels-explore-link {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--color-hotpink);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color var(--transition-fast);
}

.channels-explore-link:hover {
    color: var(--color-hotpink-light);
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.channel-card {
    position: relative;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: #1a1a1a;
    cursor: pointer;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.channel-card-content {
    aspect-ratio: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.channel-circle-id {
    width: 64px;
    height: 64px;
    background-color: #0d0d0d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--color-hotpink);
    border: 2px solid var(--color-hotpink);
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    transition: transform var(--transition-normal);
}

.channel-card:hover .channel-circle-id {
    transform: scale(1.1);
}

.channel-card-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.4rem;
    line-height: 1.2;
}

.channel-card-desc {
    font-size: 0.75rem;
    color: #9ca3af;
    margin: 0;
}

/* Card Overrides (Custom color borders/gradients on hover) */
.card-261:hover { border-color: var(--color-hotpink); box-shadow: 0 8px 25px rgba(255, 111, 0, 0.15); }
.card-80s:hover { border-color: #ffaa00; box-shadow: 0 8px 25px rgba(255, 170, 0, 0.15); }
.card-90s:hover { border-color: #a855f7; box-shadow: 0 8px 25px rgba(168, 85, 247, 0.15); }
.card-gold:hover { border-color: #eab308; box-shadow: 0 8px 25px rgba(234, 179, 8, 0.15); }
.card-103:hover { border-color: #3b82f6; box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15); }

/* Play Hover Overlay */
.channel-hover-play {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.channel-card:hover .channel-hover-play {
    opacity: 1;
}

.hover-play-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--color-hotpink);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1.15rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    transform: translateY(10px);
    transition: transform var(--transition-normal);
}

.channel-card:hover .hover-play-circle {
    transform: translateY(0);
}

.hover-play-circle i {
    margin-left: 2px;
}

/* Today's Schedule horizontal scrolling */
.section-schedule {
    padding: 6rem 0;
    background-color: #0a0a0a;
}

.schedule-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
}

.schedule-title {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
}

.schedule-explore-link {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--color-hotpink);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color var(--transition-fast);
}

.schedule-explore-link:hover {
    color: var(--color-hotpink-light);
}

/* Scroll row */
.horizontal-schedule-scroll {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    padding-bottom: 1.5rem;
    scrollbar-width: thin;
    scrollbar-color: #2a2a2a transparent;
}

/* Hide scrollbar on Chrome/Safari but keep scroll capability */
.horizontal-schedule-scroll::-webkit-scrollbar {
    height: 6px;
}

.horizontal-schedule-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.horizontal-schedule-scroll::-webkit-scrollbar-thumb {
    background: #222222;
    border-radius: 10px;
}

.horizontal-schedule-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--color-hotpink);
}

.schedule-slot-card {
    flex: 0 0 260px;
    background-color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all var(--transition-normal);
}

.slot-time-badge {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--color-hotpink);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 0.75rem;
}

.slot-show-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.5rem;
    line-height: 1.2;
}

.slot-host-row {
    font-size: 0.85rem;
    color: #9ca3af;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Active schedule card */
.schedule-slot-card.active-slot {
    border-color: var(--color-hotpink);
    background-color: rgba(255, 111, 0, 0.07);
    box-shadow: 0 8px 20px rgba(255, 111, 0, 0.05);
}

.slot-active-visualizer {
    display: inline-flex;
    align-items: flex-end;
    gap: 2px;
    height: 12px;
}

.pulse-bar-slot {
    width: 2px;
    height: 100%;
    background-color: var(--color-hotpink);
    border-radius: 1px;
    animation: pulseBarSlot 1s infinite alternate;
}

.pulse-bar-slot:nth-child(2) { animation-delay: 0.15s; }
.pulse-bar-slot:nth-child(3) { animation-delay: 0.3s; }

@keyframes pulseBarSlot {
    0% { height: 25%; }
    100% { height: 100%; }
}

/* Dynamic visualizer animation rules (wired via JS class toggling) */
.player-visualizer-bars.animating .visualizer-bar {
    animation: animateVisualizerBar var(--anim-speed, 0.6s) ease-in-out infinite alternate;
}

@keyframes animateVisualizerBar {
    0% { height: 8%; }
    100% { height: var(--target-height, 80%); }
}

/* Local Updates (Blog Grid in dark theme) */
.section-blog {
    padding: 6rem 0;
    background-color: #111111;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-section-title {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

.blog-card {
    border-color: rgba(255, 255, 255, 0.05);
    background-color: #181818;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.blog-title {
    color: #ffffff;
}

.blog-excerpt {
    color: #9ca3af;
}

.blog-read-more:hover {
    color: var(--color-hotpink-light);
}

/* Presenters Section (Dark Theme overrides) */
.section-presenters {
    padding: 6rem 0;
    background-color: #0a0a0a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.presenters-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.presenters-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.presenters-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.presenters-desc {
    font-size: 1.1rem;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
}

.badge-accent {
    display: inline-block;
    background-color: rgba(255, 111, 0, 0.1);
    color: var(--color-hotpink);
    border: 1px solid var(--color-hotpink);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    padding: 0.35rem 1rem;
    border-radius: 50px;
}

.presenter-card {
    border-color: rgba(255, 255, 255, 0.05);
    background-color: #111111;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.presenter-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    border-color: var(--color-hotpink);
}

.presenter-img-box {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.presenter-badge {
    background-color: var(--color-hotpink);
    color: #000000;
    border: none;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.presenter-name {
    color: #ffffff;
}

.presenter-bio {
    color: #9ca3af;
}

/* Listen Anywhere Promo banner styling */
.section-promo {
    padding: 6rem 0;
    background-color: #0a0a0a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.promo-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.promo-banner-card {
    position: relative;
    background: linear-gradient(135deg, #181818 0%, #111111 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.promo-glowing-circle {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: rgba(255, 111, 0, 0.06);
    filter: blur(50px);
    pointer-events: none;
}

.promo-title {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 0.5rem;
}

.promo-desc {
    font-size: 0.95rem;
    color: #9ca3af;
    margin: 0;
    max-width: 320px;
    line-height: 1.5;
}

.promo-devices-row {
    display: flex;
    gap: 2.5rem;
}

.device-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.device-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--color-hotpink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: all var(--transition-fast);
}

.device-item:hover .device-icon-wrapper {
    border-color: var(--color-hotpink);
    box-shadow: 0 0 15px rgba(255, 111, 0, 0.3);
    transform: translateY(-2px);
}

.device-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #9ca3af;
}

.btn-promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: transparent;
    border: 2px solid var(--color-hotpink);
    color: var(--color-hotpink);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 0.9rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all var(--transition-fast);
}

.btn-promo-cta:hover {
    background-color: var(--color-hotpink);
    color: #000000;
    transform: translateY(-2px);
}

/* Listener Archives (Memory Vault) Dark overrides */
.section-vault {
    padding: 6rem 0;
    background-color: #111111;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vault-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.vault-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.feature-item i {
    background-color: rgba(255, 111, 0, 0.1);
    color: var(--color-hotpink);
    border: 1px solid var(--color-hotpink);
    box-shadow: none;
}

.memory-vault-form {
    background-color: #181818;
    border: 1px solid rgba(255, 255, 255, 0.05);
    outline: none;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.form-title {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.form-input {
    background-color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.form-input:focus {
    background-color: #0d0d0d;
    border-color: var(--color-hotpink);
    box-shadow: 0 0 0 3px rgba(255, 111, 0, 0.25);
}

.file-dummy-button {
    background-color: rgba(255, 111, 0, 0.1);
    border: 1px solid var(--color-hotpink);
    color: var(--color-hotpink);
    box-shadow: none;
}

.file-input-wrapper:hover .file-dummy-button {
    background-color: var(--color-hotpink);
    color: #000000;
}

.btn-submit {
    background-color: var(--color-hotpink);
    color: #000000;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 111, 0, 0.3);
}

.btn-submit:hover {
    background-color: var(--color-hotpink-light);
    box-shadow: 0 6px 15px rgba(255, 111, 0, 0.5);
}

/* Footer Section Redesign */
.site-footer {
    background-color: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    outline: none;
    padding: 5rem 0 3rem;
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 3.5rem;
}

.footer-newsletter-info {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1.2;
}

.footer-mail-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 111, 0, 0.1);
    border: 1px solid var(--color-hotpink);
    color: var(--color-hotpink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.footer-newsletter-title {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #ffffff;
    margin: 0;
}

.footer-newsletter-desc {
    font-size: 0.85rem;
    color: #9ca3af;
    margin: 0.2rem 0 0;
}

.footer-form-wrapper {
    flex: 1.5;
}

.footer-newsletter-form {
    display: flex;
    gap: 0.75rem;
    width: 100%;
}

.newsletter-input {
    flex: 1;
    background-color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition-fast);
}

.newsletter-input:focus {
    border-color: var(--color-hotpink);
}

.newsletter-submit-btn {
    background-color: var(--color-hotpink);
    color: #000000;
    border: none;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 0 1.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.newsletter-submit-btn:hover {
    background-color: var(--color-hotpink-light);
}

.footer-brand-summary {
    text-align: right;
    flex: 1;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #ffffff;
    margin: 0;
}

.footer-brand-tagline {
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0.2rem 0 0;
}

/* Notice box styling */
.footer-notice-block {
    margin-bottom: 3rem;
}

.notice-title {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--color-hotpink);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
}

.notice-text {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 0.75rem;
}

.notice-highlight {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-hotpink);
    margin: 1rem 0 0;
}

/* Exporter styles placement */
.footer-developer-panel {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2.5rem;
    margin-bottom: 3.5rem;
}

.footer-developer-panel .cpanel-export-panel {
    background-color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 600px;
}

.footer-developer-panel .btn-export-zip {
    max-width: 250px;
    border: none;
    font-size: 0.85rem;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    box-shadow: none;
}

.footer-developer-panel .btn-export-zip:hover {
    background-color: var(--color-hotpink-light);
    color: #000000;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.copyright-label {
    font-size: 0.75rem;
    color: #4b5563;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a {
    font-size: 0.75rem;
    color: #4b5563;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-legal-links a:hover {
    color: var(--color-hotpink);
}

/* RESPONSIVE LAYOUT EXTRA FIXES */
@media (max-width: 1140px) {
    .channels-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .main-navigation {
        position: sticky;
        top: 0;
    }
    
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-actions {
        display: none; /* Collapsed on mobile/tablets */
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .hero-text-col {
        text-align: center;
    }
    
    .hero-description {
        margin-inline: auto;
    }
    
    .hero-action-row {
        align-items: center;
    }
    
    .player-widget-wrapper {
        max-width: 680px;
        margin: 0 auto;
    }
    
    .footer-top-row {
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
    }
    
    .footer-brand-summary {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .nav-links-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0c0c0c;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        padding: 1rem 1.5rem;
        gap: 0.25rem;
        box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    }
    
    .nav-links-menu.open {
        display: flex;
    }
    
    .nav-link-item {
        width: 100%;
        padding: 0.75rem 0;
        border: none;
        border-left: 2px solid transparent;
        padding-left: 0.75rem;
    }
    
    .nav-link-item:hover, .nav-link-item.active {
        border-left-color: var(--color-hotpink);
    }
    
    .promo-banner-card {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 2rem;
    }
    
    .promo-devices-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .footer-newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-submit-btn {
        padding: 0.8rem 0;
    }
}

@media (max-width: 600px) {
    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .player-widget-wrapper {
        flex-direction: column;
    }
    
    .main-player-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 480px) {
    .hero-slogan {
        font-size: 2.5rem;
    }
    
    .channels-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .footer-bottom-row {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

