:root {
    --bg-dark: #0f111a;
    --card-bg: rgba(255, 255, 255, 0.05);
    --accent: linear-gradient(135deg, #ff00cc, #3333ff);
    --yellow: #ffcc00;
    --text: #ffffff;
}

body {
    background-color: var(--bg-dark);
    color: var(--text);
    font-family: 'Fredoka', sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.main-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    width: 100%;
    max-width: 400px;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Tipografía Logo */
.brand-text { font-size: 1.8rem; margin: 0; }
.brand-text span { background: var(--accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Visualizador */
.visualizer { display: flex; justify-content: center; gap: 6px; height: 30px; margin: 20px 0; }
.bar { width: 6px; background: var(--accent); border-radius: 10px; animation: bounce 1s ease-in-out infinite; animation-play-state: paused; }
@keyframes bounce { 0%, 100% { height: 8px; } 50% { height: 30px; } }

/* Botón Play */
.play-btn {
    width: 80px; height: 80px; border-radius: 50%; border: none;
    background: var(--accent); cursor: pointer; transition: 0.3s;
    display: flex; align-items: center; justify-content: center; margin: 0 auto;
}
.play-btn:hover { transform: scale(1.1); }
.play-icon { width: 0; height: 0; border-top: 15px solid transparent; border-bottom: 15px solid transparent; border-left: 25px solid white; margin-left: 5px; }
.play-icon.pause { width: 20px; height: 25px; border: none; border-left: 7px solid white; border-right: 7px solid white; margin-left: 0; }

/* Animación Latido */
.pulse { animation: pulseAnim 2s infinite; }
@keyframes pulseAnim { 0% { box-shadow: 0 0 0 0 rgba(255, 0, 204, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(255, 0, 204, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 0, 204, 0); } }

/* Programación */
.day-selector { display: flex; gap: 8px; overflow-x: auto; margin: 15px 0; padding-bottom: 5px; }
.day-btn { background: rgba(255,255,255,0.1); border: none; color: white; padding: 8px 12px; border-radius: 15px; cursor: pointer; }
.day-btn.active { background: var(--accent); }
.program-item { display: flex; align-items: center; gap: 15px; background: rgba(255,255,255,0.03); margin-bottom: 10px; padding: 10px; border-radius: 15px; text-align: left; }
.time { color: var(--yellow); font-weight: bold; font-size: 0.8rem; }
.slot-name { font-size: 0.9rem; margin: 0; }

.volume-slider { width: 100%; margin-top: 20px; accent-color: var(--yellow); }