/**
 * Soundboard Theme Presets
 */

/* Theme: Dark */
.theme-dark.theme-container {
    background-color: #121212 !important;
    color: #e0e0e0 !important;
}
.theme-dark .card, .theme-dark .sound-card {
    background-color: #1e1e1e !important;
    border-color: #333 !important;
    color: #e0e0e0 !important;
}
.theme-dark .sound-card:hover {
    background-color: #2c2c2c !important;
}
.theme-dark h1, .theme-dark h2, .theme-dark h3, .theme-dark h4, .theme-dark h5, .theme-dark h6 {
    color: #fff !important;
}
.theme-dark .text-muted {
    color: #aaa !important;
}

/* Theme: Neon */
.theme-neon.theme-container {
    background-color: #0a0a0f !important;
    background-image: radial-gradient(circle at 50% 50%, #1a1a2e 0%, #0a0a0f 100%) !important;
    color: #00f2ff !important;
}
.theme-neon .sound-card {
    background-color: rgba(0, 0, 0, 0.8) !important;
    border: 2px solid #ff00ff !important;
    box-shadow: 0 0 10px #ff00ff, inset 0 0 5px #ff00ff;
    color: #00f2ff !important;
    text-shadow: 0 0 5px #00f2ff;
}
.theme-neon .sound-card:hover {
    box-shadow: 0 0 20px #00f2ff, inset 0 0 10px #00f2ff;
    border-color: #00f2ff !important;
    transform: scale(1.05);
    background-color: #000 !important;
}
.theme-neon h1, .theme-neon h2, .theme-neon h3 {
    color: #ff00ff !important;
    text-shadow: 0 0 15px #ff00ff, 0 0 30px #ff00ff;
    font-family: 'Courier New', Courier, monospace;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.theme-neon .badge {
    background-color: #ff00ff !important;
    box-shadow: 0 0 10px #ff00ff;
    color: #fff !important;
}
.theme-neon .btn-outline-secondary {
    color: #ff00ff !important;
    border-color: #ff00ff !important;
    box-shadow: 0 0 5px #ff00ff;
}
.theme-neon .btn-outline-secondary:hover {
    background-color: #ff00ff !important;
    color: #000 !important;
}

/* Theme: Minimalist */
.theme-minimalist.theme-container {
    background-color: #ffffff !important;
    color: #333 !important;
}
.theme-minimalist .card, .theme-minimalist .sound-card {
    border: none !important;
    border-bottom: 1px solid #eee !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background-color: transparent !important;
}
.theme-minimalist .sound-card:hover {
    background-color: #fafafa !important;
}
.theme-minimalist .btn {
    border-radius: 0 !important;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Helper for preset integration */
.theme-container {
    transition: all 0.3s ease;
    min-height: 100vh;
    width: 100%;
    margin: 0;
}

/* --- Emoji Reaction Animations --- */
.reaction-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.floating-emoji {
    position: absolute;
    bottom: -50px;
    font-size: 2.5rem;
    user-select: none;
    pointer-events: none;
    animation: floatUp 5s ease-out forwards;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) translateX(0) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(-50px) translateX(var(--drift)) scale(1.2);
    }
    100% {
        transform: translateY(-100vh) translateX(calc(var(--drift) * 2)) scale(1);
        opacity: 0;
    }
}

.reaction-bar {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border-radius: 50px;
    padding: 8px 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    gap: 10px;
    z-index: 10000;
    border: 1px solid rgba(0,0,0,0.1);
}

.reaction-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s, filter 0.2s;
    padding: 0;
    line-height: 1;
}

.reaction-btn:hover {
    transform: scale(1.3);
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.2));
}

.reaction-btn:active {
    transform: scale(0.9);
}
