/* ── FireBattle Focused Layout (ARCADE) ── */
.bf-full-layout {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
    height: calc(100vh - 80px);
    padding: 2.5rem;
    background: radial-gradient(circle at center, rgba(255, 100, 0, 0.08) 0%, transparent 70%);
    overflow: hidden;
}

/* Sidebar no longer used in Arcade, but kept for Manual if needed (optional) */
.bf-sidebar { display: none; } 

.bf-center-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    justify-content: center;
    width: 100%;
}

.bf-active-name {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(255, 100, 0, 0.6);
    margin-bottom: 2rem;
}

.bf-zone-panel {
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(10px);
    border: 3px solid #ff6400;
    border-radius: 24px;
    padding: 2rem 5rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(255, 100, 0, 0.2);
    margin-bottom: 2rem;
}

.bf-zone-lbl {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ff8c40;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.bf-zone-big {
    font-size: 8rem;
    font-weight: 950;
    color: #ff6400;
    text-shadow: 0 0 40px rgba(255, 100, 0, 0.8);
    line-height: 0.9;
    font-family: 'Outfit', sans-serif;
}

.bf-zone-pts {
    font-size: 1.5rem;
    color: rgba(255,200,100,0.8);
    margin-top: 1rem;
    font-weight: bold;
}

/* Bottom Players Strip */
.bf-bottom-players {
    display: flex;
    gap: 15px;
    justify-content: center;
    width: 100%;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.bf-player-card {
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
    padding: 12px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 160px;
    border: 2px solid rgba(255,255,255,0.05);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.bf-player-card.bf-active {
    background: rgba(255, 100, 0, 0.1);
    border-color: #ff6400;
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 100, 0, 0.3);
}

.bf-player-card.bf-eliminated {
    opacity: 0.2;
    filter: grayscale(1);
    transform: scale(0.9);
}

.bf-player-name {
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    white-space: nowrap;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bf-flames-row {
    display: flex;
    gap: 2px;
    margin: 4px 0;
}

.bf-flame {
    font-size: 1.2rem;
    line-height: 1;
}
.bf-flame.active {
    filter: drop-shadow(0 0 5px rgba(255, 100, 0, 0.8));
}
.bf-flame.lost {
    opacity: 0.1;
    filter: grayscale(1);
}

.bf-points-row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.bf-points-val {
    font-size: 1.4rem;
    font-weight: 950;
    color: #ffd700;
}

.bf-last-result {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    background: #00e676;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    box-shadow: 0 0 10px rgba(0,230,118,0.5);
}

.bf-last-result.miss {
    background: #ff5252;
}

/* Right Panel (Darts) - Integrated or kept? Let's move it to a floating container or next to zone */
.bf-right-panel {
    position: absolute;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.bf-right-flames { display: none; } /* already in bottom strip */

.bf-miss-btn {
    background: rgba(255,82,82,0.15);
    border: 2px solid #ff5252;
    color: #ff5252;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 900;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2rem;
}

.bf-miss-btn:hover {
    background: #ff5252;
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 82, 82, 0.4);
}

.bf-correct-btn {
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.2);
    color: var(--text-muted);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 2rem;
}

.bf-correct-btn:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: #fff;
}

/* Multiplier badge */
.bf-multiplier-notice {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #ffd700;
    font-weight: bold;
    text-align: center;
    background: rgba(255,215,0,0.1);
    padding: 4px 10px;
    border-radius: 8px;
}

