/* ============================================================
   LEGAL-PAGES.CSS — shared stylesheet for disclaimer.php and
   privacy-policy.php
   Kept deliberately SHORT and SIMPLE (no charts, no cards, no
   animations beyond the basics) so it's easy to open and edit.
   Every color/spacing value lives in one place per section —
   change it once here, both pages update together.
   ============================================================ */

/* =========================
   RESET / BASE
========================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #030506;
    color: #e9e9e9;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 1.65;
}

.wrap {
    width: min(900px, 92%);
    margin: auto;
}

a {
    color: #e3af28;
}

/* =========================
   TOP WARNING
========================= */

.top-warning {
    background: #F1B417;
    border-bottom: 1px solid #4c4a25;
    color: #000000;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    padding: 7px 12px;
}

/* =========================
   HEADER / NAVBAR
   (same classes as the rest of the site, so header.php looks
   identical everywhere — edit colors here if you want THIS
   page's header to look different from the others)
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(3, 5, 6, 0.95);
    border-bottom: 1px solid #263136;
    backdrop-filter: blur(10px);
}

.nav-wrap {
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
    color: #fff;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid #c99c2a;
    border-radius: 7px;
    background: #17130b;
    color: #e4b93c;
    font-weight: 900;
    font-size: 16px;
}

.brand b {
    display: block;
    font-size: 21px;
}

.brand small {
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
    color: #8a8d88;
}

nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-btn {
    background: #e3af28;
    color: #0a0a08;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 800;
    border: 1px solid #f2cf63;
}

.nav-btn:hover,
.nav-btn.active {
    background: #f2cf63;
}

/* =========================
   SITE MARQUEE
========================= */

.site-marquee {
    background: #000000;
    overflow: hidden;
    white-space: nowrap;
    padding: 8px 0;
    border-bottom: 1px solid #263136;
}

.marquee-track {
    display: inline-block;
    padding-left: 100%;
    animation: legal-marquee-scroll 32s linear infinite;
    color: #e3af28;
    font-weight: 600;
    font-size: 14px;
}

@keyframes legal-marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* =========================
   PAGE HERO
   (simple title block — no buttons/tabs needed on a legal page)
========================= */

.legal-hero {
    padding: 40px 0 10px;
    text-align: center;
}

.legal-hero .eyebrow {
    color: #d6b33d;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.legal-hero h1 {
    font-size: 32px;
    line-height: 1.2;
    margin: 10px 0 8px;
    color: #fff;
}

.legal-hero p {
    max-width: 650px;
    margin: 0 auto;
    color: #aab0ad;
    font-size: 17px;
}

/* =========================
   LEGAL CONTENT
   (one heading + paragraph block per topic — this is the part
   you'll edit most, so it's kept as plain as possible)
========================= */

.legal-content {
    background: #0a1112;
    border: 1px solid #1c2b2c;
    border-radius: 6px;
    padding: 8px 24px 24px;
    margin: 24px 0 40px;
}

.legal-item {
    border-top: 1px solid #182122;
    padding: 20px 0;
}

.legal-item:first-of-type {
    border-top: none;
}

.legal-item h2 {
    font-size: 21px;
    color: #e9c542;
    margin: 0 0 10px;
}

.legal-item p {
    font-size: 17px;
    color: #b7bdb9;
    margin: 0 0 10px;
}

.legal-item ul {
    margin: 8px 0 10px;
    padding-left: 22px;
}

.legal-item li {
    font-size: 17px;
    color: #b7bdb9;
    margin-bottom: 6px;
}

.legal-item p b,
.legal-item p strong {
    color: #f1f1e8;
}

/* Simple last-updated note under the hero or above the content */
.legal-updated {
    text-align: center;
    color: #6b7180;
    font-size: 14px;
    margin: 6px 0 0;
}

/* =========================
   WHATSAPP FLOATING BUTTON
========================= */

.whatsapp-fab {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 500;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
    animation: wa-pulse 2.2s infinite;
}

@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55), 0 6px 18px rgba(37,211,102,0.5); }
    50%      { box-shadow: 0 0 0 10px rgba(37,211,102,0), 0 6px 18px rgba(37,211,102,0.5); }
}

/* =========================
   FOOTER
========================= */

footer {
    margin-top: 45px;
    border-top: 1px solid #20292a;
    background: #050707;
    padding-top: 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
}

.footer-grid p,
.footer-grid a {
    font-size: 16px;
    color: #777;
    text-decoration: none;
    display: block;
    margin: 5px 0;
}

.footer-grid h4 {
    font-size: 16px;
    color: #dcb63a;
    margin: 0 0 8px;
}

.footer-bottom {
    width: min(900px, 92%);
    margin: 25px auto 0;
    padding: 12px 0;
    border-top: 1px solid #151c1d;
    display: flex;
    justify-content: space-between;
    color: #5c6462;
    font-size: 14px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 800px) {

    .nav-wrap {
        height: auto;
        flex-wrap: wrap;
        gap: 8px;
        padding: 10px 0;
    }

    nav {
        width: 100%;
        justify-content: center;
    }

    .nav-btn {
        padding: 7px 12px;
        font-size: 13px;
    }

    .legal-hero h1 {
        font-size: 24px;
    }

    .legal-content {
        padding: 4px 16px 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        display: block;
    }

    .footer-bottom span {
        display: block;
        margin: 4px 0;
    }
}
