/* ══════════════════════════════════════════════════
   FOOTER — Hell-PvP fire style
   ══════════════════════════════════════════════════ */

.hell-footer {
    width: 100%;
    background: linear-gradient(180deg, rgba(10,7,5,0.95) 0%, rgba(6,4,3,0.98) 100%);
    border-top: 0.0625rem solid #2a1810;
    position: relative;
    z-index: 100;
}

/* top fire line */
.hell-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.125rem;
    background: linear-gradient(90deg, transparent, #ff5a1f 30%, #ff7a00 50%, #ff5a1f 70%, transparent);
    box-shadow: 0 0 0.5rem rgba(255,90,31,0.25);
}

.footer-inner {
    max-width: 75rem;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* ── LEFT: buttons ── */
.footer-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(180deg, rgba(20,14,10,0.95) 0%, rgba(12,8,6,0.98) 100%);
    border: 0.0625rem solid #3a1a0e;
    border-left: 0.125rem solid var(--btn-accent, #ff5a1f);
    border-radius: 0.1875rem;
    color: var(--btn-color, #a85a30);
    font-family: 'Cinzel', serif;
    font-size: 0.5625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-btn:hover {
    border-color: var(--btn-accent, #ff5a1f);
    color: #fff;
    box-shadow: -0.25rem 0 0.75rem color-mix(in srgb, var(--btn-accent) 12%, transparent);
}

.footer-btn svg {
    width: 0.875rem;
    height: 0.875rem;
    fill: currentColor;
    flex-shrink: 0;
}

.footer-btn.discord {
    --btn-accent: #7b6fff;
    --btn-color: #6b60b0;
}

.footer-btn.telegram {
    --btn-accent: #29a0d5;
    --btn-color: #2a80a8;
}

/* ── CENTER: copyright ── */
.footer-copy {
    font-family: 'Crimson Pro', serif;
    font-size: 1rem;
    color: #3a2a1a;
    text-align: center;
    white-space: nowrap;
}

/* ── RIGHT: policy links ── */
.footer-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-link {
    font-family: 'Crimson Pro', serif;
    font-size: 1rem;
    color: #5a4030;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-link:hover {
    color: #c47830;
}

/* dot separator */
.footer-dot {
    width: 0.1875rem;
    height: 0.1875rem;
    background: #3a2a1a;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 50rem) {
    .footer-inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.625rem;
        padding: 0.625rem 1rem;
    }

    .footer-copy { order: 3; width: 100%; }
}
