/* =========================================================
   Chamber War – Buttons (Norisk Style)
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px 16px;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    background-clip: padding-box;
}

.btn:active {
    transform: translateY(2px);
}

.btn-sm {
    padding: 10px 18px 12px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 18px 36px 20px;
    font-size: 1.15rem;
}

/* Primary Button (equivalent to pixel-teal) */
.btn-primary {
    background: var(--teal-dim);
    color: #fff;
    border-color: var(--teal);
    box-shadow: inset 0 -4px 0 rgba(0,0,0,0.2), 0 0 20px var(--teal-glow);
}

.btn-primary:hover {
    background: var(--teal);
    box-shadow: inset 0 -4px 0 rgba(0,0,0,0.2), 0 0 35px var(--teal-glow);
    text-shadow: 0 0 8px rgba(255,255,255,0.5);
}

/* Secondary Button (equivalent to pixel-subtle or pixel-dark) */
.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border-color: var(--border);
    box-shadow: inset 0 -4px 0 rgba(0,0,0,0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-bright);
    box-shadow: inset 0 -4px 0 rgba(0,0,0,0.2), 0 0 20px rgba(255,255,255,0.05);
}

/* Copper/Gold Button (for special actions) */
.btn-copper {
    background: var(--vault-gold);
    color: var(--stone-dark);
    border-color: #ffe27a;
    box-shadow: inset 0 -4px 0 rgba(0,0,0,0.2), 0 0 20px var(--shadow-glow-copper);
    text-shadow: none; /* Dark text doesn't need dark shadow */
}

.btn-copper:hover {
    background: #ffe27a;
    box-shadow: inset 0 -4px 0 rgba(0,0,0,0.2), 0 0 35px var(--shadow-glow-copper);
}

/* ---- Discord Button ---- */

.btn-discord {
    background: #5865F2;
    color: #fff;
    border-color: #7289da;
    box-shadow: inset 0 -4px 0 rgba(0,0,0,0.2), 0 0 20px rgba(88, 101, 242, 0.35);
}

.btn-discord:hover {
    background: #4752c4;
    box-shadow: inset 0 -4px 0 rgba(0,0,0,0.2), 0 0 36px rgba(88, 101, 242, 0.55);
}

.btn-discord__icon {
    display: inline-flex;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-discord__icon .icon {
    width: 100%;
    height: 100%;
}

/* ---- CTA Actions row ---- */

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
