/* Configurações Globais e Cores Neon */
:root {
    --primary: #bc13fe;      /* Roxo Neon */
    --secondary: #ff00e0;    /* Rosa Neon */
    --neon-blue: #00f3ff;   /* Azul Ciano */
    --bg: #050505;          /* Fundo Quase Preto */
    --card: #121212;        /* Fundo dos Cards */
    --text: #ffffff;
    --danger: #ff4444;
}

* { box-sizing: border-box; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Containers e Estrutura */
.container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
}

.card {
    background: var(--card);
    border: 2px solid var(--primary);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(188, 19, 254, 0.3), inset 0 0 5px rgba(188, 19, 254, 0.2);
}

/* Tipografia */
h2, h3 { 
    color: var(--neon-blue); 
    text-transform: uppercase; 
    text-shadow: 0 0 10px var(--neon-blue); 
    text-align: center;
    margin-top: 0;
}

/* Formulários e Botões */
input {
    width: 100%;
    background: #000;
    color: #fff;
    border: 1px solid var(--secondary);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    outline: none;
    transition: 0.3s;
}

input:focus { box-shadow: 0 0 10px var(--secondary); }

button {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
}

button:hover {
    filter: brightness(1.2);
    box-shadow: 0 0 15px var(--primary);
}

button.btn-del {
    background: var(--danger);
    padding: 8px;
    font-size: 12px;
}

/* Itens de Lista (Busca e Playlist) */
.musica-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border-bottom: 1px solid #222;
    cursor: pointer;
    transition: background 0.2s;
}

.musica-item:hover { background: rgba(255,255,255,0.05); }

.musica-item img { width: 60px; height: 45px; border-radius: 5px; object-fit: cover; }

.playlist-item {
    padding: 12px;
    margin: 8px 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--primary);
}

.destaque {
    border: 2px solid var(--neon-blue);
    background: rgba(0, 243, 255, 0.1);
    box-shadow: 0 0 15px var(--neon-blue);
}

/* --- Estilos Específicos do PLAYER (TV) --- */
#anuncio-container {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex; justify-content: center; align-items: center;
    background: var(--bg);
    z-index: 9999;
    text-align: center;
}

#anuncio-texto {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--secondary);
    text-shadow: 0 0 30px var(--secondary);
    padding: 40px;
}

#player-wrapper {
    position: absolute;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: #000;
}

/* --- Estilos Específicos do ADMIN --- */
.admin-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    background: var(--neon-blue);
    color: #000;
    font-weight: bold;
}