/* ========== ARMAR-FRASE GAME STYLES ========== */

.af-main-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 10px;
}

.af-game-area {
    flex: 1;
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.af-timer-bar {
    height: 12px;
    background: var(--bg-card);
    border-radius: 6px;
    overflow: hidden;
}

.af-timer-fill {
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #f59e0b, #ef4444);
    width: 100%;
    transition: width 0.1s linear;
}

.af-controls {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 10px;
}

.af-waiting {
    text-align: center;
}

.af-round-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255,255,255,.1);
    padding: 5px 12px;
    border-radius: 12px;
    font-family: Orbitron;
    font-size: .8rem;
}

.af-answers-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    padding: 6px 14px;
    border-radius: 18px;
    font-family: Orbitron;
    font-size: .8rem;
}

.af-words-display {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 15px 0;
    padding: 15px;
    max-width: 600px;
}

.af-word-chip {
    padding: 14px 26px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border: 3px solid #1e40af;
    border-radius: 24px;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
}

.af-frases-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 600px;
    max-height: 400px;
    overflow-y: auto;
}

.af-frase-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 15px;
    text-align: left;
    border: 2px solid var(--bg-card-hover);
}