/* -------------------------------------
   GAME THEME VARIABLES - Ritmix
   ------------------------------------- */
.game-theme-ritmix {
    --primary: #8b5cf6;
    --primary-glow: rgba(139, 92, 246, 0.4);
    --secondary: #ec4899;
    --accent: #f43f5e;
    --bg-dark: #0f172a;
    --bg-panel: rgba(30, 41, 59, 0.7);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    background-color: var(--bg-dark);
}

.game-theme-ritmix .bg-effects .blob-1 { background: var(--primary); }
.game-theme-ritmix .bg-effects .blob-2 { background: var(--secondary); }
.game-theme-ritmix .logo-accent { color: var(--primary); }

/* Main Layout */
.game-layout-ritmix {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1rem;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Tap Area */
.tap-area-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-panel);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    text-align: center;
}

.tap-button {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    box-shadow: 0 0 30px var(--primary-glow), inset 0 0 20px rgba(255,255,255,0.3);
    color: white;
    font-size: 2rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.1s;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.tap-button:active {
    transform: scale(0.95);
    box-shadow: 0 0 50px var(--primary-glow);
}

.tap-button.pulse {
    animation: tapPulse 0.3s ease-out;
}

@keyframes tapPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 60px var(--accent); }
    100% { transform: scale(1); box-shadow: 0 0 30px var(--primary-glow); }
}

/* Song List Options */
.song-options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    max-width: 500px;
    margin: 1.5rem auto;
}

.song-option-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
}

.song-option-btn i {
    color: var(--primary);
}

.song-option-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--primary);
}

.song-option-btn.selected {
    background: var(--primary);
    border-color: var(--primary);
    font-weight: bold;
}

.song-option-btn.correct {
    background: #10b981;
    border-color: #10b981;
}

.song-option-btn.wrong {
    background: #ef4444;
    border-color: #ef4444;
    opacity: 0.7;
}

/* Waiting / Status Texts */
.status-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-main);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.sub-text {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Player List Overlay for ready status */
.fans-ready-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 1rem;
}

.fan-badge {
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.fan-badge.ready {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid #10b981;
}

/* Visualizer for rhythm playback */
.rhythm-visualizer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 100px;
    margin: 2rem 0;
}

.bar {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 5px;
    transition: height 0.1s;
}

.bar.active {
    height: 80px;
    background: var(--secondary);
    box-shadow: 0 0 15px var(--secondary);
}

.big-btn {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 5px 15px var(--primary-glow);
    transition: transform 0.2s;
}

.big-btn:active {
    transform: translateY(2px);
}
