/* =========================================
   NeonArena – footer.css
   Warning Strip, Org Belt, Footer, Cookie
   ========================================= */

/* ── WARNING STRIP ── */
.warn-strip {
    background: rgba(255,98,0,.12);
    border-top: 2px solid var(--orange);
    border-bottom: 1px solid rgba(255,98,0,.3);
    padding: 1.1rem 1.5rem;
}
.warn-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.warn-badge {
    flex-shrink: 0;
    background: var(--orange);
    color: #fff;
    font-weight: 900;
    font-size: 1rem;
    padding: .25rem .7rem;
    border-radius: .4rem;
}
.warn-msg {
    flex: 1;
    font-size: .9rem;
    color: var(--text);
    min-width: 200px;
}
.warn-cta {
    text-decoration: none;
    color: var(--cyan);
    font-size: .88rem;
    font-weight: 600;
    white-space: nowrap;
}
.warn-cta:hover { text-decoration: underline; }

/* ── ORG BELT ── */
.org-belt {
    background: var(--card);
    border-bottom: 1px solid var(--edge);
    padding: 1.6rem 1.2rem;
}
.org-belt__label {
    text-align: center;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    margin-bottom: 1rem;
}
.org-belt__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.org-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
    text-decoration: none;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 600;
    transition: color .2s;
}
.org-item:hover { color: var(--green); }
.org-logo {
    height: 32px;
    max-width: 80px;
    object-fit: contain;
    opacity: .75;
    transition: opacity .2s;
}
.org-item:hover .org-logo { opacity: 1; }

/* ── FOOTER ── */
footer {
    background: var(--card);
    border-top: 1px solid var(--edge);
    padding: 3rem 1.5rem 1.5rem;
}
footer .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
    text-align: center;
}
.ft-brand {
    font-size: 1.3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ft-desc {
    font-size: .88rem;
    color: var(--muted);
    max-width: 580px;
    line-height: 1.7;
}
.ft-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    gap: .3rem 1.4rem;
}
.ft-menu a {
    text-decoration: none;
    font-size: .88rem;
    color: var(--muted);
    font-weight: 600;
    transition: color .2s;
}
.ft-menu a:hover { color: var(--green); }
.ft-copy {
    font-size: .78rem;
    color: var(--muted);
    opacity: .6;
}

/* ── COOKIE STRIP ── */
.c-strip {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card);
    border-top: 1px solid var(--edge);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .9rem 1.5rem;
    z-index: 800;
    flex-wrap: wrap;
    font-size: .88rem;
    color: var(--muted);
}
.c-btn {
    flex-shrink: 0;
    background: var(--green);
    color: var(--deep);
    border: none;
    border-radius: .6rem;
    padding: .5rem 1.2rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    font-size: .88rem;
    transition: opacity .2s;
}
.c-btn:hover { opacity: .85; }

/* ── MOBILE OPTIMIZATIONS ── */
@media (max-width: 425px) {
    .warn-inner {
        flex-direction: column;
        gap: 0.8rem;
    }
    .warn-cta {
        width: 100%;
        text-align: center;
    }
    .org-belt__list {
        gap: 1rem 1.5rem;
    }
    .c-strip {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0.8rem 1rem;
        font-size: 0.8rem;
    }
    .c-btn {
        width: 100%;
    }
}
