/* ============================================================
   NeoPolymarket — Static / Legal Pages CSS
   Place at: neopolymarket/assets/css/static.css
   Used by: terms-condition.php, privacy-policy.php
   ============================================================ */

:root {
    --bg:#080B10; --bg2:#0F1319; --bg3:#161C26; --card:#111722;
    --border:rgba(255,255,255,.07); --border2:rgba(255,255,255,.13);
    --gold:#F0B429; --gold2:#FFD97D; --green:#0ECB81; --red:#F6465D;
    --text:#E8ECF4; --text2:#A0AAB8; --text3:#606878;
    --font-display:'Fraunces',Georgia,serif;
    --font-body:'Syne',sans-serif;
    --font-mono:'IBM Plex Mono',monospace;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
body{background:var(--bg);color:var(--text);font-family:var(--font-body);
     font-size:15px;line-height:1.7;overflow-x:hidden;}
body::after{content:'';position:fixed;inset:0;z-index:9999;pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");opacity:.5;}
::-webkit-scrollbar{width:5px}
::-webkit-scrollbar-track{background:var(--bg)}
::-webkit-scrollbar-thumb{background:var(--gold);border-radius:3px}

/* ── LAYOUT ── */
.static-wrap{max-width:800px;margin:0 auto;padding:48px 24px 100px;}

/* ── HERO ── */
.static-hero{
    background:var(--bg2);border-bottom:1px solid var(--border);
    padding:56px 24px 48px;text-align:center;position:relative;overflow:hidden;
}
.static-hero::before{
    content:'';position:absolute;inset:0;
    background-image:
        linear-gradient(rgba(240,180,41,.025) 1px,transparent 1px),
        linear-gradient(90deg,rgba(240,180,41,.025) 1px,transparent 1px);
    background-size:48px 48px;pointer-events:none;
}
.static-badge{
    display:inline-flex;align-items:center;gap:7px;
    background:rgba(240,180,41,.1);border:1px solid rgba(240,180,41,.25);
    border-radius:100px;padding:5px 14px;
    font-family:var(--font-mono);font-size:10px;letter-spacing:2px;
    text-transform:uppercase;color:var(--gold);margin-bottom:20px;
}
.static-title{
    font-family:var(--font-display);font-size:clamp(32px,5vw,48px);
    font-weight:900;letter-spacing:-1.5px;line-height:1.1;margin-bottom:16px;
}
.static-title span{color:var(--gold);}
.static-meta{font-size:13px;color:var(--text3);display:flex;align-items:center;
              justify-content:center;gap:20px;flex-wrap:wrap;}
.static-meta span{display:flex;align-items:center;gap:6px;}

/* ── CONTENT ── */
.static-toc{
    background:var(--card);border:1px solid var(--border);
    border-radius:14px;padding:22px 24px;margin:40px 0 36px;
}
.toc-title{font-size:12px;font-family:var(--font-mono);letter-spacing:2px;
           text-transform:uppercase;color:var(--text3);margin-bottom:14px;}
.toc-list{list-style:none;display:flex;flex-direction:column;gap:6px;}
.toc-list a{
    color:var(--text2);text-decoration:none;font-size:14px;
    display:flex;align-items:center;gap:8px;padding:4px 0;
    transition:color .2s;
}
.toc-list a:hover{color:var(--gold);}
.toc-list a::before{
    content:'';width:4px;height:4px;border-radius:50%;
    background:var(--text3);flex-shrink:0;transition:background .2s;
}
.toc-list a:hover::before{background:var(--gold);}

.static-section{margin-bottom:48px;scroll-margin-top:80px;}
.section-number{
    font-family:var(--font-mono);font-size:11px;letter-spacing:2px;
    text-transform:uppercase;color:var(--gold);margin-bottom:8px;
    display:flex;align-items:center;gap:8px;
}
.section-number::after{content:'';flex:1;height:1px;background:rgba(240,180,41,.2);}
.section-title{
    font-family:var(--font-display);font-size:22px;font-weight:700;
    letter-spacing:-.3px;margin-bottom:16px;
}
.static-section p{color:var(--text2);margin-bottom:14px;line-height:1.8;}
.static-section ul,.static-section ol{
    color:var(--text2);padding-left:20px;margin-bottom:14px;
    display:flex;flex-direction:column;gap:6px;
}
.static-section li{line-height:1.7;}
.static-section strong{color:var(--text);}
.static-section a{color:var(--gold);text-decoration:none;}
.static-section a:hover{text-decoration:underline;}

.highlight-box{
    background:rgba(240,180,41,.07);border:1px solid rgba(240,180,41,.2);
    border-radius:12px;padding:18px 20px;margin:20px 0;
    font-size:14px;color:var(--text2);line-height:1.7;
}
.highlight-box strong{color:var(--gold);}

.info-box{
    background:rgba(77,159,255,.07);border:1px solid rgba(77,159,255,.2);
    border-radius:12px;padding:16px 20px;margin:20px 0;
    font-size:13px;color:var(--text2);display:flex;gap:12px;line-height:1.6;
}
.info-box i{color:#4D9FFF;flex-shrink:0;font-size:16px;margin-top:1px;}

/* ── CONTACT CTA ── */
.static-contact{
    background:var(--card);border:1px solid var(--border);
    border-radius:16px;padding:32px;text-align:center;margin-top:48px;
}
.sc-title{font-family:var(--font-display);font-size:22px;font-weight:700;margin-bottom:8px;}
.sc-sub{font-size:14px;color:var(--text2);margin-bottom:24px;}
.sc-btn{
    display:inline-flex;align-items:center;gap:8px;
    background:var(--gold);color:#000;font-weight:700;font-size:14px;
    padding:12px 24px;border-radius:10px;text-decoration:none;transition:all .2s;
}
.sc-btn:hover{background:var(--gold2);transform:translateY(-2px);}

@media(max-width:640px){
    .static-wrap{padding:32px 16px 80px;}
    .static-hero{padding:40px 16px 36px;}
    .static-meta{gap:12px;}
}

/* Status Badges */
.status-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
}
.status-badge.new {
    background: rgba(59, 130, 246, 0.15);
    color: #3B82F6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}
.status-badge.closing {
    background: rgba(239, 68, 68, 0.15);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}
.status-badge.hot {
    background: rgba(245, 158, 11, 0.15);
    color: #F59E0B;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

