/* =============================================================================
   combat-h09.css - Legacy H09 primary CTA button
   =============================================================================
   The H09 combat panel was removed; this file keeps only the .h09-start-btn
   family, which is reused as the primary CTA by the shipyard panels
   (BlueprintDesigner, BlueprintReview, ShipProject, DrydockRetrofitParts),
   SkillMasteryPanel, and DrydockRetrofitParts).
   ============================================================================= */

.h09-start-btn {
    font-family: var(--font-heading);
    font-size: var(--font-size-lg);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(212, 196, 160, 0.9);
    padding: 14px 40px;
    border: 2px solid rgba(197, 160, 89, 0.3);
    border-radius: 4px;
    background: rgb(17 16 10);
    cursor: pointer;
    transition:
        background 0.2s,
        border-color 0.2s,
        box-shadow 0.2s;
}

.h09-start-btn:hover:not(:disabled) {
    background: rgba(197, 160, 89, 0.15);
    border-color: rgba(197, 160, 89, 0.5);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.1);
}

.h09-start-btn:disabled {
    color: rgba(212, 196, 160, 0.3);
    border-color: rgba(197, 160, 89, 0.1);
    opacity: 0.5;
}
