/* css/style.css - Complete with responsive design */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B35;
    --primary-dark: #E55A2B;
    --secondary-color: #2E4057;
    --accent-color: #F7C548;
    --dark-color: #1E2B3A;
    --light-color: #F5F5F5;
    --gray-color: #E0E0E0;
    --text-color: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #FAFAFA;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header Styles */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 20px;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--dark-color);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--primary-color);
}

.logo i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Navigation - Fixed */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    white-space: nowrap;
    border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.main-nav a i {
    font-size: 0.9rem;
}

/* Dropdown - Fixed */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i.fa-chevron-down {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 5px;
}

/* Desktop hover */
@media (min-width: 993px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    padding: 10px 20px;
    white-space: nowrap;
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: var(--light-color);
    color: var(--primary-color);
    padding-left: 25px;
}

/* Header Search */
.header-search {
    flex-shrink: 0;
}

.header-search form {
    display: flex;
    align-items: center;
    background: var(--light-color);
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid var(--gray-color);
}

.header-search input {
    border: none;
    background: transparent;
    padding: 10px 15px;
    width: 220px;
    outline: none;
    font-size: 0.9rem;
}

.header-search input:focus {
    border-color: var(--primary-color);
}

.header-search button {
    background: var(--primary-color);
    border: none;
    color: var(--white);
    padding: 10px 15px;
    cursor: pointer;
    transition: var(--transition);
}

.header-search button:hover {
    background: var(--primary-dark);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
    flex-shrink: 0;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .header-content {
        flex-wrap: wrap;
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 2;
    }
    
    .main-nav {
        display: none;
        width: 100%;
        order: 4;
        margin-top: 15px;
        background: var(--white);
        border-radius: 10px;
        padding: 15px;
        box-shadow: var(--shadow-md);
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav li {
        width: 100%;
        border-bottom: 1px solid var(--gray-color);
    }
    
    .main-nav li:last-child {
        border-bottom: none;
    }
    
    .main-nav a {
        padding: 12px 0;
    }
    
    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 15px;
        margin: 0;
        background: transparent;
        display: none;
        transition: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown.active .dropdown-toggle i.fa-chevron-down {
        transform: rotate(180deg);
    }
    
    .dropdown:hover .dropdown-menu {
        display: none;
    }
    
    .dropdown.active:hover .dropdown-menu {
        display: block;
    }
    
    .header-search {
        order: 3;
        margin-left: auto;
    }
    
    .header-search input {
        width: 150px;
    }
}

@media (max-width: 576px) {
    .logo a {
        font-size: 1.2rem;
    }
    
    .header-search input {
        width: 120px;
        padding: 8px 12px;
    }
    
    .header-search button {
        padding: 8px 12px;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-color));
    color: var(--white);
    padding: 70px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--accent-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-search form {
    display: flex;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-search input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 40px 0 0 40px;
    font-size: 1rem;
    outline: none;
}

.hero-search input:focus {
    box-shadow: 0 0 0 2px var(--accent-color);
}

.hero-search button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 0 40px 40px 0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.hero-search button:hover {
    background: var(--accent-color);
    color: var(--dark-color);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    color: var(--dark-color);
    margin-bottom: 10px;
}

.section-header h2 span {
    color: var(--primary-color);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Categories Grid */
.categories-section,
.featured-section,
.popular-section {
    padding: 50px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.category-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background: var(--accent-color);
    color: var(--dark-color);
}

.category-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.category-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.category-link {
    color: var(--primary-color);
    font-weight: 600;
}

.category-link i {
    transition: transform 0.3s ease;
}

.category-card:hover .category-link i {
    transform: translateX(5px);
}

/* Songs Grid */
.songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.song-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.song-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.song-card-header {
    padding: 15px;
    background: var(--light-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.song-category {
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.song-year {
    color: var(--text-light);
    font-size: 0.85rem;
}

.song-card-body {
    padding: 20px;
}

.song-card-body h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.song-card-body h3 a {
    text-decoration: none;
    color: var(--dark-color);
    transition: var(--transition);
}

.song-card-body h3 a:hover {
    color: var(--primary-color);
}

.song-artist {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.song-language {
    color: var(--text-light);
    font-size: 0.85rem;
}

.song-language i {
    margin-right: 5px;
    color: var(--primary-color);
}

.song-card-footer {
    padding: 15px 20px;
    border-top: 1px solid var(--gray-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.song-views {
    color: var(--text-light);
    font-size: 0.85rem;
}

.song-views i {
    margin-right: 5px;
}

.btn-view {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-view i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-view:hover {
    color: var(--primary-dark);
}

.btn-view:hover i {
    transform: translateX(5px);
}

/* Popular List */
.popular-list {
    max-width: 800px;
    margin: 0 auto;
}

.popular-item {
    background: var(--white);
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.popular-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.popular-rank {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.popular-info {
    flex: 1;
    min-width: 0;
}

.popular-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.popular-info h4 a {
    text-decoration: none;
    color: var(--dark-color);
    transition: var(--transition);
}

.popular-info h4 a:hover {
    color: var(--primary-color);
}

.popular-info p {
    color: var(--text-light);
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.popular-views {
    color: var(--text-light);
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.popular-views i {
    margin-right: 5px;
    color: var(--primary-color);
}

.popular-link {
    width: 35px;
    height: 35px;
    background: var(--light-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    flex-shrink: 0;
}

.popular-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* No Data */
.no-data {
    text-align: center;
    padding: 50px 0;
    color: var(--text-light);
}

.no-data i {
    color: var(--primary-color);
    margin-bottom: 15px;
    opacity: 0.5;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), #FF8C5A);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    margin-bottom: 10px;
}

.cta-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Perbaikan Button Styles (tambahkan di bagian yang sesuai) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 40px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    gap: 8px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Footer */
.site-footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
    margin-bottom: 35px;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-about p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-newsletter p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 30px 0 0 30px;
    outline: none;
    font-size: 0.9rem;
}

.newsletter-form button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 18px;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--accent-color);
    color: var(--dark-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .popular-item {
        flex-wrap: wrap;
    }
    
    .popular-info {
        width: 100%;
        order: 2;
    }
    
    .popular-info h4,
    .popular-info p {
        white-space: normal;
    }
    
    .popular-views {
        order: 3;
    }
    
    .popular-link {
        order: 4;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-search form {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-search input,
    .hero-search button {
        border-radius: 40px;
        width: 100%;
    }
    
    .songs-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .newsletter-form {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .hero-search,
    .cta-section,
    .site-footer,
    .btn-view,
    .popular-link {
        display: none;
    }
}


/* ========================================
   SONG DETAIL PAGE - ADD THIS AT THE END
   ======================================== */

/* Song Detail Section */
.song-detail-section {
    padding: 40px 0;
    background: #f8f9fa;
}

/* Visible Breadcrumb */
.visible-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    padding: 12px 20px;
    background: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
    font-size: 0.95rem;
}

.visible-breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.visible-breadcrumb a:hover {
    color: var(--primary-color);
}

.visible-breadcrumb i {
    color: var(--text-light);
    font-size: 0.8rem;
}

.visible-breadcrumb span {
    color: var(--primary-color);
    font-weight: 600;
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Song Detail Grid */
.song-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

/* Main Content */
.song-detail-main {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    padding: 30px;
}

.song-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-color);
}

.song-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--dark-color);
    margin-bottom: 5px;
    line-height: 1.2;
}

.song-artist-large {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.song-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 15px 0;
    background: var(--light-color);
    padding: 15px 20px;
    border-radius: 12px;
}

.song-meta span {
    color: var(--text-color);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.song-meta i {
    color: var(--primary-color);
    width: 18px;
}

/* Lyrics Card */
.song-lyrics-card {
    margin: 30px 0;
}

.song-lyrics-card h2 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.song-lyrics-card h2 i {
    color: var(--primary-color);
}

.lyrics-content {
    background: var(--light-color);
    padding: 30px;
    border-radius: 16px;
    white-space: pre-wrap;
    line-height: 1.8;
    font-size: 1.05rem;
    font-family: 'Inter', monospace;
    border: 1px solid var(--gray-color);
    max-height: 600px;
    overflow-y: auto;
    color: var(--text-color);
}

/* Custom scrollbar for lyrics */
.lyrics-content::-webkit-scrollbar {
    width: 8px;
}

.lyrics-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.lyrics-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.lyrics-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Song Actions */
.song-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.song-actions .btn {
    padding: 12px 25px;
    font-size: 0.95rem;
    flex: 0 1 auto;
}

.song-actions .btn i {
    margin-right: 8px;
}

/* Sidebar */
.song-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    padding: 20px;
    transition: var(--transition);
}

.sidebar-widget:hover {
    box-shadow: var(--shadow-md);
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-widget h3 i {
    color: var(--primary-color);
}

/* Artist Widget */
.artist-widget .artist-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.artist-avatar i {
    font-size: 3.5rem;
    color: var(--primary-color);
    opacity: 0.7;
}

.artist-details h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.artist-details p {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.artist-details p i {
    color: var(--primary-color);
}

.btn-view-all {
    display: block;
    text-align: center;
    padding: 10px;
    background: var(--light-color);
    color: var(--dark-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-view-all:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-view-all i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-view-all:hover i {
    transform: translateX(5px);
}

/* Related Songs List */
.related-songs-list {
    list-style: none;
}

.related-songs-list li {
    margin-bottom: 10px;
}

.related-songs-list li:last-child {
    margin-bottom: 0;
}

.related-songs-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: var(--light-color);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

.related-songs-list a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(-5px);
}

.related-song-info {
    flex: 1;
    min-width: 0;
}

.related-song-info h4 {
    font-size: 1rem;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: inherit;
}

.related-song-info p {
    font-size: 0.8rem;
    color: var(--text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.related-songs-list a:hover .related-song-info p {
    color: rgba(255,255,255,0.9);
}

.related-songs-list a i {
    font-size: 0.8rem;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.related-songs-list a:hover i {
    transform: translateX(5px);
    opacity: 1;
}

/* Categories List */
.categories-list {
    list-style: none;
}

.categories-list li {
    margin-bottom: 8px;
}

.categories-list li:last-child {
    margin-bottom: 0;
}

.categories-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: var(--light-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

.categories-list a:hover {
    background: var(--primary-color);
    color: var(--white);
    padding-left: 20px;
}

.categories-list a i {
    width: 20px;
    color: var(--primary-color);
}

.categories-list a:hover i {
    color: var(--white);
}

/* Responsive Design for Song Detail */
@media (max-width: 992px) {
    .song-detail-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .song-detail-sidebar {
        order: 2;
    }
    
    .song-detail-main {
        order: 1;
    }
}

@media (max-width: 768px) {
    .song-detail-section {
        padding: 20px 0;
    }
    
    .song-detail-main {
        padding: 20px;
    }
    
    .song-header h1 {
        font-size: 1.8rem;
    }
    
    .song-artist-large {
        font-size: 1.1rem;
    }
    
    .song-meta {
        gap: 12px;
        padding: 12px;
    }
    
    .song-meta span {
        font-size: 0.85rem;
    }
    
    .lyrics-content {
        padding: 20px;
        font-size: 0.95rem;
        max-height: 500px;
    }
    
    .song-actions {
        flex-direction: column;
    }
    
    .song-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .visible-breadcrumb span {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .song-detail-main {
        padding: 15px;
    }
    
    .song-header h1 {
        font-size: 1.5rem;
    }
    
    .song-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .lyrics-content {
        padding: 15px;
        font-size: 0.9rem;
        max-height: 400px;
    }
    
    .visible-breadcrumb {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .visible-breadcrumb span {
        max-width: 150px;
    }
    
    .sidebar-widget {
        padding: 15px;
    }
    
    .artist-avatar i {
        font-size: 2.5rem;
    }
    
    .artist-details h4 {
        font-size: 1rem;
    }
}

/* Print styles for lyrics */
@media print {
    .site-header,
    .visible-breadcrumb,
    .song-actions,
    .song-detail-sidebar,
    .site-footer {
        display: none;
    }
    
    .song-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .song-detail-main {
        box-shadow: none;
        padding: 0;
    }
    
    .lyrics-content {
        background: white;
        border: none;
        max-height: none;
        overflow: visible;
    }
}


/* ========================================
   CATEGORY PAGE STYLES - ADD THIS AT THE END
   ======================================== */

/* Category Hero Section */
.category-hero-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-color));
    color: var(--white);
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.category-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path d="M20 20 L80 20 L80 80 L20 80 Z" fill="none" stroke="white" stroke-width="2"/><circle cx="50" cy="50" r="20" fill="none" stroke="white" stroke-width="2"/></svg>') repeat;
    opacity: 0.1;
}

.category-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.category-icon-large {
    width: 90px;
    height: 90px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.8rem;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
    border: 4px solid rgba(255, 255, 255, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 15px 35px rgba(255, 107, 53, 0.6); }
    100% { transform: scale(1); box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4); }
}

.category-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 15px;
    line-height: 1.2;
}

.category-hero-content h1 span {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.category-hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px;
}

.category-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.category-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.stat-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 10px 20px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-badge i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* Category Songs Section */
.category-songs-section {
    padding: 40px 0 60px;
    background: var(--light-color);
}

/* Category Filter Bar */
.category-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
    gap: 15px;
}

.filter-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.filter-left h2 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin: 0;
}

.songs-count {
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
}

.filter-right {
    display: flex;
    align-items: center;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-group label {
    color: var(--text-light);
    font-size: 0.95rem;
}

.filter-select {
    padding: 8px 15px;
    border: 2px solid var(--gray-color);
    border-radius: 30px;
    font-size: 0.95rem;
    color: var(--dark-color);
    background: var(--white);
    cursor: pointer;
    outline: none;
    transition: var(--transition);
    min-width: 150px;
}

.filter-select:hover {
    border-color: var(--primary-color);
}

.filter-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Category Songs Grid */
.category-songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* Category Song Card */
.category-song-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

.category-song-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-header {
    padding: 15px 20px;
    background: var(--light-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--gray-color);
}

.song-year-badge {
    background: var(--secondary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.song-popular-badge {
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.song-popular-badge i {
    color: #ff4444;
    font-size: 0.8rem;
}

.card-body {
    padding: 20px;
    flex: 1;
}

.card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.card-body h3 a {
    text-decoration: none;
    color: var(--dark-color);
    transition: var(--transition);
    display: inline-block;
}

.card-body h3 a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.song-artist-name {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.song-artist-name i {
    font-size: 0.9rem;
}

.song-language {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.song-language i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.card-footer {
    padding: 15px 20px;
    border-top: 1px solid var(--gray-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
}

.song-views {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.song-views i {
    color: var(--primary-color);
}

.btn-view-song {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-view-song i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-view-song:hover {
    color: var(--primary-dark);
}

.btn-view-song:hover i {
    transform: translateX(5px);
}

/* No Songs Found */
.no-songs-found {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    margin: 30px 0;
}

.no-songs-icon {
    width: 100px;
    height: 100px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.5;
}

.no-songs-found h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.no-songs-found p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.no-songs-found .btn {
    display: inline-block;
    padding: 12px 30px;
}

/* Related Categories Section */
.related-categories-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px dashed var(--gray-color);
}

.related-categories-section h3 {
    text-align: center;
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.related-categories-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.mini-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.mini-category-card {
    background: var(--white);
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.mini-category-card:hover {
    transform: translateY(-5px);
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.mini-category-card i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.mini-category-card:hover i {
    color: var(--white);
    transform: scale(1.1);
}

.mini-category-card span {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Responsive Design for Category Page */
@media (max-width: 992px) {
    .category-songs-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .category-hero-section {
        padding: 40px 0;
    }
    
    .category-icon-large {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
    }
    
    .category-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-left {
        justify-content: space-between;
    }
    
    .filter-right {
        width: 100%;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .filter-select {
        width: 100%;
    }
    
    .category-stats {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .stat-badge {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .mini-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .category-songs-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .filter-left h2 {
        font-size: 1.2rem;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .card-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .btn-view-song {
        width: 100%;
        justify-content: center;
        padding: 8px;
        background: var(--light-color);
        border-radius: 30px;
    }
    
    .btn-view-song:hover {
        background: var(--primary-color);
        color: var(--white);
    }
    
    .mini-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .no-songs-found h3 {
        font-size: 1.5rem;
    }
    
    .no-songs-found p {
        font-size: 1rem;
    }
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-song-card {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.category-song-card:nth-child(1) { animation-delay: 0.1s; }
.category-song-card:nth-child(2) { animation-delay: 0.15s; }
.category-song-card:nth-child(3) { animation-delay: 0.2s; }
.category-song-card:nth-child(4) { animation-delay: 0.25s; }
.category-song-card:nth-child(5) { animation-delay: 0.3s; }
.category-song-card:nth-child(6) { animation-delay: 0.35s; }
.category-song-card:nth-child(7) { animation-delay: 0.4s; }
.category-song-card:nth-child(8) { animation-delay: 0.45s; }
.category-song-card:nth-child(n+9) { animation-delay: 0.5s; }


/* ========================================
   SONGS PAGE STYLES - ADD THIS AT THE END
   ======================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), #FF8C5A);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 10px;
    line-height: 1.2;
}

.page-header h1 span {
    color: var(--dark-color);
    background: rgba(255, 255, 255, 0.2);
    padding: 0 10px;
    border-radius: 30px;
    display: inline-block;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 20px;
}

.page-header p strong {
    color: var(--dark-color);
    font-weight: 700;
}

/* Songs Listing Section */
.songs-listing-section {
    padding: 40px 0 60px;
    background: var(--light-color);
}

/* Songs Filter Bar */
.songs-filter-bar {
    background: var(--white);
    border-radius: 20px;
    padding: 20px 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.filter-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.filter-left h2 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-left h2 i {
    color: var(--primary-color);
}

.songs-count-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.filter-right {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--light-color);
    padding: 5px 10px;
    border-radius: 40px;
    border: 1px solid var(--gray-color);
}

.filter-group label {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.filter-group label i {
    color: var(--primary-color);
}

.filter-select {
    padding: 8px 12px;
    border: none;
    background: transparent;
    font-size: 0.9rem;
    color: var(--dark-color);
    cursor: pointer;
    outline: none;
    min-width: 130px;
    border-left: 1px solid var(--gray-color);
}

.filter-select:hover {
    color: var(--primary-color);
}

/* Active Filters */
.active-filters {
    background: var(--white);
    border-radius: 15px;
    padding: 15px 20px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.active-filters-label {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1;
}

.filter-tag {
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-tag i {
    cursor: pointer;
    font-size: 0.8rem;
    opacity: 0.8;
    transition: var(--transition);
}

.filter-tag i:hover {
    opacity: 1;
    transform: scale(1.1);
}

.clear-filters {
    background: transparent;
    border: 1px solid var(--gray-color);
    color: var(--text-light);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.clear-filters:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* Songs Grid Container */
.songs-grid-container {
    margin-bottom: 30px;
}

.songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* Song Grid Item */
.song-grid-item {
    transition: var(--transition);
}

.song-item-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.song-item-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.song-item-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.song-item-card:hover::after {
    transform: scaleX(1);
}

.song-item-header {
    padding: 15px;
    background: var(--light-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--gray-color);
}

.trending-badge {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    animation: pulse 2s infinite;
}

.trending-badge i {
    font-size: 0.7rem;
}

.song-item-category {
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
}

.song-item-body {
    padding: 20px;
    flex: 1;
}

.song-item-body h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.song-item-body h3 a {
    text-decoration: none;
    color: var(--dark-color);
    transition: var(--transition);
    display: inline-block;
}

.song-item-body h3 a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.song-item-artist {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
}

.song-item-artist i {
    font-size: 0.85rem;
}

.song-item-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.song-item-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.song-item-meta i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.song-item-footer {
    padding: 15px 20px;
    border-top: 1px solid var(--gray-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
}

.song-item-views {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.song-item-views i {
    color: var(--primary-color);
}

/* Pagination Container */
.pagination-container {
    margin-top: 40px;
    text-align: center;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.pagination-link {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--gray-color);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    padding: 0 8px;
}

.pagination-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.pagination-link.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.pagination-link.prev,
.pagination-link.next {
    background: var(--white);
    color: var(--primary-color);
}

.pagination-link.prev:hover,
.pagination-link.next:hover {
    background: var(--primary-color);
    color: var(--white);
}

.pagination-dots {
    color: var(--text-light);
    font-weight: 500;
}

.pagination-info {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* No Songs Found */
.no-songs-found {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    margin: 30px 0;
}

.no-songs-icon {
    width: 100px;
    height: 100px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.5;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.no-songs-found h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.no-songs-found p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Responsive Design for Songs Page */
@media (max-width: 1200px) {
    .songs-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 992px) {
    .songs-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-left {
        justify-content: space-between;
    }
    
    .filter-right {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .filter-select {
        width: 100%;
        min-width: auto;
    }
    
    .songs-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 30px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .songs-listing-section {
        padding: 30px 0;
    }
    
    .filter-left {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .songs-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .song-item-body h3 {
        font-size: 1rem;
    }
    
    .song-item-artist {
        font-size: 0.85rem;
    }
    
    .song-item-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .song-item-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .btn-view-song {
        width: 100%;
        justify-content: center;
        padding: 8px;
        background: var(--light-color);
        border-radius: 30px;
    }
    
    .btn-view-song:hover {
        background: var(--primary-color);
        color: var(--white);
    }
    
    .pagination {
        gap: 5px;
    }
    
    .pagination-link {
        min-width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .songs-grid {
        grid-template-columns: 1fr;
    }
    
    .song-item-card {
        max-width: 100%;
    }
    
    .song-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .pagination {
        gap: 3px;
    }
    
    .pagination-link {
        min-width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .pagination-info {
        font-size: 0.8rem;
    }
    
    .no-songs-found h3 {
        font-size: 1.5rem;
    }
    
    .no-songs-found p {
        font-size: 0.95rem;
    }
}

/* Loading Animation */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Hover Effects */
.song-item-card {
    position: relative;
    overflow: hidden;
}

.song-item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.song-item-card:hover::before {
    left: 100%;
}

/* Tooltip */
[data-tooltip] {
    position: relative;
    cursor: pointer;
}

[data-tooltip]:before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
    background: var(--dark-color);
    color: var(--white);
    font-size: 0.75rem;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 10;
}

[data-tooltip]:hover:before {
    opacity: 1;
    visibility: visible;
    bottom: 120%;
}

/* Print Styles */
@media print {
    .songs-filter-bar,
    .pagination-container,
    .btn-view-song,
    .page-header::before {
        display: none;
    }
    
    .song-item-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}