body {
    background-color: #f9fafb;
}

.custom-container {
    padding: 5em 0;
}

.hero-section {
    padding: 8em 0;
    background: linear-gradient(135deg, #2185d0 0%, #21ba45 100%);
    color: white;
    margin-bottom: 3em;
}

.section-padding {
    padding: 4em 0;
}

.footer-custom {
    background: #1B1C1D;
    padding: 4em 0;
    margin-top: 3em;
}

.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.music-list-item {
    border-radius: 4px;
    transition: all 0.2s ease;
    padding: 1em;
}

.music-list-item:hover {
    background-color: rgba(33, 133, 208, 0.05);
    transform: translateX(5px);
}

.artist-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.album-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.album-image:hover {
    transform: scale(1.02);
}

.genre-tag {
    display: inline-block;
    margin: 0.2em;
    padding: 0.5em 1em;
    border-radius: 20px;
    background: rgba(33, 133, 208, 0.1);
    color: #2185d0;
    transition: all 0.2s ease;
}

.genre-tag:hover {
    background: rgba(33, 133, 208, 0.2);
}

.admin-sidebar {
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    overflow-y: auto;
    width: 250px;
    z-index: 999;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}

.main-content {
    margin-left: 260px;
    padding: 2em;
}

.stats-card {
    background: white;
    padding: 2em;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-3px);
}

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

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1em 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .admin-sidebar {
        position: relative;
        height: auto;
        width: 100%;
    }
    
    .main-content {
        margin-left: 0;
        padding: 1em;
    }
    
    .hero-section {
        padding: 4em 0;
    }
    
    .custom-container {
        padding: 3em 0;
    }
    
    .artist-image {
        width: 150px;
        height: 150px;
    }
}