* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6B0504;
    /* Your Brand Color */
    --primary-light: #8B1918;
    --primary-dark: #4A0303;
    --secondary-color: #8B1918;
    --dark-color: #0f0f0f;
    --light-color: #f9f9f9;
    --text-color: #1a1a1a;
    --text-secondary: #6b7280;
    --border-color: #e5e7eb;
    --body-bg: #F9F9F9;
    --card-bg: #ffffff;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --gradient-primary: linear-gradient(135deg, #6B0504 0%, #8B1918 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--body-bg);
    position: relative;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: padding-top 0.3s ease;
}

/* Add padding to body when header is fixed to prevent content jump */
body.header-fixed {
    padding-top: 0;
}

.container {
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
}

/* Site Header */
.site-header {
    background: white;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

/* Header when scrolled - becomes fixed (mobile only) */
@media (max-width: 768px) {
    .site-header.header-scrolled {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
}

/* Top Bar */
.top-bar {
    background: var(--primary-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease, padding 0.3s ease;
    overflow: hidden;
    opacity: 1;
}

/* Hide top bar when scrolled */
.site-header.header-scrolled .top-bar,
.top-bar.hidden {
    max-height: 0 !important;
    opacity: 0 !important;
    margin: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    border: none !important;
}

.top-bar .container {
    transition: padding 0.3s ease;
}

.top-bar.hidden .container,
.site-header.header-scrolled .top-bar .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.top-bar .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5rem 20px;
}

.top-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.top-nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.25rem 0;
}

/* Main Bar */
.main-bar {
    background: white;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: padding 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1001;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Main Bar when fixed on scroll */
.main-bar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Adjust main bar padding when header is scrolled (mobile only) */
@media (max-width: 768px) {
    .site-header.header-scrolled .main-bar {
        padding: 0.875rem 0;
    }
}

.main-bar .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-bar-content {
    display: grid;
    grid-template-columns: auto 2fr auto;
    gap: 2rem;
    align-items: center;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
}

.logo-link {
    display: block;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Search Section */
.search-section {
    display: flex;
    justify-content: center;
    width: 100%;
    flex: 1;
}

.search-form {
    display: flex;
    width: 100%;
    max-width: 75%;
    position: relative;
    margin: 0 auto;
}

.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    padding-right: 3rem;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 0.9375rem;
    font-family: 'Lexend Deca', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: var(--primary-color);
}

.search-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: var(--secondary-color);
}

/* Social Section */
.social-section {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-color);
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.125rem;
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Mobile Menu Buttons */
.mobile-menu-buttons {
    display: none;
    gap: 0.75rem;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
}

.mobile-search-btn,
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-color);
    color: var(--primary-color);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.125rem;
}

.mobile-search-btn:hover,
.mobile-menu-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: flex;
    opacity: 1;
}

.mobile-menu-content {
    width: 100%;
    max-width: 400px;
    background: white;
    height: 100%;
    padding: 2rem;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    transition: background 0.3s ease;
}

.mobile-menu-close:hover {
    background: var(--secondary-color);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 3rem;
}

.mobile-nav-link {
    padding: 1rem;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary-color);
    padding-left: 1.5rem;
}

.mobile-social-section {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.mobile-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--light-color);
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.25rem;
}

.mobile-social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-overlay.active {
    display: block;
    opacity: 1;
}

.search-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 20px;
    background: white;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid var(--border-color);
}

.search-overlay.active .search-overlay-content {
    transform: translateY(0);
}

.search-overlay-form {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    align-items: center;
    gap: 1rem;
}

.search-overlay-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.search-overlay-icon {
    position: absolute;
    left: 1.5rem;
    color: var(--text-secondary);
    font-size: 1rem;
    pointer-events: none;
    z-index: 10;
    transition: color 0.3s ease;
}

.search-overlay-input {
    width: 100%;
    padding: 1rem 1.5rem;
    padding-left: 3.5rem;
    padding-right: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    background: var(--light-color);
    color: var(--text-color);
    font-size: 1.125rem;
    font-family: 'Lexend Deca', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

.search-overlay-input::placeholder {
    color: var(--text-secondary);
}

.search-overlay-input:focus {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(107, 5, 4, 0.1);
}

.search-overlay-input:focus::placeholder {
    color: var(--text-secondary);
}

.search-overlay-input:focus~.search-overlay-icon,
.search-overlay-input-wrapper:has(.search-overlay-input:focus) .search-overlay-icon {
    color: var(--primary-color);
}

.search-overlay-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-color);
    color: var(--text-color);
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.search-overlay-close:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

/* Hide search overlay on desktop */
@media (min-width: 769px) {
    .search-overlay {
        display: none !important;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #6B0504 0%, #8B1918 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: white;
}

.section-title {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 12px;
    background: var(--light-color);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-icon i {
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    text-align: center;
    background: white;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    margin: 0.5rem 0;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .top-bar {
        display: none;
    }

    .main-bar-content {
        grid-template-columns: auto 2fr auto;
        gap: 1.5rem;
    }

    .search-section {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .top-nav {
        gap: 1rem;
        font-size: 0.8125rem;
    }

    .top-nav-link {
        font-size: 0.75rem;
    }

    .main-bar-content {
        grid-template-columns: auto 1fr auto;
        gap: 1rem;
    }

    .logo-section {
        justify-content: flex-start;
    }

    .search-section {
        display: none;
    }

    .social-section {
        display: none;
    }

    .mobile-menu-buttons {
        display: flex;
        justify-content: flex-end;
        margin-left: auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .top-nav {
        gap: 0.75rem;
    }

    .top-nav-link {
        font-size: 0.6875rem;
        padding: 0.125rem 0;
    }

    .logo-img {
        height: 40px;
    }

    .search-input {
        font-size: 0.875rem;
        padding: 0.625rem 0.875rem;
        padding-right: 2.5rem;
    }

    .search-btn {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Font Awesome Icon Styling */
.feature-icon i,
.service-icon i,
.method-icon i {
    color: var(--primary-color);
}

.stat-number i {
    font-size: 3rem;
}

.placeholder-icon i {
    color: var(--primary-color);
}

.value-card h3 i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.service-features li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Content Wrapper */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    align-items: start;
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 1;
}

/* Sidebar */
.sidebar-content {
    position: relative;
    margin-top: 1.5rem;
    align-self: start;
}

.sidebar-widget {
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin-bottom: 1.5rem;
}

/* Follow Us Widget */
.follow-us-widget {
    margin-bottom: 2rem;
}

.follow-us-header {
    background: transparent;
    padding: 0.75rem 0;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.follow-us-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.social-stat-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.social-stat-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.25rem;
}

.social-stat-icon.tiktok {
    background: #000000;
    color: white;
}

.social-stat-icon.youtube {
    background: #ff0000;
    color: white;
}

.social-stat-icon.facebook {
    background: #1877f2;
    color: white;
}

.social-stat-number {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.social-stat-number.coming-soon {
    font-size: 0.75rem;
}

.social-stat-label {
    font-size: 0.75rem;
    color: var(--text-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Song of the Day Widget */
.song-of-day-widget {
    margin-top: 2rem;
}

.widget-header {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
}

.song-of-day-card {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.song-of-day-card:hover {
    transform: translateY(-3px);
}

.song-of-day-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* 1:1 Aspect Ratio */
    overflow: hidden;
    background: var(--light-color);
    border: 3px solid var(--primary-color);
}

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

.song-of-day-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 3rem;
}

.song-of-day-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

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

.play-btn-small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.play-btn-small:hover {
    transform: scale(1.1);
    background: var(--secondary-color);
}

.song-of-day-info {
    padding: 1rem 0;
}

.song-of-day-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0 0 0.75rem 0;
    word-wrap: break-word;
    line-height: 1.4;
}

.song-of-day-stats {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.song-of-day-stat-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    padding: 0.375rem 0.625rem;
    border-radius: 6px;
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
}

.song-of-day-stat-item i {
    color: white;
    font-size: 0.75rem;
}

.song-of-day-stat-item span {
    color: white;
    font-weight: 600;
    font-size: 0.75rem;
}

.empty-state-small {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--text-color);
}

.empty-state-small p {
    margin: 0;
    font-size: 0.875rem;
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 1rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.sidebar-songs-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-song-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.sidebar-song-item:hover {
    background: var(--light-color);
}

.sidebar-rank {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 30px;
    text-align: center;
}

.sidebar-song-info {
    flex: 1;
    min-width: 0;
}

.sidebar-song-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark-color);
    margin: 0 0 0.25rem 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sidebar-song-artist {
    font-size: 0.75rem;
    color: var(--text-color);
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Discover Section */
.discover-section {
    padding: 2.5rem 0;
    position: relative;
    z-index: 1;
}

.section-header {
    margin-bottom: 2rem;
    text-align: left;
    width: 100%;
}

.section-header .section-title {
    text-align: left;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 0.5rem 0;
    text-align: left !important;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 0.75rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Songs Grid */
.songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.song-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: inherit;
    position: relative;
}

.song-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.song-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* 1:1 Aspect Ratio */
    overflow: hidden;
    background: var(--light-color);
    border-radius: 12px 12px 0 0;
}

/* Song Stats Box */
.song-stats {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    padding: 0.375rem 0.625rem;
    border-radius: 6px;
    color: white;
    transition: background 0.3s ease;
    font-size: 0.75rem;
    font-weight: 500;
}

.stat-item:hover {
    background: rgba(0, 0, 0, 0.85);
}

.stat-item i {
    font-size: 0.75rem;
    color: white;
}

.stat-item span {
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

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

.song-card:hover .song-image img {
    transform: scale(1.1);
}

.song-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 3rem;
    border: 3px solid var(--primary-color);
    box-sizing: border-box;
}

.song-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    border-radius: 12px 12px 0 0;
}

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

.play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.play-btn:hover {
    transform: scale(1.15);
    background: var(--primary-color);
    color: white;
}

.song-info {
    padding: 1rem;
    background: var(--card-bg);
}

.song-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    line-height: 1.5;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.song-card:hover .song-title {
    color: var(--primary-color);
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-color);
}

.empty-state i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state p {
    font-size: 1.125rem;
    margin: 0;
}

/* Responsive for Songs Grid */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }

    .songs-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 1rem;
    }
}

/* Top Songs Section */
.top-songs-section {
    padding: 1.5rem 0;
    position: relative;
    z-index: 1;
}

.top-songs-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.top-song-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: transparent;
    border-bottom: 1px dashed #d1d5db;
    transition: transform 0.2s ease;
}

.top-song-item:last-child {
    border-bottom: none;
}

.top-song-item:hover {
    transform: translateX(5px);
}

.song-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
}

.rank-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.song-image-small {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--primary-color);
}

.song-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.song-placeholder-small {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 1.5rem;
}

.song-details {
    flex: 1;
    min-width: 0;
}

.song-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0 0 0.25rem 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.song-artist-name {
    font-size: 0.875rem;
    color: var(--text-color);
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.song-stats-small {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.stat-small {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: var(--text-color);
}

.stat-small i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

.stat-small span {
    font-weight: 500;
}

@media (max-width: 768px) {
    .top-song-item {
        padding: 0.625rem;
        gap: 0.75rem;
    }

    .song-rank {
        min-width: 35px;
    }

    .rank-number {
        font-size: 1.25rem;
    }

    .song-image-small {
        width: 50px;
        height: 50px;
    }

    .song-name {
        font-size: 0.9375rem;
    }

    .song-artist-name {
        font-size: 0.8125rem;
    }

    .song-stats-small {
        gap: 0.75rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .stat-small {
        font-size: 0.8125rem;
    }
}

/* Trending Artists Section */
.trending-artists-section {
    padding: 2.5rem 0;
    position: relative;
    z-index: 1;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.artist-card {
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
    color: inherit;
    padding: 0;
}

.artist-card:hover {
    transform: translateY(-4px);
}

.artist-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* 1:1 Aspect Ratio */
    overflow: hidden;
    background: transparent;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.artist-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

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

.artist-info {
    padding: 0;
}

.artist-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.artist-card:hover .artist-name {
    color: var(--primary-color);
}

.artist-songs {
    display: none;
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.25rem;
    }

    .songs-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 0.75rem;
    }

    .song-info {
        padding: 0.625rem;
    }

    .song-title {
        font-size: 0.875rem;
    }

    .song-artist {
        font-size: 0.75rem;
    }

    .top-song-item {
        flex-wrap: wrap;
    }

    .song-details {
        flex-basis: 100%;
        order: 3;
    }

    .song-stats-small {
        flex-direction: row;
        order: 4;
    }

    .artists-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 0.75rem;
    }
}

/* Latest Videos Section */
.latest-videos-section {
    padding: 1.5rem 0;
    position: relative;
    z-index: 1;
}

/* Latest Videos Full Width */
.latest-videos-fullwidth {
    padding: 2.5rem 0;
    margin-top: 3rem;
    width: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(107, 5, 4, 0.02) 100%);
}

.latest-videos-fullwidth .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.video-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    margin-bottom: 2rem;
    text-decoration: none;
    display: block;
    color: inherit;
    box-shadow: var(--shadow-md);
}

.video-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.video-image {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio for videos */
    overflow: hidden;
    background: #000;
    border-radius: 12px 12px 0 0;
    margin-bottom: 0;
}

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

.video-card:hover .video-image img {
    transform: scale(1.08);
}

.video-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 3rem;
}

/* Video Stats Box */
.video-stats-box {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    z-index: 5;
    display: flex;
    flex-direction: row;
    gap: 0.25rem;
}

.video-stats-box .stat-item {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    border-radius: 12px 12px 0 0;
}

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

.video-info {
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 0 0 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.video-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    line-height: 1.5;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 3em;
    transition: color 0.3s ease;
}

.video-card:hover .video-title {
    color: var(--primary-color);
}

.video-artist {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .videos-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.75rem;
    }
}

/* Footer */
.site-footer {
    background: linear-gradient(180deg, var(--dark-color) 0%, #1a1a1a 100%);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

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

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.125rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.footer-social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin: 0;
}

.footer-contact i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.site-footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .site-footer {
        padding: 2rem 0 1rem;
    }
}

/* Responsive Sidebar */
@media (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sidebar-content {
        position: static;
        max-height: none;
    }

    .sidebar-widget {
        margin-bottom: 1rem;
    }
}

/* Ads CSS */
.ad-container {
    display: block;
    margin: 0 auto 1.5rem;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
}

.ad-container:empty {
    display: none !important;
    margin: 0 !important;
}

.ad-container .ad-link {
    display: block;
    text-decoration: none;
}

.ad-container .ad-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Location-specific ad styles */
.ad-homepage-top {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.ad-homepage-middle {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 3rem 0;
}

.ad-sidebar {
    padding: 1rem;
    background: #fcfcfc;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.ad-song-page,
.ad-video-page {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.ad-footer {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 2rem;
}

/* Responsive Ads */
@media (max-width: 768px) {

    .ad-homepage-top,
    .ad-homepage-middle,
    .ad-sidebar,
    .ad-song-page,
    .ad-video-page,
    .ad-footer {
        padding: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .ad-container {
        margin-bottom: 1rem;
    }
}