/* 番茄钟专题页样式 */

.fq-form {
    grid-template-columns: repeat(4, 1fr);
}

.fq-quick-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.1rem;
}

.fq-quick-btn {
    padding: 0.45rem 0.95rem;
    border: 1px solid #d0d7e2;
    border-radius: 999px;
    background: white;
    color: #555;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.fq-quick-btn:hover {
    border-color: #ef4444;
    color: #ef4444;
    background: #fff1f2;
}

.fq-panel {
    margin: 1.2rem 0;
    padding: 1.5rem 1.2rem;
    border: 1px solid #e8eaf0;
    border-radius: 14px;
    background: linear-gradient(180deg, #fff7f7 0%, #ffffff 100%);
    text-align: center;
}

.fq-phase {
    font-size: 0.95rem;
    color: #ef4444;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.fq-timer {
    font-size: 3rem;
    font-weight: 700;
    color: #111827;
    font-family: 'Fira Code', monospace;
}

.fq-progress {
    margin: 1rem auto 0.8rem;
    max-width: 520px;
    height: 12px;
    border-radius: 999px;
    background: #f1f5f9;
    overflow: hidden;
}

.fq-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #ef4444 0%, #f97316 100%);
    transition: width 0.3s ease;
}

.fq-meta {
    font-size: 0.88rem;
    color: #666;
}

@media (max-width: 900px) {
    .fq-form {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .fq-form {
        grid-template-columns: 1fr;
    }

    .fq-timer {
        font-size: 2.4rem;
    }
}
