/* ================================================================
   src/features/combat-duty/combat-duty.css — Combat Duty styles
   ================================================================ */

.cd-screen {
    padding: 0 12px 80px;
    max-width: 480px;
    margin: 0 auto;
}

/* Timer block */
.cd-timer-block {
    text-align: center;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.cd-timer-block.cd-active {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.2), rgba(34, 139, 34, 0.05));
    border: 1px solid rgba(34, 139, 34, 0.4);
}

.cd-timer-block.cd-inactive {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cd-timer-label {
    font-size: 16px;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 8px;
}

.cd-active .cd-timer-label {
    color: #4cfa4c;
}

.cd-timer-value {
    font-size: 28px;
    font-weight: 900;
    color: #ffd93d;
    letter-spacing: 1px;
    font-variant-numeric: tabular-nums;
}

.cd-timer-hint {
    font-size: 12px;
    color: #888;
    margin-top: 6px;
}

/* Section title */
.cd-section-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffd93d;
    margin-bottom: 10px;
}

/* Plans */
.cd-plans {
    margin-bottom: 16px;
}

.cd-plan-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    margin-bottom: 8px;
    border: 1px solid rgba(255, 217, 61, 0.3);
    border-radius: 10px;
    background: rgba(255, 217, 61, 0.08);
    color: #e0e0e0;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}

.cd-plan-btn:active {
    background: rgba(255, 217, 61, 0.2);
    border-color: rgba(255, 217, 61, 0.6);
}

.cd-plan-btn.cd-plan-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.cd-plan-name {
    font-weight: 600;
}

.cd-plan-price {
    color: #ffd93d;
    font-weight: 700;
}

.cd-balance {
    text-align: right;
    font-size: 13px;
    color: #aaa;
    margin-top: 4px;
}

/* Stats */
.cd-stats {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 16px;
}

.cd-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cd-stat-row:last-child {
    border-bottom: none;
}

.cd-stat-label {
    font-size: 14px;
    color: #aaa;
}

.cd-stat-value {
    font-size: 14px;
    font-weight: 700;
    color: #e0e0e0;
}
