/* Ajuste do container principal */
body {
    overflow-y: auto !important;
    min-height: 100vh;
}

main {
    padding: 20px 0;
    overflow-y: auto;
}

.band-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: white;
}

.band-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.band-header h1 {
    font-size: min(3em, 6vh);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInDown 1s ease;
}

.music-notes {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.music-notes i {
    font-size: 24px;
    color: var(--primary-color);
    animation: bounce 1s infinite;
}

.music-notes i:nth-child(2) {
    animation-delay: 0.2s;
}

.music-notes i:nth-child(3) {
    animation-delay: 0.4s;
}

.band-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    animation: fadeIn 1s ease;
}

.band-section {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.band-section:hover {
    transform: translateY(-5px);
}

.band-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: min(2em, 4vh);
    position: relative;
}

.band-section h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
}

.band-section p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.music-styles {
    list-style: none;
    padding: 0;
}

.music-styles li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.music-styles li:hover {
    transform: translateX(10px);
}

.music-styles i {
    color: var(--accent-color);
    font-size: 20px;
}

.band-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.member {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.member:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

.member i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.member p {
    margin: 0;
    font-size: min(1.1em, 2.2vh);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Ajustes de responsividade */
@media (max-width: 768px) {
    main {
        padding: 10px 0;
    }

    .playlist-container {
        margin: 0 auto 15px auto;
        padding: 15px;
    }

    .band-container {
        padding: 15px;
    }

    .band-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .band-section {
        margin-bottom: 15px;
    }

    .band-header h1 {
        font-size: min(2em, 4vh);
    }

    .band-section {
        padding: 20px;
    }

    .band-members {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .member i {
        font-size: 30px;
    }
}

/* Estilos para o container da playlist */
.playlist-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    margin: 0 auto 20px auto;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Cabeçalho da playlist */
.playlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.playlist-header h2 {
    color: var(--primary-color);
    font-size: 1.5em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.playlist-header h2 i {
    font-size: 1.2em;
}

/* Controles da playlist */
.playlist-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.control-btn {
    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;
    transition: all 0.3s ease;
}

.control-btn:hover {
    transform: scale(1.1);
    background: var(--accent-color);
}

.control-btn:active {
    transform: scale(0.95);
}

/* Volume control */
.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
}

#volumeSlider {
    width: 100px;
    height: 4px;
    -webkit-appearance: none;
    background: var(--primary-color);
    border-radius: 2px;
    outline: none;
}

#volumeSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid var(--primary-color);
}

/* Now Playing Section */
.now-playing {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.now-playing .track-info {
    text-align: center;
    color: var(--primary-color);
    font-weight: bold;
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 10px 0;
    position: relative;
    cursor: pointer;
}

#progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--primary-color);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
}

.time-info {
    display: flex;
    justify-content: space-between;
    color: var(--text-color);
    font-size: 0.8em;
}

/* Tracks List */
.playlist-tracks {
    max-height: 250px;
    overflow-y: auto;
    padding-right: 10px;
    margin-bottom: 10px;
}

.playlist-tracks::-webkit-scrollbar {
    width: 6px;
}

.playlist-tracks::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.playlist-tracks::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.track {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.track:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.track.active {
    background: var(--primary-color);
    color: white;
}

.track-number {
    width: 30px;
    text-align: center;
    font-weight: bold;
    color: var(--primary-color);
}

.track.active .track-number {
    color: white;
}

.track-info {
    flex: 1;
    margin: 0 15px;
}

.track-name {
    font-weight: bold;
    margin-bottom: 3px;
}

.track-artist {
    font-size: 0.9em;
    opacity: 0.8;
}

.track-duration {
    color: var(--text-color);
    font-size: 0.9em;
}

.track.active .track-duration {
    color: white;
}

/* Animações */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.track.active {
    animation: pulse 2s infinite;
}

/* Tema específico para o player */
[data-theme="pink"] .control-btn {
    background: linear-gradient(135deg, #FF69B4, #FF1493);
}

[data-theme="purple"] .control-btn {
    background: linear-gradient(135deg, #9370DB, #663399);
}

[data-theme="turquoise"] .control-btn {
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
}

/* Ajuste do footer para ficar sempre visível */
footer {
    position: relative;
    bottom: 0;
    width: 100%;
    z-index: 10;
} 