*{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family:'Inter',sans-serif;
    background:#050814;
    color:white;
    min-height:100vh;
    overflow-x:hidden;
}

.topBar{
    position:absolute;
    top:30px;
    right:30px;
    z-index:10;
}

.logo{
    height:100px;
    width:auto;
}

.bg{
    position:fixed;
    inset:0;
    background:
        radial-gradient(circle at top left, rgba(59,130,246,0.15), transparent 30%),
        radial-gradient(circle at bottom right, rgba(34,197,94,0.10), transparent 30%);
    pointer-events:none;
}

.container{
    position:relative;
    z-index:2;
    max-width:1600px;
    margin:auto;
    padding:30px;
}

.hero{
    margin-bottom:28px;
    text-align:center;
}

.hero h1{
    margin:0;
    font-size:40px;
    font-weight:800;
    letter-spacing:-1px;
    line-height:1.1;
}

.hero p{
    margin-top:10px;
    color:rgba(255,255,255,0.65);
    font-size:15px;
}

.layout{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:24px;
}

.panel{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:26px;
    padding:24px;
    backdrop-filter:blur(20px);
}

.sectionTitle{
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:1px;
    color:rgba(255,255,255,0.55);
    margin-bottom:12px;
    font-weight:700;
}

.inputWrap{
    position:relative;
    margin-bottom:18px;
}

.inputWrap input{
    width:100%;
    padding:18px 20px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,0.08);
    background:rgba(255,255,255,0.05);
    color:white;
    font-size:16px;
    outline:none;
    transition:0.2s ease;
}

.inputWrap input:focus{
    border-color:rgba(59,130,246,0.8);
    background:rgba(255,255,255,0.07);
}

.inputWrap input::placeholder{
    color:rgba(255,255,255,0.35);
}

.suggestions{
    position:absolute;
    top:calc(100% + 8px);
    left:0;
    right:0;
    background:#0d1324;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:16px;
    max-height:320px;
    overflow-y:auto;
    display:none;
    z-index:100;
}

.suggestion{
    padding:12px 16px;
    cursor:pointer;
    transition:0.15s ease;
    border-bottom:1px solid rgba(255,255,255,0.04);
}

.suggestion:hover{
    background:rgba(255,255,255,0.06);
}

.resultCard{
    background:linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    border:1px solid rgba(255,255,255,0.08);
    border-radius:24px;
    padding:24px;
    margin-top:20px;
}

.marketName{
    font-size:30px;
    font-weight:800;
    margin-bottom:10px;
}

.status{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 14px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
    margin-bottom:22px;
}

.open{
    background:rgba(34,197,94,0.15);
    color:#4ade80;
}

.closed{
    background:rgba(239,68,68,0.15);
    color:#f87171;
}

.grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
}

.metric{
    background:rgba(255,255,255,0.04);
    border-radius:18px;
    padding:18px;
}

.metricLabel{
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:1px;
    color:rgba(255,255,255,0.5);
    margin-bottom:8px;
}

.metricValue{
    font-size:22px;
    font-weight:800;
}

.metricSub{
    margin-top:6px;
    font-size:12px;
    color:rgba(255,255,255,0.6);
}

.liveClock{
    margin-top:20px;
    background:rgba(255,255,255,0.04);
    border-radius:18px;
    padding:18px;
}

.liveClockTime{
    font-size:34px;
    font-weight:800;
}

.liveClockSub{
    margin-top:4px;
    color:rgba(255,255,255,0.6);
}

.databaseStats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
    margin-top:16px;
}

.stat{
    background:rgba(255,255,255,0.04);
    border-radius:16px;
    padding:16px;
    text-align:center;
}

.statNumber{
    font-size:24px;
    font-weight:800;
}

.statLabel{
    margin-top:4px;
    color:rgba(255,255,255,0.55);
    font-size:12px;
}

.marketList{
    margin-top:18px;
    max-height:680px;
    overflow-y:auto;
}

.marketItem{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.06);
    border-radius:16px;
    padding:16px;
    margin-bottom:10px;
    cursor:pointer;
    transition:0.15s ease;
}

.marketItem:hover{
    background:rgba(255,255,255,0.08);
}

.marketItemTitle{
    font-weight:700;
    margin-bottom:4px;
}

.marketItemSub{
    font-size:12px;
    color:rgba(255,255,255,0.6);
}

.badge{
    display:inline-block;
    margin-top:10px;
    background:rgba(59,130,246,0.18);
    color:#93c5fd;
    padding:8px 12px;
    border-radius:999px;
    font-size:12px;
    font-weight:700;
}

@media(max-width:1100px){

    .layout{
        grid-template-columns:1fr;
    }

    .grid{
        grid-template-columns:1fr;
    }

}

.footer{
    margin-top:40px;
    padding:30px;
    border-top:1px solid rgba(255,255,255,0.08);
}

.footerInner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    color:rgba(255,255,255,0.55);
    font-size:14px;
    flex-wrap:wrap;
}

.footerLinks{
    display:flex;
    gap:18px;
}

.footerLinks a{
    color:rgba(255,255,255,0.6);
    text-decoration:none;
}

.footerLinks a:hover{
    color:white;
}
.seoSection{
    margin-top:60px;
    max-width:1600px;
    margin-left:auto;
    margin-right:auto;
    padding:0 30px;
}

.seoSection h2{
    font-size:32px;
    margin-bottom:24px;
    font-weight:800;
    letter-spacing:-0.5px;
}

.seoGrid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:20px;
}

.seoCard{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:22px;
    padding:24px;
    backdrop-filter:blur(12px);
}

.seoCard h3{
    margin-top:0;
    margin-bottom:12px;
    font-size:20px;
    font-weight:700;
}

.seoCard p{
    color:rgba(255,255,255,0.7);
    line-height:1.7;
    font-size:15px;
}

.linkGrid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:16px;
}

.linkGrid a{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:18px;
    padding:18px;
    color:white;
    text-decoration:none;
    transition:0.2s ease;
    font-weight:600;
}

.linkGrid a:hover{
    background:rgba(255,255,255,0.08);
    transform:translateY(-2px);
}

.seoText{
    color:rgba(255,255,255,0.72);
    line-height:1.9;
    max-width:1000px;
    font-size:16px;
}

.faqItem{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:20px;
    padding:22px;
    margin-bottom:18px;
}

.faqItem h3{
    margin-top:0;
    margin-bottom:10px;
    font-size:20px;
}

.faqItem p{
    color:rgba(255,255,255,0.72);
    line-height:1.7;
}

@media(max-width:768px){

    .seoSection{
        padding:0 20px;
    }

    .seoSection h2{
        font-size:26px;
    }

}
.footer{
    margin-top:60px;
    padding:40px 20px;
    border-top:1px solid rgba(255,255,255,0.08);
    text-align:center;
}

.footerLinks{
    display:flex;
    justify-content:center;
    gap:24px;
    flex-wrap:wrap;
    margin-bottom:16px;
}

.footerLinks a{
    color:rgba(255,255,255,0.72);
    text-decoration:none;
    font-size:14px;
    transition:0.2s ease;
}

.footerLinks a:hover{
    color:white;
}

.footerText{
    color:rgba(255,255,255,0.45);
    font-size:13px;
}
/* =========================
   SEO PAGES
========================= */

.seoSection{
    margin-top:40px;
}

.seoSection h2{
    font-size:28px;
    margin-bottom:18px;
    font-weight:700;
    color:white;
}

.seoText{
    color:rgba(255,255,255,0.78);
    line-height:1.8;
    font-size:16px;
    margin-bottom:20px;
    max-width:900px;
}

/* =========================
   LINK GRID
========================= */

.linkGrid{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:20px;
}

.linkGrid a{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    padding:14px 18px;
    border-radius:14px;
    color:white;
    text-decoration:none;
    transition:0.2s ease;
    font-size:14px;
}

.linkGrid a:hover{
    background:rgba(255,255,255,0.10);
    transform:translateY(-2px);
}

/* =========================
   FOOTER
========================= */

.footer{
    margin-top:70px;
    padding:40px 20px;
    border-top:1px solid rgba(255,255,255,0.08);
    text-align:center;
}

.footerLinks{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:16px;
}

.footerLinks a{
    color:rgba(255,255,255,0.72);
    text-decoration:none;
    font-size:14px;
    transition:0.2s ease;
}

.footerLinks a:hover{
    color:white;
}

.footerText{
    color:rgba(255,255,255,0.45);
    font-size:13px;
}

/* =========================
   GENERIC PAGE PANEL
========================= */

.panel p{
    margin-bottom:20px;
}
/* =========================
   SEO / CONTENT PAGES
========================= */

.seoSection{
    margin-top:40px;
}

.seoSection h2{
    font-size:28px;
    margin-bottom:18px;
    font-weight:700;
    color:white;
}

.seoText{
    color:rgba(255,255,255,0.78);
    line-height:1.8;
    font-size:16px;
    margin-bottom:20px;
    max-width:900px;
}

/* =========================
   LINK GRID
========================= */

.linkGrid{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:20px;
}

.linkGrid a{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    padding:14px 18px;
    border-radius:14px;
    color:white;
    text-decoration:none;
    transition:0.2s ease;
    font-size:14px;
}

.linkGrid a:hover{
    background:rgba(255,255,255,0.10);
    transform:translateY(-2px);
}

/* =========================
   FOOTER
========================= */

.footer{
    margin-top:70px;
    padding:40px 20px;
    border-top:1px solid rgba(255,255,255,0.08);
    text-align:center;
}

.footerLinks{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:16px;
}

.footerLinks a{
    color:rgba(255,255,255,0.72);
    text-decoration:none;
    font-size:14px;
    transition:0.2s ease;
}

.footerLinks a:hover{
    color:white;
}

.footerText{
    color:rgba(255,255,255,0.45);
    font-size:13px;
}

/* =========================
   GENERIC CONTENT SPACING
========================= */

.panel p{
    margin-bottom:20px;
}
/* =========================
   GLOBAL LOGO
========================= */

.siteLogo{
    position:fixed;
    top:22px;
    right:28px;
    z-index:999;
}

.siteLogo img{
    width:85px;
    height:auto;
    transition:0.2s ease;
}

.siteLogo img:hover{
    transform:scale(1.04);
    opacity:0.9;
}

@media(max-width:768px){

    .siteLogo{
        top:16px;
        right:16px;
    }

    .siteLogo img{
        width:65px;
    }

}