body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    min-height: 100vh;
    background: linear-gradient(to bottom, #1a1a1a, #121212);
}

.sidebar {
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    padding-bottom: 100px;
    overflow-y: auto;
    background-color: #000000;
}

.main-content {
    margin-left: 16.66667%;
    padding-bottom: 100px;
}

.nav-link {
    color: #b3b3b3;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link.active {
    background-color: #282828 !important;
}

.player-bar {
    background: #181818 !important;
    border-top: 1px solid #282828;
    padding: 16px;
    z-index: 1000;
}

.progress {
    background-color: #535353;
    cursor: pointer;
}

.progress-bar {
    background-color: #1db954;
}

.btn-primary {
    background-color: #1db954;
    border-color: #1db954;
}

.btn-primary:hover {
    background-color: #1ed760;
    border-color: #1ed760;
}

.song-card {
    background: #181818;
    border-radius: 8px;
    padding: 16px;
    transition: background-color 0.3s ease;
}

.song-card:hover {
    background: #282828;
}

.playlist-card {
    background: #181818;
    border-radius: 8px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.playlist-card:hover {
    background: #282828;
}

.playlist-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.volume-controls .form-range {
    height: 4px;
}

.form-range::-webkit-slider-thumb {
    background: #1db954;
}

.form-range::-moz-range-thumb {
    background: #1db954;
}

.player-controls .btn-link {
    color: #b3b3b3;
    transition: color 0.2s ease;
}

.player-controls .btn-link:hover {
    color: #ffffff;
}

.player-controls .btn-lg {
    font-size: 2rem;
}

@media (max-width: 768px) {
    .sidebar {
        position: static;
        height: auto;
    }
    
    .main-content {
        margin-left: 0;
    }
}

/* Estilos para cartões de artista */
.artist-card {
    transition: transform 0.2s ease-in-out;
}

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

.artist-card .card-img-top {
    transition: transform 0.2s ease-in-out;
}

.artist-card:hover .card-img-top {
    transform: scale(1.05);
}

.artist-stats {
    opacity: 0.8;
    font-size: 0.9rem;
}

.artist-card .card-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Ajustes para imagens de artista */
.artist-image {
    aspect-ratio: 1;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.2s ease-in-out;
}

.artist-card:hover .artist-image {
    border-color: rgba(255, 255, 255, 0.3);
}

/* Ajustes para contadores */
.stat-counter {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
} 