body {
    font-family: 'Arial', sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
}

.container {
    background: #111111;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px #ffbf00;
    border: 1px solid #ffbf00;
    text-align: center;
}

.logo {
    max-width: 300px;
    margin: 0 auto 20px auto;
    display: block;
}

h1 {
    color: #ffbf00;
    font-size: 24px;
    margin-bottom: 30px;
    text-shadow: 0 0 10px #ffbf00;
}

.auth-section {
    text-align: center;
    margin-bottom: 30px;
}

.auth-btn {
    background: #ffbf00;
    color: black;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
}

.auth-btn:hover {
    background: #ffcc33;
    box-shadow: 0 0 15px #ffbf00;
    transform: scale(1.05);
}

.search-section {
    margin-bottom: 30px;
}

.search-input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ffbf00;
    border-radius: 5px;
    box-sizing: border-box;
    background: #222222;
    color: white;
}

.search-input:focus {
    outline: none;
    box-shadow: 0 0 10px #ffbf00;
}

.results {
    margin-top: 20px;
}

.track {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #333333;
    margin-bottom: 10px;
    border-radius: 5px;
    transition: all 0.3s;
    background: #1a1a1a;
}

.track:hover {
    background: #222222;
    border-color: #ffbf00;
}

.track img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 5px;
}

.track-info {
    flex: 1;
    text-align: left;
}

.track-name {
    font-weight: bold;
    margin-bottom: 5px;
    color: #ffffff;
}

.track-artist {
    color: #ffbf00;
    font-size: 14px;
}

.add-btn {
    background: #ffbf00;
    color: black;
    border: none;
    padding: 8px 15px;
    border-radius: 15px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: bold;
}

.add-btn:hover {
    background: #ffcc33;
    box-shadow: 0 0 10px #ffbf00;
}

.hidden {
    display: none;
}

.success-message {
    background: #ffbf00;
    color: black;
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
    text-align: center;
    font-weight: bold;
}

.error-message {
    background: #ff4444;
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
    text-align: center;
    font-weight: bold;
}

.welcome-text {
    color: #ffbf00;
    font-size: 18px;
    margin-bottom: 20px;
}

/* ESTILOS DA FILA DE MÚSICAS */
.queue-section {
    margin-top: 30px;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 10px;
    border: 1px solid #ffbf00;
}

.queue-section h2 {
    color: #ffbf00;
    margin-bottom: 15px;
    text-align: center;
}

.queue-info {
    text-align: center;
    margin-bottom: 15px;
    color: #ffbf00;
    font-weight: bold;
}

.queue-stats {
    text-align: center;
    margin-bottom: 10px;
    color: #ffbf00;
    font-size: 14px;
}

.queue-list {
    max-height: 300px;
    overflow-y: auto;
}

.queue-track {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #333;
    background: #222;
    border-radius: 5px;
    margin-bottom: 5px;
}

.queue-track:last-child {
    border-bottom: none;
}

.queue-position {
    background: #ffbf00;
    color: black;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    font-size: 12px;
}

.queue-track-info {
    flex: 1;
    text-align: left;
}

.queue-track-name {
    font-weight: bold;
    color: white;
    font-size: 14px;
}

.queue-track-artist {
    color: #ffbf00;
    font-size: 12px;
}

/* Estilo para a música atual tocando */
.current-playing {
    background: linear-gradient(135deg, #333 0%, #222 100%);
    border: 2px solid #ffbf00;
    box-shadow: 0 0 15px #ffbf00;
}

.current-playing .queue-position {
    background: #ff4444;
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}