/*
================================================================
Musicon Theme - Pro Single Track Page Enhancements
================================================================
Version: 2.0.0
Description: Premium modern styling for single track/station display
Primary Color: #FF5500 (Orange)
================================================================ */

/* ============================================================
   CSS Variables
   ============================================================ */
:root {
    /* Pro theme colors */
    --pro-primary: #FF5500;
    --pro-primary-hover: #ff7733;
    --pro-primary-glow: rgba(255, 85, 0, 0.4);
    --pro-secondary: #00d4ff;
    --pro-secondary-glow: rgba(0, 212, 255, 0.3);
    --pro-dark: #0a0a0c;
    --pro-darker: #050506;
    --pro-dark-secondary: #121214;
    --pro-dark-tertiary: #1c1c1f;
    --pro-gray: #2a2a2e;
    --pro-gray-light: #3a3a3f;
    --pro-text: #ffffff;
    --pro-text-secondary: #b3b3b3;
    --pro-text-muted: #727272;
    --pro-border: #333333;
    
    /* Gradients */
    --pro-gradient: linear-gradient(135deg, #FF5500 0%, #ff7733 100%);
    --pro-gradient-dark: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
    --pro-hero-gradient: linear-gradient(180deg, rgba(255,85,0,0.15) 0%, var(--pro-darker) 100%);
    --pro-animated-gradient: linear-gradient(-45deg, #FF5500, #ff7733, #00d4ff, #FF5500);
    
    /* Shadows */
    --pro-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    --pro-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.7);
    --pro-glow: 0 0 40px var(--pro-primary-glow);
    --pro-glow-sm: 0 0 20px var(--pro-primary-glow);
    
    /* Transitions */
    --pro-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --pro-transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border radius */
    --pro-radius: 12px;
    --pro-radius-lg: 16px;
    --pro-radius-xl: 24px;
    --pro-radius-full: 9999px;
}

/* ============================================================
   Base Enhancements
   ============================================================ */
body.single-station,
body.single-track {
    background: var(--pro-darker);
    color: var(--pro-text);
}

.entry-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* ============================================================
   Animated Hero Background
   ============================================================ */
.header-station {
    position: relative;
    padding: 5rem 0 4rem;
    background: var(--pro-hero-gradient);
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
}

/* Animated gradient overlay */
.header-station::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(255, 85, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Blurred album art background */
.header-station .dynamic-bg {
    position: absolute;
    top: -20%;
    left: -20%;
    right: -20%;
    bottom: -20%;
    background-size: cover;
    background-position: center;
    filter: blur(80px);
    opacity: 0.5;
    z-index: 0;
    animation: bgFloat 20s ease-in-out infinite;
}

@keyframes bgFloat {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(3deg); }
}

/* Gradient overlay */
.header-station::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg, 
        rgba(10, 10, 12, 0.2) 0%, 
        rgba(10, 10, 12, 0.5) 40%,
        rgba(10, 10, 12, 0.8) 70%,
        rgba(10, 10, 12, 1) 100%
    );
    z-index: 1;
}

/* Container positioning */
.header-station > .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 3rem;
    width: 100%;
}

/* ============================================================
   Enhanced Album Art
   ============================================================ */
.header-station .post-thumbnail {
    position: relative;
    width: 280px;
    height: 280px;
    flex-shrink: 0;
    border-radius: var(--pro-radius-xl);
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 0 60px var(--pro-primary-glow),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: var(--pro-transition);
    animation: albumGlow 3s ease-in-out infinite;
}

@keyframes albumGlow {
    0%, 100% { box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 0 60px var(--pro-primary-glow), inset 0 0 0 1px rgba(255, 255, 255, 0.1); }
    50% { box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 0 80px var(--pro-primary-glow), inset 0 0 0 1px rgba(255, 255, 255, 0.15); }
}

.header-station .post-thumbnail::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        transparent 40%,
        rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.header-station .post-thumbnail:hover {
    transform: scale(1.05) rotate(2deg) translateY(-5px);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.7),
        0 0 100px var(--pro-primary-glow),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.header-station .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.header-station .post-thumbnail:hover img {
    transform: scale(1.15);
}

/* Play button overlay on cover */
.header-station .post-thumbnail .btn-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 80px;
    height: 80px;
    background: var(--pro-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 3;
    box-shadow: 
        0 10px 40px rgba(255, 85, 0, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transition: var(--pro-transition);
}

.header-station .post-thumbnail:hover .btn-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.header-station .post-thumbnail .btn-play:hover {
    transform: translate(-50%, -50%) scale(1.15) !important;
    box-shadow: 
        0 15px 50px rgba(255, 85, 0, 0.8),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

/* ============================================================
   Entry Header - Enhanced
   ============================================================ */
.header-station > .entry-header {
    flex: 1;
    min-width: 350px;
    margin-top: 0 !important;
    position: relative;
    z-index: 2;
    padding-bottom: 0.5rem;
}

/* Station type badge */
.header-station .entry-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.header-station .tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.6rem 1.25rem;
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.2) 0%, rgba(255, 85, 0, 0.1) 100%);
    border: 1px solid rgba(255, 85, 0, 0.4);
    border-radius: var(--pro-radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--pro-primary);
    backdrop-filter: blur(10px);
    transition: var(--pro-transition);
}

.header-station .tag:hover {
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.3) 0%, rgba(255, 85, 0, 0.15) 100%);
    transform: translateY(-2px);
}

.header-station .tag a {
    color: var(--pro-primary) !important;
}

/* Artist name */
.header-station > .entry-header .entry-artist {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--pro-text-secondary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.header-station > .entry-header .entry-artist a {
    color: var(--pro-text-secondary);
    transition: var(--pro-transition);
}

.header-station > .entry-header .entry-artist a:hover {
    color: var(--pro-primary);
    text-shadow: 0 0 20px var(--pro-primary-glow);
}

/* Title - Enhanced with gradient text */
.header-station > .entry-header .entry-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.75rem;
    color: var(--pro-text);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Entry meta */
.header-station > .entry-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

/* Premium Play Button - Large */
.header-station > .entry-meta .btn-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.875rem;
    padding: 1.125rem 3rem;
    background: var(--pro-gradient);
    border: none;
    border-radius: var(--pro-radius-full);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff !important;
    box-shadow: 
        0 8px 30px var(--pro-primary-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: var(--pro-transition);
    position: relative;
    overflow: hidden;
}

.header-station > .entry-meta .btn-play::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.header-station > .entry-meta .btn-play:hover::before {
    left: 100%;
}

.header-station > .entry-meta .btn-play:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 15px 50px var(--pro-primary-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.header-station > .entry-meta .btn-play span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Action buttons */
.header-station .btn-action {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--pro-text-secondary);
    transition: var(--pro-transition);
    cursor: pointer;
}

.header-station .btn-action:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--pro-text);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-station .btn-action.active {
    background: rgba(255, 85, 0, 0.2);
    border-color: var(--pro-primary);
    color: var(--pro-primary);
}

/* Verified Badge */
.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--pro-gradient);
    border-radius: 50%;
    margin-left: 8px;
    box-shadow: 0 2px 10px rgba(255, 85, 0, 0.5);
    vertical-align: middle;
}

.verified-badge svg {
    width: 11px;
    height: 11px;
    fill: #fff;
}

/* ============================================================
   Station Content Area
   ============================================================ */
.station-content {
    max-width: 650px;
    margin-top: 2rem;
}

.station-content p {
    color: var(--pro-text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

/* ============================================================
   Waveform Section
   ============================================================ */
.header-station .waveform {
    width: 100%;
    margin-top: 2.5rem;
    padding: 1.75rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--pro-radius-xl);
}

.waveform-container {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

/* Custom Progress Bar */
.pro-progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.pro-progress-bar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: var(--progress, 0%);
    background: var(--pro-gradient);
    border-radius: 4px;
    transition: width 0.1s;
    box-shadow: 0 0 10px var(--pro-primary-glow);
}

.pro-progress-bar::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.pro-progress-bar:hover::after {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
}

/* Time display */
.waveform .time {
    font-size: 0.85rem;
    color: var(--pro-text-muted);
    min-width: 50px;
    font-variant-numeric: tabular-nums;
    font-weight: 500;
}

/* ============================================================
   Stats Display
   ============================================================ */
.track-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--pro-text-secondary);
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--pro-radius);
    transition: var(--pro-transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.stat-item svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    opacity: 0.8;
}

.stat-item .count {
    font-weight: 700;
    color: var(--pro-text);
    font-size: 1.1rem;
}

.stat-item .label {
    color: var(--pro-text-muted);
}

/* ============================================================
   Track List - Enhanced
   ============================================================ */
.album-tracks {
    margin-top: 3rem;
}

.album-tracks .block-loop-header {
    margin-bottom: 1.5rem;
}

.album-tracks .block-loop-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pro-text);
}

.album-tracks .block-loop-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    border-radius: var(--pro-radius-lg);
    transition: var(--pro-transition);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 0.5rem;
}

.album-tracks .block-loop-item:hover {
    background: rgba(255, 85, 0, 0.08);
    transform: translateX(8px);
}

.album-tracks .block-loop-item.active {
    background: rgba(255, 85, 0, 0.12);
    border-left: 4px solid var(--pro-primary);
}

/* Track number */
.album-tracks .track-number {
    width: 36px;
    text-align: center;
    font-size: 1rem;
    color: var(--pro-text-muted);
    font-weight: 600;
}

.album-tracks .block-loop-item:hover .track-number {
    display: none;
}

.album-tracks .block-loop-item .play-icon {
    display: none;
    width: 36px;
    justify-content: center;
}

.album-tracks .block-loop-item:hover .play-icon {
    display: flex;
}

.album-tracks .play-icon svg {
    fill: var(--pro-text);
}

/* Track thumbnail */
.album-tracks .post-thumbnail {
    width: 56px;
    height: 56px;
    border-radius: var(--pro-radius);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.album-tracks .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Track info */
.album-tracks .entry-info {
    flex: 1;
    min-width: 0;
}

.album-tracks .entry-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.35rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.album-tracks .entry-title a {
    color: var(--pro-text);
    transition: var(--pro-transition);
}

.album-tracks .entry-title a:hover {
    color: var(--pro-primary);
}

.album-tracks .entry-meta {
    font-size: 0.85rem;
    color: var(--pro-text-muted);
}

/* Track duration */
.album-tracks .track-duration {
    color: var(--pro-text-muted);
    font-size: 0.9rem;
    font-variant-numeric: tabular-nums;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--pro-radius-full);
}

/* ============================================================
   Glassmorphism Card
   ============================================================ */
.glass-card {
    background: rgba(24, 24, 28, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--pro-radius-xl);
    padding: 2rem;
}

/* ============================================================
   Animations
   ============================================================ */

/* Fade in animation */
@keyframes proFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-station > .container > * {
    animation: proFadeIn 0.6s ease-out forwards;
}

.header-station > .container > *:nth-child(1) { animation-delay: 0.1s; }
.header-station > .container > *:nth-child(2) { animation-delay: 0.2s; }

/* Pulse glow */
@keyframes proPulseGlow {
    0%, 100% {
        box-shadow: 0 0 30px var(--pro-primary-glow);
    }
    50% {
        box-shadow: 0 0 60px var(--pro-primary-glow), 0 0 80px rgba(255, 85, 0, 0.2);
    }
}

/* Equalizer bars */
@keyframes equalizer {
    0%, 100% { height: 4px; }
    50% { height: 20px; }
}

.equalizer {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    height: 24px;
}

.equalizer .bar {
    width: 4px;
    background: var(--pro-gradient);
    border-radius: 2px;
    animation: equalizer 0.8s ease-in-out infinite;
}

.equalizer .bar:nth-child(1) { animation-delay: 0s; }
.equalizer .bar:nth-child(2) { animation-delay: 0.15s; }
.equalizer .bar:nth-child(3) { animation-delay: 0.3s; }
.equalizer .bar:nth-child(4) { animation-delay: 0.45s; }

.playing .equalizer { display: flex; }

/* Playing state indicator */
.is-playing .header-station .post-thumbnail {
    animation: playingPulse 2s ease-in-out infinite;
}

@keyframes playingPulse {
    0%, 100% { box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 0 60px var(--pro-primary-glow); }
    50% { box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 0 100px var(--pro-primary-glow), 0 0 120px rgba(255, 85, 0, 0.2); }
}

/* ============================================================
   Like Button Animation
   ============================================================ */
.btn-like {
    transition: var(--pro-transition);
}

.btn-like.active {
    color: #ff3366 !important;
    animation: heartBeat 0.6s ease;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.4); }
    50% { transform: scale(0.9); }
    75% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.btn-like.just-liked svg {
    animation: heartPop 0.4s ease;
}

@keyframes heartPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.5); }
    100% { transform: scale(1); }
}

/* ============================================================
   Toast Notifications
   ============================================================ */
.pro-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 1rem 1.75rem;
    background: var(--pro-dark-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--pro-radius);
    color: var(--pro-text);
    z-index: 9999;
    animation: slideInRight 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.pro-toast-success {
    border-color: rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2) 0%, var(--pro-dark-secondary) 100%);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================================
   Share Modal
   ============================================================ */
.share-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--pro-transition);
}

.share-modal.active {
    opacity: 1;
    visibility: visible;
}

.share-modal-content {
    background: var(--pro-dark-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--pro-radius-xl);
    padding: 2.5rem;
    max-width: 450px;
    width: 90%;
    transform: scale(0.9) translateY(20px);
    transition: var(--pro-transition);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6);
}

.share-modal.active .share-modal-content {
    transform: scale(1) translateY(0);
}

.share-modal h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.share-btn {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: var(--pro-transition);
    border: none;
    cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.copy { background: var(--pro-gray); }

/* ============================================================
   Floating Particles
   ============================================================ */
.particles-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--pro-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 15s infinite linear;
}

.particle:nth-child(2n) {
    background: var(--pro-secondary);
    animation-duration: 20s;
}

.particle:nth-child(3n) {
    width: 4px;
    height: 4px;
    animation-duration: 25s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.4; }
    90% { opacity: 0.4; }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ============================================================
   Loading Skeleton
   ============================================================ */
.skeleton {
    background: linear-gradient(
        90deg,
        var(--pro-dark-tertiary) 25%,
        var(--pro-gray) 50%,
        var(--pro-dark-tertiary) 75%
    );
    background-size: 200% 100%;
    animation: skeletonLoading 1.5s ease-in-out infinite;
    border-radius: var(--pro-radius);
}

@keyframes skeletonLoading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ============================================================
   Related Tracks Section
   ============================================================ */
.related-tracks-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.related-tracks-section h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--pro-text);
}

.related-track-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--pro-dark-secondary);
    border-radius: var(--pro-radius-lg);
    transition: var(--pro-transition);
    cursor: pointer;
    margin-bottom: 1rem;
}

.related-track-card:hover {
    background: var(--pro-dark-tertiary);
    transform: translateX(12px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.related-track-card .cover {
    width: 64px;
    height: 64px;
    border-radius: var(--pro-radius);
    overflow: hidden;
    flex-shrink: 0;
}

.related-track-card .cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-track-card .info {
    flex: 1;
    min-width: 0;
}

.related-track-card .title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.35rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.related-track-card .artist {
    font-size: 0.9rem;
    color: var(--pro-text-muted);
}

.related-track-card .plays {
    font-size: 0.85rem;
    color: var(--pro-text-muted);
    font-variant-numeric: tabular-nums;
}

/* ============================================================
   Responsive Enhancements
   ============================================================ */
@media (max-width: 1200px) {
    .header-station {
        padding: 4rem 0 3rem;
    }
    
    .header-station .post-thumbnail {
        width: 240px;
        height: 240px;
    }
    
    .header-station > .entry-header .entry-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
}

@media (max-width: 992px) {
    .header-station {
        padding: 3rem 0 2.5rem;
        min-height: auto;
    }
    
    .header-station .post-thumbnail {
        width: 200px;
        height: 200px;
    }
    
    .header-station > .entry-header {
        min-width: 280px;
    }
    
    .header-station > .entry-header .entry-title {
        font-size: 2rem;
    }
    
    .header-station > .entry-meta .btn-play {
        padding: 1rem 2.5rem;
    }
    
    .track-stats {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 0.6rem 1rem;
    }
}

@media (max-width: 768px) {
    .header-station > .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .header-station .post-thumbnail {
        width: 180px;
        height: 180px;
    }
    
    .header-station > .entry-header {
        width: 100%;
    }
    
    .header-station > .entry-header .entry-title {
        font-size: 1.75rem;
    }
    
    .header-station > .entry-meta {
        width: 100%;
        justify-content: center;
    }
    
    .track-stats {
        justify-content: center;
    }
    
    .station-content {
        text-align: center;
    }
    
    .album-tracks .block-loop-item {
        padding: 1rem;
    }
    
    .album-tracks .post-thumbnail {
        width: 48px;
        height: 48px;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .header-station {
        padding: 2.5rem 0 2rem;
    }
    
    .header-station .post-thumbnail {
        width: 150px;
        height: 150px;
    }
    
    .header-station > .entry-header .entry-title {
        font-size: 1.5rem;
    }
    
    .header-station > .entry-meta .btn-play {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }
    
    .header-station .btn-action {
        width: 44px;
        height: 44px;
    }
    
    .track-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        justify-content: center;
    }
    
    .related-track-card {
        flex-direction: column;
        text-align: center;
    }
    
    .related-track-card .cover {
        width: 80px;
        height: 80px;
    }
}

/* ============================================================
   Sticky Header (Scroll State)
   ============================================================ */
.scrolled .header-station {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1.25rem 0;
    min-height: auto;
    background: rgba(10, 10, 12, 0.98);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.scrolled .header-station::before,
.scrolled .header-station::after,
.scrolled .header-station .dynamic-bg {
    display: none;
}

.scrolled .header-station .post-thumbnail {
    width: 56px;
    height: 56px;
    border-radius: var(--pro-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    animation: none;
}

.scrolled .header-station > .entry-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.scrolled .header-station .entry-tag,
.scrolled .header-station .station-content,
.scrolled .header-station .track-stats,
.scrolled .header-station .entry-artist,
.scrolled .header-station .entry-term {
    display: none;
}

.scrolled .header-station > .entry-header .entry-title {
    font-size: 1.25rem;
    margin-bottom: 0;
    background: none;
    -webkit-text-fill-color: var(--pro-text);
}

.scrolled .header-station > .entry-meta {
    margin-top: 0;
    margin-left: auto;
}

.scrolled .header-station .btn-play {
    padding: 0.625rem 1.5rem;
    font-size: 0.8rem;
}

/* ============================================================
   Sidebar Enhancements
   ============================================================ */
#secondary {
    padding: 2rem;
    background: var(--pro-dark-secondary);
    border-radius: var(--pro-radius-xl);
    margin-top: 2rem;
}

.widget {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.widget:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--pro-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================
   CUSTOM SINGLE STATION LAYOUT
   Play (Left) + Download (Right) - Static Design (No Scroll Effects)
   ============================================================ */

/* Make header STATIC - No scroll effects */
.header-station {
    position: relative !important;
    padding: 4rem 0 3rem !important;
    background: linear-gradient(180deg, rgba(10,10,12,0.95) 0%, rgba(10,10,12,1) 100%) !important;
    overflow: visible !important;
    min-height: auto !important;
    display: block !important;
}

/* Remove all animations */
.header-station::before,
.header-station::after,
.header-station .dynamic-bg {
    display: none !important;
}

/* Static Album Art */
.header-station .post-thumbnail {
    position: relative !important;
    width: 220px !important;
    height: 220px !important;
    float: left !important;
    margin-right: 2rem !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5) !important;
    animation: none !important;
}

/* Static Container */
.header-station > .container {
    position: relative !important;
    z-index: 2 !important;
    display: block !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

.header-station > .container::after {
    content: '' !important;
    display: table !important;
    clear: both !important;
}

/* Static Entry Header */
.header-station > .entry-header {
    overflow: hidden !important;
    padding-top: 0.5rem !important;
    animation: none !important;
}

/* Static Title */
.header-station > .entry-header .entry-title {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    margin-bottom: 1rem !important;
    background: none !important;
    -webkit-text-fill-color: #fff !important;
    color: #fff !important;
}

/* Static Entry Meta - Play/Download Buttons Side by Side */
.header-station > .entry-meta {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 1rem !important;
    margin-top: 1.5rem !important;
    padding-top: 1.5rem !important;
    border-top: 1px solid rgba(255,255,255,0.1) !important;
    animation: none !important;
}

/* Left side - Play Button */
.header-station > .entry-meta .meta-left {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
}

/* Right side - Download Button */
.header-station > .entry-meta .meta-right {
    margin-left: auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
}

/* Premium Play Button - Large and Attractive */
.header-station > .entry-meta .btn-play {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.75rem !important;
    padding: 1.25rem 3rem !important;
    background: linear-gradient(135deg, #FF5500 0%, #ff7733 100%) !important;
    border: none !important;
    border-radius: 50px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    color: #fff !important;
    box-shadow: 0 8px 30px rgba(255,85,0,0.5) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.header-station > .entry-meta .btn-play:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 40px rgba(255,85,0,0.7) !important;
}

.header-station > .entry-meta .btn-play svg {
    width: 24px;
    height: 24px;
}

/* Download Button - Premium Green Attractive Style */
.header-station > .entry-meta .btn-download {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    padding: 1rem 2rem !important;
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%) !important;
    border: none !important;
    border-radius: 50px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(76,175,80,0.4) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.header-station > .entry-meta .btn-download:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(76,175,80,0.6) !important;
}

.header-station > .entry-meta .btn-download svg {
    width: 20px;
    height: 20px;
}

/* Hide unwanted elements - Like, Comment, Share, counts */
.header-station .btn-like,
.header-station .btn-comment,
.header-station .btn-share,
.header-station .entry-meta .meta-left > *:not(.btn-play),
.header-station .entry-meta .meta-right > *:not(.btn-download),
.header-station .entry-meta .play-count,
.header-station .entry-meta .like-count,
.header-station .entry-meta .comment-count,
.station-content + .entry-meta .btn-like,
.station-content + .entry-meta .btn-comment,
.station-content + .entry-meta .btn-share,
.track-stats,
.entry-info .stat-item,
.entry-meta .stat-item {
    display: none !important;
}

/* Static Content */
.station-content {
    max-width: 800px !important;
    margin-top: 2rem !important;
    clear: both !important;
}

/* Static Track List */
.album-tracks {
    margin-top: 2rem !important;
}

/* Remove scrolled class effects entirely */
.scrolled .header-station {
    position: relative !important;
    padding: 4rem 0 3rem !important;
    background: linear-gradient(180deg, rgba(10,10,12,0.95) 0%, rgba(10,10,12,1) 100%) !important;
}

.scrolled .header-station .post-thumbnail {
    width: 220px !important;
    height: 220px !important;
    border-radius: 12px !important;
    animation: none !important;
}

.scrolled .header-station > .entry-header {
    display: block !important;
}

.scrolled .header-station .entry-tag,
.scrolled .header-station .station-content,
.scrolled .header-station .track-stats,
.scrolled .header-station .entry-artist,
.scrolled .header-station .entry-term {
    display: block !important;
}

.scrolled .header-station > .entry-header .entry-title {
    font-size: 2.5rem !important;
    margin-bottom: 1rem !important;
    background: none !important;
    -webkit-text-fill-color: #fff !important;
}

.scrolled .header-station > .entry-meta {
    display: flex !important;
    margin-top: 1.5rem !important;
    margin-left: 0 !important;
}

.scrolled .header-station .btn-play {
    padding: 1.25rem 3rem !important;
    font-size: 1rem !important;
}

/* Responsive */
@media (max-width: 768px) {
    .header-station .post-thumbnail {
        float: none !important;
        width: 180px !important;
        height: 180px !important;
        margin: 0 auto 1.5rem !important;
        display: block !important;
    }
    
    .header-station > .entry-header {
        text-align: center !important;
    }
    
    .header-station > .entry-meta {
        flex-direction: column !important;
    }
    
    .header-station > .entry-meta .meta-left,
    .header-station > .entry-meta .meta-right {
        margin-left: 0 !important;
        width: 100% !important;
    }
    
    .header-station > .entry-meta .btn-play,
    .header-station > .entry-meta .btn-download {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* ============================================================
   End of Pro Single Track Enhancements v2.2
   ============================================================ */

