.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
    flex-shrink: 0;
}
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.86em;
    text-decoration: none;
    transition: transform 0.2s;
    border: none;
    cursor: pointer;
    display: inline-block;
    box-sizing: border-box;
}
.btn-primary {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #0f172a;
}
.btn-secondary {
    background: #334155;
    color: #fff;
}
.btn:hover {
    transform: translateY(-2px);
}
@media (max-width: 600px) {
    .btn {
        flex: 1;
        text-align: center;
    }
}
