/**
 * MStevi Music - Main Stylesheet
 * Dark theme, modern design, responsive and mobile-first
 */

/* ==================== VARIABLES - Chrome Style ==================== */
:root {
    --chrome-bg: #ffffff;
    --chrome-surface: #f8f9fa;
    --chrome-surface-variant: #e8eaed;
    --chrome-border: #dadce0;
    --chrome-blue: #1a73e8;
    --chrome-blue-dark: #1557b0;
    --chrome-blue-light: #d2e3fc;
    --chrome-text: #202124;
    --chrome-text-secondary: #5f6368;
    --chrome-text-disabled: #9aa0a6;
    --chrome-yellow: #fbbc04;
    --chrome-red: #ea4335;
    --chrome-green: #34a853;
    --chrome-shadow-sm: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
    --chrome-shadow-md: 0 1px 3px 0 rgba(60, 64, 67, 0.3), 0 4px 8px 3px rgba(60, 64, 67, 0.15);
    --chrome-shadow-lg: 0 2px 6px 2px rgba(60, 64, 67, 0.15), 0 8px 24px 4px rgba(60, 64, 67, 0.15);
}

/* ==================== PRELOADER ==================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    animation: simpleFadeIn 0.6s ease-out;
}

.preloader-logo {
    margin-bottom: 3rem;
}

.preloader-icon {
    font-size: 5rem;
    display: block;
    margin-bottom: 1rem;
    animation: bounce 1.5s infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.preloader-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.preloader-bar-container {
    margin-top: 2rem;
}

.preloader-bar {
    width: 300px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin: 0 auto 1rem;
}

.preloader-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, 
        #ffffff 0%, 
        #f0f0f0 25%, 
        #ffffff 50%, 
        #f0f0f0 75%, 
        #ffffff 100%);
    background-size: 200% 100%;
    border-radius: 10px;
    animation: progressBar 2s ease-in-out infinite, shimmer 1.5s linear infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.preloader-status {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

/* Preloader Animations */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes progressBar {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .preloader-icon {
        font-size: 4rem;
    }
    
    .preloader-text {
        font-size: 1.8rem;
    }
    
    .preloader-bar {
        width: 250px;
    }
    
    .preloader-status {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .preloader-icon {
        font-size: 3rem;
    }
    
    .preloader-text {
        font-size: 1.5rem;
    }
    
    .preloader-bar {
        width: 200px;
    }
}

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

/* ==================== PAGE TRANSITIONS ==================== */
/* Smooth fade on all page content - handled by JavaScript */
body {
    transition: opacity 0.5s ease-in-out;
}

.site-wrapper {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 80px; /* Offset for sticky nav */
}

body {
    font-family: 'Roboto', 'Segoe UI', 'Arial', sans-serif;
    background: white;
    color: var(--chrome-text);
    line-height: 1.5;
    min-height: 100vh;
    padding: 0;
    padding-bottom: 120px;
    position: relative;
    overflow-x: hidden;
}

.site-wrapper {
    max-width: 1800px; /* Wider for better content display */
    margin: 0 auto;
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    min-height: 100vh;
    position: relative;
    transition: all 0.3s ease;
    border: none;
}

a {
    color: var(--chrome-blue);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: var(--chrome-blue-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    transform: translateZ(0);
    backface-visibility: hidden;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* ==================== LAYOUT ==================== */
.container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 2rem;
}

.main-content {
    min-height: calc(100vh - 400px);
    position: relative;
    z-index: 1;
}

/* ==================== NAVIGATION ==================== */
.main-nav {
    background: var(--chrome-bg);
    border-bottom: 1px solid var(--chrome-border);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--chrome-shadow-sm);
    border-radius: 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--chrome-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 1.75rem;
    color: var(--chrome-blue);
    transition: transform 0.2s ease;
}

.logo:hover .logo-icon {
    transform: scale(1.1);
}

.logo-text {
    letter-spacing: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--chrome-text-secondary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
}

.nav-menu a:hover {
    color: var(--chrome-text);
    background: var(--chrome-surface);
    transform: translateY(-1px) translateZ(0);
}

.nav-menu a.active {
    color: var(--chrome-blue);
    background: var(--chrome-blue-light);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--chrome-text);
    transition: 0.3s;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background-color: white;
        padding: 2rem;
        transition: left 0.3s ease;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        left: 0;
    }
}

/* ==================== HERO SLIDER SECTION ==================== */
.hero-slider {
    position: relative;
    min-height: 500px;
    margin: 3rem 1.5rem 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 115, 232, 0.3);
}

.slider-container {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    background: linear-gradient(135deg, #1a73e8 0%, #1557b0 50%, #0d47a1 100%);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Removed heavy blur and opacity to show images clearly */
    filter: brightness(0.7);
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Reduced overlay opacity to show images clearly */
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 0;
    animation: simpleFadeIn 0.6s ease;
}

@keyframes simpleFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.65rem 1.25rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: pulse 2s ease-in-out infinite;
}

.hero-badge::before {
    content: '⭐';
    font-size: 1rem;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.hero-artist {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    color: white;
    font-size: 1rem;
}

.hero-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-actions .btn {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-actions .btn-primary {
    background: white;
    color: var(--chrome-blue);
}

.hero-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-actions .btn-secondary {
    background: rgba(16, 185, 129, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(5, 150, 105, 0.8);
}

.hero-actions .btn-secondary:hover {
    background: rgba(5, 150, 105, 0.95);
    border-color: #047857;
    transform: translateY(-3px);
}

/* Hero Genre Tag */
.hero-genre {
    margin-bottom: 1rem;
}

.genre-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: 15px;
    font-size: 0.8125rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Slider Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 2rem;
}

.slider-nav.next {
    right: 2rem;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.75rem;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.slider-dots .dot.active {
    background: white;
    width: 32px;
    border-radius: 6px;
}

/* Decorative elements */
.hero-slide::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider {
        min-height: 400px;
        margin: 2rem 1rem 2rem;
    }
    
    .slider-container,
    .hero-slide {
        min-height: 400px;
    }
    
    .hero-content {
        padding: 2.5rem 0;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-artist {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        gap: 1rem;
        font-size: 0.875rem;
    }
    
    .hero-stats span {
        padding: 0.4rem 0.75rem;
    }
    
    .hero-actions .btn {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .slider-nav.prev {
        left: 1rem;
    }
    
    .slider-nav.next {
        right: 1rem;
    }
    
    .slider-dots {
        bottom: 1rem;
        gap: 0.5rem;
    }
    
    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-dots .dot.active {
        width: 24px;
    }
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px; /* More rounded borders */
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    will-change: transform;
    transform: translateZ(0);
}

.btn-primary {
    background: var(--chrome-blue);
    color: white;
    font-weight: 500;
    box-shadow: var(--chrome-shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    background: var(--chrome-blue-dark);
    box-shadow: var(--chrome-shadow-md);
    transform: translateY(-2px) translateZ(0);
}

.btn-secondary {
    background-color: #10b981;
    color: white;
    border: 1px solid #059669;
}

.btn-secondary:hover {
    background-color: #059669;
    border-color: #047857;
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--chrome-blue);
}

/* Download buttons with outline style should be green */
a[href*="download.php"].btn-outline {
    background-color: #10b981;
    color: white;
    border: 2px solid #059669;
}

a[href*="download.php"].btn-outline:hover {
    background-color: #059669;
    border-color: #047857;
    color: white;
}

/* Small download buttons should also be green */
a[href*="download.php"].btn-small {
    background-color: #10b981;
    color: white;
    border-color: #059669;
}

a[href*="download.php"].btn-small:hover {
    background-color: #059669;
    border-color: #047857;
    color: white;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
    display: block;
}

.btn-danger {
    background-color: var(--error);
    color: white;
}

.btn-danger:hover {
    background-color: #d32f2f;
}

/* ==================== SECTIONS ==================== */
.songs-section,
.blog-section,
.search-section {
    padding: 3rem 0;
}

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

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--chrome-text);
    font-weight: 400;
}

.section-header p {
    color: var(--chrome-text-secondary);
    font-size: 1rem;
}

/* ==================== ADVANCED SECTION HEADER ==================== */
.advanced-section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding: 2rem 0;
}

.header-decorative-line {
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--chrome-border) 20%, 
        var(--chrome-blue) 50%, 
        var(--chrome-border) 80%, 
        transparent 100%);
    margin: 0 auto;
    max-width: 800px;
    position: relative;
}

.header-decorative-line::before,
.header-decorative-line::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--chrome-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--chrome-blue);
}

.header-decorative-line::before {
    left: 20%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.header-decorative-line::after {
    right: 20%;
    animation: pulse-dot 2s ease-in-out infinite 1s;
}

.header-content {
    padding: 2rem 0;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--chrome-blue-light) 0%, rgba(26, 115, 232, 0.1) 100%);
    color: var(--chrome-blue);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid var(--chrome-blue);
    box-shadow: 0 2px 8px rgba(26, 115, 232, 0.2);
    animation: badge-float 3s ease-in-out infinite;
}

.badge-icon {
    font-size: 1.25rem;
    animation: badge-icon-rotate 3s ease-in-out infinite;
}

.badge-text {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.title-text {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, 
        var(--chrome-text) 0%, 
        var(--chrome-blue) 50%, 
        var(--chrome-text) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease-in-out infinite;
    display: block;
}

.title-decoration {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--chrome-blue) 50%, 
        transparent 100%);
    border-radius: 2px;
    animation: decoration-expand 2s ease-in-out infinite;
}

.header-description {
    color: var(--chrome-text-secondary);
    font-size: 1.125rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.collection-stats {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(26, 115, 232, 0.1);
    color: var(--chrome-blue);
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(26, 115, 232, 0.2);
}

.stat-dot {
    color: var(--chrome-blue);
    font-size: 1.5rem;
    line-height: 0;
}

/* Animations */
@keyframes pulse-dot {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-50%) scale(1.5);
        opacity: 0.5;
    }
}

@keyframes badge-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes badge-icon-rotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

@keyframes decoration-expand {
    0%, 100% {
        width: 60%;
        opacity: 1;
    }
    50% {
        width: 80%;
        opacity: 0.7;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .advanced-section-header {
        margin-bottom: 2.5rem;
        padding: 1.5rem 0;
    }
    
    .header-badge {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
        margin-bottom: 1rem;
    }
    
    .badge-icon {
        font-size: 1rem;
    }
    
    .title-text {
        font-size: 2rem;
    }
    
    .header-description {
        font-size: 0.9rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .collection-stats {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }
    
    .header-decorative-line::before {
        left: 10%;
    }
    
    .header-decorative-line::after {
        right: 10%;
    }
}

@media (max-width: 480px) {
    .title-text {
        font-size: 1.75rem;
    }
    
    .header-description {
        font-size: 0.85rem;
    }
}

.page-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.92) 0%, rgba(20, 20, 30, 0.88) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    padding: 4rem 2rem;
    text-align: center;
    margin: 2rem 1.5rem 3rem;
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    animation: headerGlow 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes headerGlow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(5%, 5%) rotate(180deg); }
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    letter-spacing: -0.02em;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.6));
}

.page-header p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.2rem;
    position: relative;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* ==================== BREADCRUMBS ==================== */
.breadcrumbs {
    margin: 1.5rem 1.5rem 1rem;
    padding: 0;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--chrome-bg);
    border-radius: 8px;
    border: 1px solid var(--chrome-border);
    box-shadow: var(--chrome-shadow-sm);
    font-size: 0.875rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: var(--chrome-text-secondary);
}

.breadcrumb-item:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: var(--chrome-text-disabled);
    font-size: 1.125rem;
}

.breadcrumb-item a {
    color: var(--chrome-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: var(--chrome-blue-dark);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--chrome-text);
    font-weight: 500;
}

@media (max-width: 768px) {
    .breadcrumbs {
        margin: 1rem;
    }
    
    .breadcrumb-list {
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
        gap: 0.375rem;
    }
}

/* ==================== SOCIAL MEDIA ==================== */
/* Social Share Buttons */
.social-share-buttons {
    background: var(--chrome-bg);
    border: 1px solid var(--chrome-border);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: var(--chrome-shadow-sm);
}

.social-share-buttons .share-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--chrome-text);
    margin-bottom: 1rem;
}

.share-buttons-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border: none;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-btn svg {
    flex-shrink: 0;
}

.share-facebook {
    background: #1877F2;
}

.share-facebook:hover {
    background: #0d65d9;
}

.share-twitter {
    background: #1DA1F2;
}

.share-twitter:hover {
    background: #0d8bd9;
}

.share-whatsapp {
    background: #25D366;
}

.share-whatsapp:hover {
    background: #1ebd58;
}

.share-telegram {
    background: #0088cc;
}

.share-telegram:hover {
    background: #006fa8;
}

.share-copy {
    background: var(--chrome-blue);
}

.share-copy:hover {
    background: var(--chrome-blue-dark);
}

.share-copy.copied {
    background: var(--chrome-green);
}

@media (max-width: 768px) {
    .share-buttons-wrapper {
        gap: 0.5rem;
    }
    
    .share-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
    }
    
    .share-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* Social Follow Links */
.social-follow-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--chrome-surface);
    border: 1px solid var(--chrome-border);
    color: var(--chrome-text);
    transition: all 0.2s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--chrome-shadow-md);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: white;
}

.social-twitter:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
    color: white;
}

.social-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #bc1888;
    color: white;
}

.social-youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
    color: white;
}

.social-tiktok:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.social-spotify:hover {
    background: #1DB954;
    border-color: #1DB954;
    color: white;
}

@media (max-width: 768px) {
    .social-follow-links {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
}

/* ==================== SONGS GRID ==================== */
.songs-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.songs-grid .song-card {
    display: flex;
    flex-direction: column;
    grid-template-columns: unset;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 1px 4px rgba(0, 0, 0, 0.03);
}

.songs-grid .song-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.1),
        0 6px 16px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.songs-grid .song-cover {
    position: relative;
    padding-top: 100%;
    width: 100%;
    height: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    flex-shrink: 0;
}

.songs-grid .song-cover img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.songs-grid .cover-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

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

.songs-grid .song-actions {
    flex-direction: row;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0.75rem;
}

.songs-grid .btn-action {
    flex: 1;
    padding: 0.625rem 1rem;
    text-align: center;
    font-size: 0.875rem;
}

/* Responsive grid for smaller screens */
@media (max-width: 1400px) {
    .songs-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 1200px) {
    .songs-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 900px) {
    .songs-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 600px) {
    .songs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .song-card {
        border-radius: 10px;
        cursor: pointer;
    }
    
    .song-info {
        padding: 0.75rem;
    }
    
    .song-title {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }
    
    .song-artist {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .song-genre {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }
    
    .song-stats {
        font-size: 0.75rem;
        gap: 0.5rem;
        margin-top: 0.25rem;
        margin-bottom: 0;
    }
    
    /* Hide action buttons on mobile - users tap card for details */
    .song-actions {
        display: none !important;
    }
    
    .btn-play-overlay {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.2rem !important;
    }
}

.song-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--chrome-border);
    box-shadow: var(--chrome-shadow-sm);
    will-change: transform;
    transform: translateZ(0);
    display: flex;
    flex-direction: column;
}

.song-card:hover {
    box-shadow: var(--chrome-shadow-md);
    transform: translateY(-6px) translateZ(0);
}

.song-cover {
    position: relative;
    padding-top: 100%;
    width: 100%;
    height: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: block;
    flex-shrink: 0;
}

.song-cover img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.song-card:hover .song-cover img {
    transform: scale(1.08);
}

.cover-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.song-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

.song-card:hover .song-overlay {
    opacity: 1;
}

.btn-play-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--chrome-blue);
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-play-circle:hover {
    transform: scale(1.1);
}

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

.song-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.song-title a {
    color: var(--chrome-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.song-title a:hover {
    color: var(--chrome-blue);
}

.song-artist {
    color: var(--chrome-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.song-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--chrome-text-secondary);
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.song-stats span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.song-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

/* ==================== ADVANCED SONG CARD ==================== */
.advanced-card {
    position: relative;
    overflow: visible;
}

.advanced-card .song-cover {
    position: relative;
}

.advanced-card .song-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 5;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.3) 0%, 
        rgba(0, 0, 0, 0.5) 40%, 
        rgba(0, 0, 0, 0.8) 100%);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
}

.advanced-card:hover .song-info {
    opacity: 1;
    backdrop-filter: blur(8px);
}

/* Remove default song-overlay when using advanced card */
.advanced-card .song-overlay {
    display: none;
}

/* Genre Badge Overlay (Top-Left) */
.genre-badge-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
}

.genre-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Play Count Badge (Top-Right) */
.play-count-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.95) 0%, rgba(26, 115, 232, 0.9) 100%);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.play-count-badge .badge-icon {
    font-size: 0.65rem;
}

.play-count-badge .badge-count {
    line-height: 1;
}

/* Enhanced Play Button */
.advanced-card .btn-play-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--chrome-blue) 0%, #0d5cb8 100%);
    border: 3px solid white;
    box-shadow: 0 4px 20px rgba(26, 115, 232, 0.4);
}

.btn-play-circle .play-icon {
    font-size: 1.75rem;
    line-height: 1;
}

.btn-play-circle .play-text {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.advanced-card .btn-play-circle:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 30px rgba(26, 115, 232, 0.6);
}

/* Artist Label - On Image Overlay */
.advanced-card .artist-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: fit-content;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.advanced-card .artist-label .label-icon {
    font-size: 1rem;
}

.advanced-card .artist-label .label-text {
    line-height: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Song Title - On Image Overlay */
.advanced-card .song-title {
    margin-bottom: 0;
}

.advanced-card .song-title a {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.3;
    display: block;
}

.advanced-card .song-title a:hover {
    color: white;
    text-decoration: none;
    text-shadow: 0 2px 12px rgba(255, 255, 255, 0.5);
}

/* Enhanced Stats Bar - On Image Overlay */
.advanced-card .song-stats-enhanced {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0.75rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.advanced-card .song-stats-enhanced .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
}

.advanced-card .song-stats-enhanced .stat-icon {
    font-size: 1.125rem;
    color: white;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
}

.advanced-card .song-stats-enhanced .stat-value {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.advanced-card .song-stats-enhanced .stat-label {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.advanced-card .song-stats-enhanced .stat-divider {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
}

/* Modern Action Buttons - On Image Overlay */
.advanced-card .song-actions-modern {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.5rem;
    margin-top: 0;
}

.advanced-card .btn-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.advanced-card .btn-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.advanced-card .btn-modern:active::before {
    width: 300px;
    height: 300px;
}

.advanced-card .btn-modern .btn-icon {
    font-size: 1.125rem;
    line-height: 1;
}

.advanced-card .btn-modern .btn-label {
    line-height: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.advanced-card .btn-play {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.advanced-card .btn-play:hover {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.advanced-card .btn-download {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.advanced-card .btn-download:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

.advanced-card .btn-view {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.advanced-card .btn-view:hover {
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
}

/* Advanced Card Hover Effects */
.advanced-card:hover {
    transform: translateY(-8px) translateZ(0);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.08);
}

.advanced-card:hover .genre-tag {
    transform: scale(1.05);
}

.advanced-card:hover .play-count-badge {
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Show overlay ONLY on hover/tap - hidden by default */
    .advanced-card .song-info {
        padding: 1rem;
        opacity: 0;
        backdrop-filter: blur(2px);
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.8) 100%
        );
        transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
    }
    
    /* Show overlay on hover */
    .advanced-card:hover .song-info,
    .advanced-card.tapped .song-info {
        opacity: 1 !important;
        backdrop-filter: blur(8px) !important;
    }
    
    .genre-badge-overlay,
    .play-count-badge {
        top: 8px;
    }
    
    .genre-badge-overlay {
        left: 8px;
    }
    
    .play-count-badge {
        right: 8px;
    }
    
    .genre-tag,
    .play-count-badge {
        font-size: 0.6875rem;
        padding: 0.25rem 0.625rem;
    }
    
    .btn-play-circle .play-icon {
        font-size: 1.5rem;
    }
    
    .btn-play-circle .play-text {
        font-size: 0.65rem;
    }
    
    .advanced-card .artist-label {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }
    
    .advanced-card .song-title a {
        font-size: 1.125rem;
    }
    
    .advanced-card .song-stats-enhanced {
        padding: 0.75rem;
        gap: 0.5rem;
    }
    
    .advanced-card .song-stats-enhanced .stat-value {
        font-size: 0.875rem;
    }
    
    .advanced-card .song-stats-enhanced .stat-label {
        font-size: 0.625rem;
    }
    
    .advanced-card .btn-modern {
        padding: 0.75rem 0.5rem;
        font-size: 0.875rem;
    }
    
    .advanced-card .btn-modern .btn-label {
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    /* Show overlay ONLY on hover/tap - hidden by default */
    .advanced-card .song-info {
        padding: 0.75rem;
        opacity: 0;
        backdrop-filter: blur(2px);
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.65) 50%,
            rgba(0, 0, 0, 0.85) 100%
        );
        transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
    }
    
    /* Show overlay on hover/tap */
    .advanced-card:hover .song-info,
    .advanced-card.tapped .song-info {
        opacity: 1 !important;
        backdrop-filter: blur(8px) !important;
    }
    
    .advanced-card .btn-play-circle {
        width: 60px;
        height: 60px;
    }
    
    .btn-play-circle .play-icon {
        font-size: 1.25rem;
    }
    
    .btn-play-circle .play-text {
        display: none;
    }
    
    .advanced-card .song-title a {
        font-size: 0.9375rem;
    }
    
    .advanced-card .artist-label {
        font-size: 0.6875rem;
        padding: 0.25rem 0.625rem;
    }
    
    .advanced-card .song-stats-enhanced {
        padding: 0.5rem;
        gap: 0.375rem;
    }
    
    .advanced-card .song-stats-enhanced .stat-label {
        display: none;
    }
    
    .advanced-card .song-stats-enhanced .stat-value {
        font-size: 0.75rem;
    }
    
    .advanced-card .song-stats-enhanced .stat-icon {
        font-size: 0.875rem;
    }
    
    /* Mobile buttons - same size with distinct colors */
    .advanced-card .btn-modern {
        width: 100%;
        font-size: 0.875rem;
        padding: 0.875rem 1rem;
        font-weight: 600;
        justify-content: center;
        border-radius: 12px;
    }
    
    .advanced-card .btn-modern .btn-label {
        font-size: 0.875rem;
        font-weight: 600;
    }
    
    .advanced-card .btn-modern .btn-icon {
        font-size: 1.125rem;
    }
    
    /* Play Button - Bright Blue */
    .advanced-card .btn-play {
        background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%) !important;
        color: white !important;
        border: none !important;
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    }
    
    .advanced-card .btn-play:active {
        transform: scale(0.98);
    }
    
    /* Download Button - Bright Green */
    .advanced-card .btn-download {
        background: linear-gradient(135deg, #10B981 0%, #059669 100%) !important;
        color: white !important;
        border: none !important;
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    }
    
    .advanced-card .btn-download:active {
        transform: scale(0.98);
    }
    
    /* View Button - Bright Purple */
    .advanced-card .btn-view {
        background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%) !important;
        color: white !important;
        border: none !important;
        box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
    }
    
    .advanced-card .btn-view:active {
        transform: scale(0.98);
    }
    
    /* Stack buttons vertically on very small screens */
    .advanced-card .song-actions-modern {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    /* Make genre and play count badges smaller */
    .genre-tag,
    .play-count-badge {
        font-size: 0.625rem;
        padding: 0.25rem 0.5rem;
    }
    
    .play-count-badge .badge-icon {
        font-size: 0.75rem;
    }
}

/* ==================== SONG SINGLE PAGE ==================== */
/* ==================== ADVANCED SONG HERO ==================== */
.advanced-song-hero {
    position: relative;
    padding: 4rem 0;
    margin-bottom: 3rem;
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(30px) brightness(0.4);
    transform: scale(1.1);
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.85) 0%, 
        rgba(0, 0, 0, 0.75) 50%, 
        rgba(0, 0, 0, 0.85) 100%);
}

.hero-content-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Cover Section */
.hero-cover-section {
    position: sticky;
    top: 100px;
}

.cover-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
}

.cover-wrapper:hover {
    transform: translateY(-8px);
}

.hero-cover-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1;
    object-fit: cover;
}

.cover-placeholder {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.placeholder-icon {
    font-size: 6rem;
}

.cover-genre-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
}

.genre-badge-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.genre-badge-link:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Quick Stats Below Cover */
.hero-quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.quick-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-stat .stat-icon {
    font-size: 1.5rem;
    color: white;
}

.quick-stat .stat-content {
    display: flex;
    flex-direction: column;
}

.quick-stat .stat-number {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.quick-stat .stat-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

/* Info Section */
.hero-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-artist-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: fit-content;
}

.hero-artist-label .artist-icon {
    font-size: 1.25rem;
}

.hero-artist-label .artist-name {
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

.hero-song-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-meta-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

.meta-tag .meta-icon {
    font-size: 1rem;
}

.meta-divider {
    color: rgba(255, 255, 255, 0.3);
}

.hero-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.0625rem;
    line-height: 1.6;
    max-width: 600px;
}

/* Action Buttons */
.hero-action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.125rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-btn:active::before {
    width: 300px;
    height: 300px;
}

.hero-btn .btn-icon-lg {
    font-size: 1.5rem;
    line-height: 1;
}

.hero-btn .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.125rem;
}

.hero-btn .btn-label {
    font-size: 1rem;
    line-height: 1;
}

.hero-btn .btn-sublabel {
    font-size: 0.75rem;
    opacity: 0.8;
    font-weight: 400;
}

.hero-btn-play {
    background: linear-gradient(135deg, #1a73e8 0%, #0d5cb8 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(26, 115, 232, 0.4);
}

.hero-btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(26, 115, 232, 0.6);
}

.hero-btn-download {
    background: rgba(16, 185, 129, 0.2);
    color: white;
    border: 2px solid rgba(16, 185, 129, 0.5);
}

.hero-btn-download:hover {
    background: rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
    border-color: rgba(16, 185, 129, 0.8);
}

.hero-btn-share {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-btn-share:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Responsive - Advanced Hero */
@media (max-width: 1024px) {
    .hero-content-grid {
        grid-template-columns: 350px 1fr;
        gap: 2rem;
    }
    
    .hero-song-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .advanced-song-hero {
        padding: 2rem 0;
    }
    
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-cover-section {
        position: static;
    }
    
    .cover-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-quick-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .quick-stat {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
        padding: 0.75rem 0.5rem;
    }
    
    .hero-song-title {
        font-size: 2rem;
    }
    
    .hero-action-buttons {
        flex-direction: column;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-song-title {
        font-size: 1.75rem;
    }
    
    .hero-quick-stats {
        grid-template-columns: 1fr;
    }
    
    .quick-stat {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .hero-btn {
        padding: 1rem 1.5rem;
    }
}

.song-single {
    padding: 3rem 0;
}

.song-single-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.song-single-cover img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.song-single-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.song-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.song-badge {
    background-color: var(--chrome-blue-light);
    color: var(--chrome-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.song-date {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.song-single-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.song-single-artist {
    font-size: 1.5rem;
    color: var(--chrome-text-secondary);
    margin-bottom: 1.5rem;
}

.song-description {
    color: var(--chrome-text-secondary);
    margin-bottom: 2rem;
}

.song-single-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.stat-icon {
    font-size: 2rem;
    color: var(--chrome-blue);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.song-single-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.related-songs {
    margin-top: 4rem;
}

.related-songs h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .song-single-content {
        grid-template-columns: 1fr;
    }
    
    .song-single-title {
        font-size: 2rem;
    }
    
    .song-single-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ==================== BLOG ==================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--chrome-shadow-sm);
    border: 1px solid var(--chrome-border);
    will-change: transform;
    transform: translateZ(0);
}

.blog-card:hover {
    transform: translateY(-8px) translateZ(0);
    box-shadow: var(--chrome-shadow-md);
}

.blog-image {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}

.blog-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    margin-bottom: 1rem;
}

.blog-date {
    color: var(--chrome-text-secondary);
    font-size: 0.875rem;
}

.blog-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.blog-title a {
    color: var(--chrome-text);
}

.blog-title a:hover {
    color: var(--chrome-blue);
}

.blog-excerpt {
    color: var(--chrome-text-secondary);
    margin-bottom: 1rem;
}

.read-more {
    color: var(--chrome-blue);
    font-weight: 600;
}

.read-more:hover {
    color: var(--chrome-blue-dark);
}

/* Blog Single */
.blog-single {
    padding: 3rem 0;
}

.blog-single-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
}

.blog-single-image {
    margin-bottom: 2rem;
}

.blog-single-image img {
    border-radius: 12px;
    width: 100%;
}

.blog-single-content {
    margin-bottom: 2rem;
}

.blog-reading-time {
    margin-left: 1rem;
    color: var(--chrome-text-secondary);
    font-size: 0.875rem;
}

.blog-single-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--chrome-text);
}

.blog-body {
    color: var(--chrome-text-secondary);
    line-height: 1.8;
}

.blog-body h2,
.blog-body h3,
.blog-body h4 {
    color: var(--chrome-text);
    margin: 2rem 0 1rem;
}

.blog-body p {
    margin-bottom: 1.5rem;
}

.blog-body ul,
.blog-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-body li {
    margin-bottom: 0.5rem;
}

.blog-body a {
    color: var(--chrome-blue);
    text-decoration: underline;
}

.blog-body a:hover {
    color: var(--chrome-blue-dark);
}

.blog-share {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--chrome-border);
}

.blog-share h3 {
    font-size: 1.25rem;
    color: var(--chrome-text);
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.share-buttons .share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.share-buttons .share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Twitter button */
.share-buttons a[href*="twitter"] {
    background: #1DA1F2;
}

.share-buttons a[href*="twitter"]:hover {
    background: #0d8bd9;
}

/* Facebook button */
.share-buttons a[href*="facebook"] {
    background: #1877F2;
}

.share-buttons a[href*="facebook"]:hover {
    background: #0d65d9;
}


.blog-single-sidebar {
    position: sticky;
    top: 80px;
    height: fit-content;
}

.sidebar-widget {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid var(--chrome-border);
    box-shadow: var(--chrome-shadow-sm);
}

.sidebar-widget h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--chrome-text);
}

.recent-posts-list {
    list-style: none;
}

.recent-posts-list li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--chrome-border);
}

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

.recent-posts-list a {
    color: var(--chrome-text);
    font-weight: 500;
}

.recent-posts-list a:hover {
    color: var(--chrome-blue);
}

.post-date {
    display: block;
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

@media (max-width: 992px) {
    .blog-single-wrapper {
        grid-template-columns: 1fr;
    }
    
    .blog-single-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-single-title {
        font-size: 2rem;
    }
}

/* ==================== MUSIC PAGE ==================== */
.view-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.04);
}

.view-mode-toggle {
    display: flex;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
    padding: 0.375rem;
    border-radius: 12px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.view-btn {
    padding: 0.625rem 1.25rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--chrome-text-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.view-btn span {
    font-size: 1.1rem;
}

.view-btn:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-1px);
    color: var(--chrome-text);
}

.view-btn.active {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: var(--chrome-blue);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.1),
        0 2px 6px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.results-info {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--chrome-text-secondary);
}

.results-info strong {
    color: var(--chrome-blue);
    font-size: 1.125rem;
}

.music-stats-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0;
    margin-bottom: 1.5rem;
}

.music-stats-bar .stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.875rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    font-weight: 500;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 1px 4px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.music-stats-bar .stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 2px 6px rgba(59, 130, 246, 0.08);
}

.music-stats-bar .stat-icon {
    font-size: 1.5rem;
    opacity: 0.85;
}

.music-stats-bar .stat-text {
    font-size: 0.875rem;
    color: var(--chrome-text);
    text-align: center;
}

.music-filters {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2.5rem;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 150px;
}

.filter-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--chrome-text-secondary);
}

.filter-select,
.filter-search {
    padding: 0.875rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    color: var(--chrome-text);
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.filter-select:hover,
.filter-search:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
}

.filter-select:focus,
.filter-search:focus {
    outline: none;
    border-color: var(--chrome-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15),
                0 2px 12px rgba(59, 130, 246, 0.2);
    transform: translateY(-1px);
}

.search-group {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.filter-search {
    width: 100%;
    padding-right: 3.5rem;
}

.btn-search {
    position: absolute;
    right: 0.5rem;
    bottom: 0.5rem;
    background: linear-gradient(135deg, var(--chrome-blue) 0%, #0d8bd9 100%);
    color: white;
    border: none;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.btn-search:hover {
    background: var(--chrome-blue-dark);
}

.btn-clear-filters {
    padding: 0.75rem 1rem;
    background: white;
    color: var(--chrome-blue);
    border: 1px solid var(--chrome-border);
    border-radius: 8px;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s ease;
    align-self: flex-end;
}

.btn-clear-filters:hover {
    background: var(--chrome-surface);
    border-color: var(--chrome-blue);
}

.song-genre {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(59, 130, 246, 0.08) 100%);
    color: var(--chrome-blue);
    padding: 0.35rem 0.85rem;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.song-genre:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.18) 0%, rgba(59, 130, 246, 0.12) 100%);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

.song-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.btn-action {
    flex: 1;
    padding: 0.625rem 1rem;
    background: linear-gradient(135deg, var(--chrome-blue) 0%, #0d8bd9 100%);
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    text-decoration: none;
    color: white;
    box-shadow: 
        0 2px 8px rgba(59, 130, 246, 0.3),
        0 1px 4px rgba(59, 130, 246, 0.2);
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 4px 12px rgba(59, 130, 246, 0.4),
        0 2px 6px rgba(59, 130, 246, 0.3);
}

/* Download button specific styling */
.btn-action[title="Download"] {
    background-color: #10b981;
    color: white;
    border-color: #059669;
}

.btn-action[title="Download"]:hover {
    background-color: #059669;
    border-color: #047857;
    color: white;
}

.btn-play-overlay {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--chrome-blue);
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--chrome-shadow-md);
}

.btn-play-overlay:hover {
    background: var(--chrome-blue-dark);
    transform: scale(1.1);
}

/* List View Mode - Advanced Style */
.list-view {
    display: flex !important;
    flex-direction: column;
    gap: 1.25rem;
    grid-template-columns: unset !important;
}

.list-view .song-card {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 1px 4px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.list-view .song-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--chrome-blue) 0%, #0d8bd9 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.list-view .song-card:hover {
    transform: translateX(8px);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.list-view .song-card:hover::before {
    opacity: 1;
}

.list-view .song-cover {
    padding-top: 0;
    height: 120px;
    width: 120px;
    min-width: 120px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.1),
        0 2px 6px rgba(0, 0, 0, 0.08);
}

.list-view .song-cover img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.list-view .song-card:hover .song-cover img {
    transform: scale(1.08);
}

.list-view .cover-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    font-size: 3rem;
    color: var(--chrome-text-secondary);
}

.list-view .song-overlay {
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.list-view .btn-play-overlay {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.list-view .song-info {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.list-view .song-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.list-view .song-artist {
    font-size: 1rem;
    color: var(--chrome-text-secondary);
    margin-bottom: 0.5rem;
}

.list-view .song-genre {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(59, 130, 246, 0.08) 100%);
    color: var(--chrome-blue);
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.list-view .song-genre:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.18) 0%, rgba(59, 130, 246, 0.12) 100%);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-1px);
}

.list-view .song-stats {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--chrome-text-secondary);
    margin-top: 0.25rem;
}

.list-view .song-stats span {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.list-view .song-actions {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    min-width: auto;
    margin-top: 0;
}

.list-view .btn-action {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.9rem;
    background: linear-gradient(135deg, var(--chrome-blue) 0%, #0d8bd9 100%);
    color: white;
    border: none;
    box-shadow: 
        0 4px 12px rgba(59, 130, 246, 0.3),
        0 2px 6px rgba(59, 130, 246, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.list-view .btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 16px rgba(59, 130, 246, 0.4),
        0 4px 8px rgba(59, 130, 246, 0.3);
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

@media (max-width: 768px) {
    /* Hide stats bar on mobile to prioritize music display */
    .music-stats-bar {
        display: none !important;
    }
    
    /* Compact page header on mobile */
    .page-header {
        padding: 2rem 1.5rem;
        margin: 1rem 1rem 1.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 0.95rem;
    }
    
    /* Simplify filters on mobile */
    .filter-form {
        flex-direction: column;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .filter-group label {
        display: none;
    }
    
    /* Compact view controls */
    .view-controls {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .view-mode-toggle {
        width: 100%;
    }
    
    .view-btn {
        flex: 1;
        justify-content: center;
    }
    
    .results-info {
        display: none;
    }
    
    /* Compact music filters */
    .music-filters {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .filter-select,
    .filter-search {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
    
    /* More compact songs grid */
    .songs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .song-card {
        border-radius: 12px;
        cursor: pointer;
        position: relative;
    }
    
    /* Make entire card clickable on mobile */
    .song-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
    }
    
    .song-card .song-cover {
        position: relative;
        z-index: 2;
    }
    
    .song-info {
        padding: 1rem;
    }
    
    .song-title {
        font-size: 1rem;
    }
    
    .song-artist {
        font-size: 0.875rem;
    }
    
    /* Keep stats visible, hide action buttons on mobile */
    .song-stats {
        font-size: 0.8rem;
        gap: 0.75rem;
        margin-bottom: 0;
    }
    
    .song-actions {
        display: none !important;
    }
    
    /* Add tap indicator on mobile cards */
    .song-card::before {
        content: 'Tap for details';
        position: absolute;
        bottom: 0.75rem;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(59, 130, 246, 0.95);
        color: white;
        padding: 0.375rem 0.75rem;
        border-radius: 12px;
        font-size: 0.7rem;
        font-weight: 600;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 3;
        white-space: nowrap;
    }
    
    .song-card:active::before {
        opacity: 1;
    }
    
    /* List view mobile styles */
    .list-view .song-card {
        grid-template-columns: 90px 1fr;
        gap: 1.25rem;
        padding: 1rem;
    }
    
    .list-view .song-cover {
        height: 90px;
        width: 90px;
        min-width: 90px;
    }
    
    .list-view .song-title {
        font-size: 1.1rem;
    }
    
    .list-view .song-artist {
        font-size: 0.9rem;
    }
    
    .list-view .song-stats {
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.85rem;
    }
    
    .list-view .song-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        gap: 0.5rem;
        margin-top: 0.75rem;
    }
    
    .list-view .btn-action {
        flex: 1;
        padding: 0.625rem 1rem;
        font-size: 0.85rem;
    }
}

/* ==================== SONG VIEW PAGE ==================== */
.song-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    margin: 2rem 1.5rem 3rem;
    overflow: hidden;
    border-radius: 16px;
}

.song-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(60px) brightness(0.4);
    transform: scale(1.2);
}

.song-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.8) 0%, rgba(21, 87, 176, 0.8) 100%);
}

.song-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
}

.song-hero-cover {
    position: relative;
}

.song-cover-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--chrome-shadow-lg);
}

.song-cover-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: var(--chrome-surface-variant);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.song-hero-info {
    color: white;
}

.song-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.song-badge:hover {
    background: rgba(255, 255, 255, 0.3);
}

.song-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.song-hero-artist {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.song-hero-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-icon {
    font-size: 1rem;
}

.song-hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-box {
    text-align: center;
}

.stat-box .stat-value {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-box .stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.btn-icon {
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

.btn-play-hero {
    min-width: 180px;
}

/* Song Details */
.song-details-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    margin-top: 3rem;
}

.song-details-main {
    min-width: 0;
}

.song-section {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--chrome-text);
}

.song-description-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--chrome-border);
    line-height: 1.8;
    color: var(--chrome-text);
}

.song-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.info-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--chrome-border);
}

.info-label {
    font-size: 0.875rem;
    color: var(--chrome-text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.info-value {
    font-size: 1.125rem;
    color: var(--chrome-text);
    font-weight: 500;
}

.genre-link {
    color: var(--chrome-blue);
    text-decoration: none;
}

.genre-link:hover {
    text-decoration: underline;
}

/* Sidebar */
.song-details-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.widget-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--chrome-text);
}

.widget-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.widget-action {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: var(--chrome-surface);
    border-radius: 8px;
    color: var(--chrome-text);
    text-decoration: none;
    transition: all 0.2s ease;
}

.widget-action:hover {
    background: var(--chrome-blue-light);
    color: var(--chrome-blue);
    transform: translateX(5px);
}

.action-icon {
    font-size: 1.5rem;
}

.action-text {
    font-weight: 500;
}

/* Share Buttons */
.share-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}


/* Responsive Song View */
@media (max-width: 992px) {
    .song-details-wrapper {
        grid-template-columns: 1fr;
    }
    
    .song-details-sidebar {
        position: static;
    }
    
    .song-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Mobile Song Detail Page Optimizations */
    .song-hero {
        min-height: auto;
        padding: 2rem 1rem;
        margin: 1rem;
        border-radius: 12px;
    }
    
    .song-hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .song-hero-cover {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .song-hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .song-hero-artist {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .song-hero-meta {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 1rem;
    }
    
    .song-hero-stats {
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-box {
        min-width: 100px;
    }
    
    .song-hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    /* Touch-friendly buttons on song detail page */
    .song-hero-actions .btn {
        width: 100%;
        max-width: 300px;
        min-height: 48px;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        justify-content: center;
    }
    
    .btn-large {
        min-height: 52px;
        font-size: 1.05rem;
    }
    
    /* Song info grid mobile */
    .song-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-item {
        padding: 0.875rem;
    }
    
    /* Related songs on mobile */
    .related-songs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .share-buttons {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ==================== SEARCH ==================== */
.search-form {
    display: flex;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.search-input {
    flex: 1;
    padding: 0.75rem 1.25rem;
    background-color: white;
    border: 1px solid var(--chrome-border);
    border-radius: 24px;
    color: var(--chrome-text);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--chrome-blue);
    box-shadow: 0 0 0 2px var(--chrome-blue-light);
}

.search-results h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    font-weight: 400;
    color: var(--chrome-text);
}

.results-count {
    color: var(--chrome-text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

/* ==================== PAGINATION ==================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.page-link {
    padding: 0.5rem 1rem;
    background-color: white;
    border-radius: 8px;
    color: var(--chrome-text);
    border: 1px solid var(--chrome-border);
    transition: all 0.2s ease;
}

.page-link:hover {
    background-color: var(--chrome-surface);
    border-color: var(--chrome-blue);
}

.page-link.active {
    background-color: var(--chrome-blue);
    color: white;
    border-color: var(--chrome-blue);
}

/* ==================== FOOTER ==================== */
.main-footer {
    background-color: #000000;
    border-top: 1px solid #333;
    padding: 2rem 0 1rem;
    margin-top: 3rem;
    border-radius: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-weight: 500;
    font-size: 0.875rem;
}

.footer-col p {
    color: #cccccc;
    font-size: 0.875rem;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #aaaaaa;
    font-size: 0.875rem;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    color: #888888;
    font-size: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    color: #888888;
}

/* Developer credit - Protected & at footer corner */
.wda-credit {
    margin-left: auto;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    transition: all 0.3s ease;
}

.wda-credit:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.wda-credit a {
    pointer-events: all;
    color: #888 !important;
    text-decoration: none !important;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.wda-credit a:hover {
    color: #aaa !important;
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .wda-credit {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .footer-col h4 {
        font-size: 0.8125rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-col ul li {
        margin-bottom: 0.375rem;
    }
    
    .footer-col ul li a {
        font-size: 0.8125rem;
    }
    
    .main-footer {
        padding: 1.5rem 0 1rem;
    }
}

/* ==================== AUDIO PLAYER (STICKY BOTTOM) ==================== */
.audio-player {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%) translateZ(0);
    width: calc(100% - 1.5rem);
    max-width: 1800px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 
                0 0 80px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
    will-change: transform;
}

.audio-player.hidden {
    transform: translate(-50%, 200%) translateZ(0);
}

.player-container {
    display: grid;
    grid-template-columns: 300px 1fr 150px;
    gap: 1.5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.player-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.player-cover {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.player-text {
    flex: 1;
    min-width: 0;
}

.player-title {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #ffffff;
    font-size: 0.875rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.player-artist {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.player-controls {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.btn-play-pause {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-play-pause:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.player-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.time-display {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    min-width: 40px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.progress-bar {
    position: relative;
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    transition: width 0.1s linear;
}

.progress-slider {
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    height: 16px;
    opacity: 0;
    cursor: pointer;
}

.player-volume {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-volume {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 1.25rem;
    cursor: pointer;
    border-radius: 8px;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.btn-volume:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
}

.volume-slider {
    width: 80px;
}

.player-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.btn-download,
.btn-close {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    cursor: pointer;
    border-radius: 8px;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.btn-download:hover,
.btn-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    transform: scale(1.05);
}

.hidden {
    display: none;
}

/* Range Sliders (Progress & Volume) */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
    background: #ffffff;
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

input[type="range"]::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

input[type="range"]::-moz-range-thumb:hover {
    background: #ffffff;
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

@media (max-width: 992px) {
    .player-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .player-volume {
        display: none;
    }
}

/* ==================== ADMIN STYLES ==================== */
.admin-login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.admin-login-box {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px; /* More rounded borders */
    width: 100%;
    max-width: 400px;
    box-shadow: var(--chrome-shadow-lg);
    border: 1px solid var(--chrome-border);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    color: var(--chrome-text);
}

.login-header p {
    color: var(--chrome-text-secondary);
}

.login-footer {
    text-align: center;
    margin-top: 1.5rem;
}

body.admin-body {
    background: white;
    padding: 0;
}

.admin-wrapper {
    max-width: 1800px; /* Wider for better content display */
    margin: 0 auto;
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    min-height: 100vh;
    border: none;
}

.admin-nav {
    background-color: white;
    border-bottom: 1px solid var(--chrome-border);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--chrome-shadow-sm);
    border-radius: 12px 12px 0 0; /* More rounded borders */
}

.admin-nav-brand a {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--chrome-text);
}

.admin-nav-user {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.admin-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: calc(100vh - 60px);
}

.admin-sidebar {
    background-color: white;
    border-right: 1px solid var(--chrome-border);
    padding: 2rem 0;
}

.admin-menu {
    list-style: none;
}

.admin-menu li a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    color: var(--chrome-text-secondary);
    transition: all 0.2s ease;
    border-radius: 0 24px 24px 0;
    margin-right: 1rem;
}

.admin-menu li a:hover {
    background-color: var(--chrome-surface);
    color: var(--chrome-text);
}

.admin-menu li a.active {
    background-color: var(--chrome-blue-light);
    color: var(--chrome-blue);
    font-weight: 500;
}

.menu-icon {
    font-size: 1.25rem;
}

.admin-main {
    padding: 2rem;
}

.admin-header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.admin-panel {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px; /* More rounded borders */
    margin-bottom: 1.5rem;
    border: 1px solid var(--chrome-border);
    box-shadow: var(--chrome-shadow-sm);
}

/* Toggle Switch Styles */
.toggle-label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    font-weight: 500;
}

.toggle-label input[type="checkbox"] {
    display: none;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
    background: #cbd5e0;
    border-radius: 13px;
    transition: background 0.3s ease;
    margin-right: 12px;
}

.toggle-switch::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-label input[type="checkbox"]:checked + .toggle-switch {
    background: var(--chrome-blue);
}

.toggle-label input[type="checkbox"]:checked + .toggle-switch::before {
    transform: translateX(24px);
}

/* Code Editor Styles */
.code-editor {
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 13px;
    background: #282c34;
    color: #abb2bf;
    line-height: 1.6;
    resize: vertical;
    padding: 12px;
    border-radius: 8px;
}

.code-editor:focus {
    background: #21252b;
    color: #e6e6e6;
}

/* Admin Panel Headings */
.admin-panel h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--chrome-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-panel h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--chrome-text);
}

.admin-panel h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--chrome-text);
}

.admin-panel ol, .admin-panel ul {
    margin-left: 1.5rem;
    color: var(--chrome-text-secondary);
}

.admin-panel li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.admin-panel a {
    color: var(--chrome-blue);
    text-decoration: none;
}

.admin-panel a:hover {
    text-decoration: underline;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.form-actions .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    .toggle-label {
        font-size: 0.875rem;
    }
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px; /* More rounded borders */
    display: flex;
    gap: 1rem;
    border: 1px solid var(--chrome-border);
    box-shadow: var(--chrome-shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    transform: translateZ(0);
}

.stat-card:hover {
    box-shadow: var(--chrome-shadow-md);
    transform: translateY(-4px) translateZ(0);
}

.stat-card .stat-icon {
    font-size: 2.5rem;
    color: var(--chrome-blue);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    text-align: left;
    padding: 1rem;
    border-bottom: 1px solid var(--chrome-border);
}

.admin-table th {
    background-color: var(--chrome-surface);
    font-weight: 500;
    color: var(--chrome-text);
    font-size: 0.875rem;
}

.table-thumbnail {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}

.table-thumbnail-placeholder {
    width: 50px;
    height: 50px;
    background-color: var(--chrome-surface-variant);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--chrome-text-disabled);
}

.table-actions {
    display: flex;
    gap: 0.5rem;
}

.table-responsive {
    overflow-x: auto;
}

/* ==================== FORMS ==================== */
.admin-form,
.admin-login-form {
    margin-top: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--chrome-text);
    font-size: 0.875rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    background-color: white;
    border: 1px solid var(--chrome-border);
    border-radius: 8px;
    color: var(--chrome-text);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-control:focus {
    outline: none;
    border-color: var(--chrome-blue);
    box-shadow: 0 0 0 3px var(--chrome-blue-light);
    transform: translateY(-1px);
}

textarea.form-control {
    resize: vertical;
}

.form-help {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: var(--chrome-text-disabled);
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* ==================== ALERTS ==================== */
.alert {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}


.alert-success,
.flash-message.flash-success {
    background-color: #e6f4ea;
    color: var(--chrome-green);
    border: 1px solid var(--chrome-green);
}

.alert-error,
.flash-message.flash-error {
    background-color: #fce8e6;
    color: var(--chrome-red);
    border: 1px solid var(--chrome-red);
}

.alert-warning {
    background-color: #fef7e0;
    color: #f29900;
    border: 1px solid var(--chrome-yellow);
}

/* ==================== SEO METER ==================== */
.seo-meter-panel {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e8eaed;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.seo-meter-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--chrome-text);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.seo-icon {
    font-size: 1.5rem;
}

.seo-score-bar {
    position: relative;
    width: 100%;
    height: 50px;
    background: #e8eaed;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.seo-score-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #ea4335 0%, #fbbc04 50%, #34a853 100%);
    transition: width 0.4s ease, background 0.3s ease;
    border-radius: 25px;
}

.seo-score-fill.seo-score-excellent {
    background: linear-gradient(90deg, #34a853 0%, #00c851 100%);
}

.seo-score-fill.seo-score-good {
    background: linear-gradient(90deg, #fbbc04 0%, #ffd700 100%);
}

.seo-score-fill.seo-score-fair {
    background: linear-gradient(90deg, #ff9800 0%, #fbbc04 100%);
}

.seo-score-fill.seo-score-poor {
    background: linear-gradient(90deg, #ea4335 0%, #ff6b6b 100%);
}

.seo-score-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--chrome-text);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    z-index: 2;
}

.seo-status-message {
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    background: #f8f9fa;
    color: var(--chrome-text-secondary);
}

.seo-status-message.seo-status-excellent {
    background: #e6f4ea;
    color: #1e8e3e;
}

.seo-status-message.seo-status-good {
    background: #fef7e0;
    color: #f29900;
}

.seo-status-message.seo-status-fair {
    background: #fff3e0;
    color: #e65100;
}

.seo-status-message.seo-status-poor {
    background: #fce8e6;
    color: #c5221f;
}

.seo-checklist {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.seo-check-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: white;
    border: 1px solid #e8eaed;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.seo-check-item.seo-check-pass {
    background: #f0f8f4;
    border-color: #34a853;
}

.seo-check-item.seo-check-fail {
    background: #fef4f4;
    border-color: #ea4335;
}

.seo-check-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.seo-check-label {
    flex-grow: 1;
    font-size: 0.875rem;
    color: var(--chrome-text);
    font-weight: 500;
}

.seo-check-count {
    font-size: 0.75rem;
    color: var(--chrome-text-secondary);
    background: #f8f9fa;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-weight: 600;
}

.seo-slug-preview {
    font-size: 0.75rem;
    font-family: 'Courier New', monospace;
    color: var(--chrome-blue);
    background: #e8f0fe;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    margin-top: 0.25rem;
    word-break: break-all;
}

.seo-tips {
    background: linear-gradient(135deg, #e8f0fe 0%, #f8f9fa 100%);
    border-left: 4px solid var(--chrome-blue);
    padding: 1rem 1.25rem;
    border-radius: 8px;
}

.seo-tips h4 {
    margin: 0 0 0.75rem 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--chrome-text);
}

.seo-tips ul {
    margin: 0;
    padding-left: 1.25rem;
}

.seo-tips li {
    font-size: 0.8125rem;
    color: var(--chrome-text-secondary);
    margin-bottom: 0.5rem;
}

.seo-tips li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .seo-meter-panel {
        padding: 1.5rem;
    }
    
    .seo-score-bar {
        height: 40px;
    }
    
    .seo-score-text {
        font-size: 1rem;
    }
    
    .seo-check-item {
        flex-wrap: wrap;
    }
}

/* ==================== AI ASSISTANT ==================== */
.ai-assistant-toggle {
    display: inline-flex;
    align-items: center;
}

.ai-assistant-toggle .toggle-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
}

.ai-assistant-toggle .toggle-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--chrome-text);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-input-wrapper {
    position: relative;
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.ai-input-wrapper .form-control {
    flex: 1;
}

.ai-suggest-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.ai-suggest-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.ai-suggest-btn:active {
    transform: translateY(0);
}

.ai-suggest-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.ai-suggest-btn-textarea {
    align-self: flex-start;
    margin-top: 0;
}

.ai-icon {
    font-size: 1.25rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.ai-suggestion-box {
    margin-top: 1rem;
    padding: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #667eea;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ai-suggestion-content {
    padding: 1.5rem;
}

.ai-suggestion-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e8eaed;
    color: var(--chrome-text);
    font-size: 0.9rem;
}

.ai-suggestion-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.ai-suggestion-item {
    display: block;
    width: 100%;
    padding: 1rem;
    background: white;
    border: 1px solid #e8eaed;
    border-radius: 8px;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    color: var(--chrome-text);
    line-height: 1.5;
}

.ai-suggestion-item:hover {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
    border-color: #667eea;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.ai-suggestion-item:active {
    transform: translateX(2px);
}

.ai-suggestion-close {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: transparent;
    border: 1px solid #e8eaed;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.8125rem;
    color: var(--chrome-text-secondary);
    font-weight: 500;
}

.ai-suggestion-close:hover {
    background: #f8f9fa;
    border-color: var(--chrome-red);
    color: var(--chrome-red);
}

@media (max-width: 768px) {
    .ai-suggest-btn {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
    
    .ai-icon {
        font-size: 1rem;
    }
    
    .ai-suggestion-content {
        padding: 1rem;
    }
}

/* ==================== UTILITIES ==================== */
.text-muted {
    color: var(--chrome-text-disabled);
}

.text-center {
    text-align: center;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--chrome-text-secondary);
    background: white;
    border-radius: 12px;
    border: 1px solid var(--chrome-border);
    margin: 2rem 0;
}

.empty-state h2 {
    color: var(--chrome-text);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--chrome-text-secondary);
    margin-bottom: 1.5rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .admin-container {
        grid-template-columns: 1fr;
    }
    
    .admin-sidebar {
        display: none;
    }
    
    .admin-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    body {
        padding: 0;
        padding-bottom: 120px;
    }
    
    body.admin-body {
        padding: 0;
    }
    
    .site-wrapper,
    .admin-wrapper {
        border-radius: 0;
        min-height: 100vh;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .wda-credit {
        margin-left: 0;
        padding: 0.4rem 0.75rem;
    }
    
    .wda-credit a {
        font-size: 0.7rem;
    }
    
    .main-nav,
    .admin-nav {
        border-radius: 0;
    }
    
    .main-footer {
        border-radius: 0;
    }
    
    /* Mobile Audio Player - Compact & Touch-Friendly */
    .audio-player {
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        padding: 0.5rem;
        border-left: none;
        border-right: none;
        border-bottom: none;
    }
    
    .audio-player.hidden {
        transform: translateY(100%);
    }
    
    .player-container {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 0;
    }
    
    .player-info {
        display: grid;
        grid-template-columns: 50px 1fr 90px;
        gap: 0.75rem;
        align-items: center;
    }
    
    .player-cover {
        width: 50px;
        height: 50px;
        border-radius: 6px;
    }
    
    .player-text {
        min-width: 0;
        overflow: hidden;
    }
    
    .player-title {
        font-size: 0.8rem;
    }
    
    .player-artist {
        font-size: 0.7rem;
    }
    
    .player-controls {
        order: 3;
    }
    
    .player-progress {
        gap: 0.5rem;
    }
    
    .time-display {
        font-size: 0.65rem;
        min-width: 35px;
    }
    
    .progress-bar {
        height: 3px;
    }
    
    .btn-play-pause {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .player-actions {
        display: flex;
        gap: 0.5rem;
        order: 2;
    }
    
    .btn-download,
    .btn-close,
    .btn-volume {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        padding: 0;
    }
    
    .player-volume {
        display: none;
    }
    
    /* Mobile Button Sizes - Touch-Friendly */
    .btn-action {
        min-height: 44px;
        padding: 0.75rem 1rem !important;
        font-size: 0.875rem !important;
    }
    
    .btn-play-overlay {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.2rem !important;
    }
    
    body {
        padding-bottom: 110px;
    }
    
    .hero,
    .page-header {
        margin-left: 1rem;
        margin-right: 1rem;
        border-radius: 12px;
    }
}

/* ============================================
   MODERN HERO SLIDER
   ============================================ */

.modern-hero-slider {
    position: relative;
    width: 100%;
    margin: 2rem 1.5rem;
    border-radius: 16px; /* More rounded borders */
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 700px; /* Increased height to show more of the image */
    background: #1a1a1a;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity;
}

.hero-slide-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left top; /* Shows left side and top - prevents cutting heads */
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-end; /* Push content to bottom */
    justify-content: flex-start; /* Align to left side */
    padding: 3rem 2rem; /* More padding at bottom */
}

.hero-slide-text {
    text-align: left; /* Left align text */
    color: white;
    max-width: 500px; /* Narrower to leave more image visible */
    margin-left: 5%; /* Move text 5% from left edge */
    animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slide-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-slide-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero-slide-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin: 0 0 2.5rem 0;
    opacity: 0.95;
    max-width: 100%;
}

.hero-slide-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-start; /* Left align buttons */
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    will-change: transform;
    transform: translateZ(0);
}

.hero-btn span {
    position: relative;
    z-index: 1;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.hero-btn:hover::before {
    transform: translateX(100%);
}

.hero-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-3px) translateZ(0);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.hero-btn-primary:active {
    transform: translateY(-1px) translateZ(0);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px) translateZ(0);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-btn-secondary:active {
    transform: translateY(-1px) translateZ(0);
}

/* Navigation Arrows */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateZ(0);
    z-index: 10;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    will-change: transform, opacity;
}

.modern-hero-slider:hover .hero-nav {
    opacity: 1;
}

.hero-nav:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.15) translateZ(0);
}

.hero-nav-prev {
    left: 2rem;
}

.hero-nav-next {
    right: 2rem;
}

/* Slider Indicators */
.hero-indicators {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 11; /* Above content */
    display: flex;
    gap: 0.75rem;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    will-change: transform;
    transform: translateZ(0);
}

.hero-indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2) translateZ(0);
}

.hero-indicator.active {
    background: white;
    width: 32px;
    border-radius: 6px;
    transform: translateZ(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .modern-hero-slider {
        margin: 1.5rem 1rem;
    }
    
    .hero-slider-wrapper {
        height: 600px; /* Increased for tablets */
    }
    
    .hero-slide-title {
        font-size: 2.5rem;
    }
    
    .hero-slide-description {
        font-size: 1.1rem;
    }
    
    .hero-nav {
        width: 45px;
        height: 45px;
    }
    
    .hero-nav-prev {
        left: 1rem;
    }
    
    .hero-nav-next {
        right: 1rem;
    }
}

@media (max-width: 768px) {
    .modern-hero-slider {
        margin: 1rem 0.5rem;
        border-radius: 12px;
    }
    
    .hero-slider-wrapper {
        height: 500px; /* Increased for mobile */
    }
    
    .hero-slide-content {
        padding: 2rem 1.5rem; /* Adjusted padding for mobile */
    }
    
    .hero-slide-text {
        max-width: 100%; /* Full width on mobile */
        margin-left: 0; /* Reset margin on mobile */
    }
    
    .hero-slide-title {
        font-size: 2rem;
    }
    
    .hero-slide-description {
        font-size: 1rem;
    }
    
    .hero-slide-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 2rem;
    }
    
    .hero-nav {
        width: 40px;
        height: 40px;
        opacity: 0.8;
    }
    
    .hero-nav-prev {
        left: 0.75rem;
    }
    
    .hero-nav-next {
        right: 0.75rem;
    }
    
    .hero-indicators {
        bottom: 1rem;
        gap: 0.5rem;
    }
    
    .hero-indicator {
        width: 10px;
        height: 10px;
    }
    
    .hero-indicator.active {
        width: 24px;
    }
}

@media (max-width: 480px) {
    .hero-slider-wrapper {
        height: 450px; /* Increased for small mobile */
    }
    
    .hero-slide-content {
        padding: 1.5rem 1rem; /* Compact padding for small screens */
    }
    
    .hero-slide-text {
        max-width: 100%; /* Full width on small mobile */
        margin-left: 0; /* Reset margin on small mobile */
    }
    
    .hero-slide-title {
        font-size: 1.75rem;
    }
    
    .hero-slide-description {
        font-size: 0.95rem;
    }
    
    .hero-slide-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
}

