/* =======================================
   The Most Useless Website Ever
   style.css
   Part 1
======================================= */

/* ---------- Google Font ---------- */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- Variables ---------- */

:root{

    --bg:#09090b;
    --bg2:#14141b;

    --card:rgba(255,255,255,.07);

    --border:rgba(255,255,255,.12);

    --text:#ffffff;

    --text2:#b6b6c5;

    --accent:#6d7cff;

    --accent2:#8b5cf6;

    --success:#38d39f;

    --danger:#ff5e7d;

    --shadow:0 15px 40px rgba(0,0,0,.45);

    --radius:24px;

}

/* ---------- Reset ---------- */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    background:linear-gradient(135deg,#07070a,#101018,#141423);

    color:var(--text);

    min-height:100vh;

    overflow-x:hidden;

}

/* ---------- Animated Background ---------- */

#backgroundGlow{

    position:fixed;

    inset:0;

    pointer-events:none;

    overflow:hidden;

    z-index:-2;

}

#backgroundGlow::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    border-radius:50%;

    background:radial-gradient(circle,var(--accent),transparent 70%);

    opacity:.12;

    top:-250px;

    left:-150px;

    animation:floatGlow 18s linear infinite;

}

#backgroundGlow::after{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

    border-radius:50%;

    background:radial-gradient(circle,#00d4ff,transparent 70%);

    opacity:.08;

    bottom:-250px;

    right:-150px;

    animation:floatGlow2 24s linear infinite;

}

@keyframes floatGlow{

    0%{

        transform:translate(0,0);

    }

    50%{

        transform:translate(150px,120px);

    }

    100%{

        transform:translate(0,0);

    }

}

@keyframes floatGlow2{

    0%{

        transform:translate(0,0);

    }

    50%{

        transform:translate(-140px,-100px);

    }

    100%{

        transform:translate(0,0);

    }

}

/* ---------- Header ---------- */

header{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:28px 8%;

    position:sticky;

    top:0;

    backdrop-filter:blur(18px);

    background:rgba(9,9,11,.55);

    border-bottom:1px solid rgba(255,255,255,.08);

    z-index:999;

}

.logo{

    font-size:28px;

    font-weight:800;

    letter-spacing:1px;

    color:white;

}

/* ---------- Navigation ---------- */

nav{

    display:flex;

    gap:20px;

}

nav a{

    color:var(--text2);

    text-decoration:none;

    font-weight:600;

    transition:.3s;

    padding:10px 18px;

    border-radius:999px;

}

nav a:hover{

    color:white;

    background:rgba(255,255,255,.08);

}

nav a.active{

    color:white;

    background:linear-gradient(135deg,var(--accent),var(--accent2));

}

/* ---------- Main ---------- */

main{

    width:min(1200px,92%);

    margin:auto;

}

/* ---------- Hero ---------- */

.hero{

    text-align:center;

    padding:110px 0 70px;

}

.smallHero{

    padding:80px 0 40px;

}

.hero h1{

    font-size:clamp(3rem,8vw,5.8rem);

    line-height:1;

    font-weight:900;

    margin-bottom:30px;

}

.hero p{

    color:var(--text2);

    font-size:1.25rem;

    max-width:700px;

    margin:auto;

    line-height:1.7;

}

/* ---------- Buttons ---------- */

.buttons{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:18px;

    margin-top:45px;

}

button,
.primaryButton,
.secondaryButton{

    padding:16px 34px;

    border-radius:999px;

    border:none;

    cursor:pointer;

    font-size:1rem;

    font-weight:700;

    transition:.3s;

    text-decoration:none;

    display:inline-flex;

    justify-content:center;

    align-items:center;

}

.primaryButton,
button{

    background:linear-gradient(135deg,var(--accent),var(--accent2));

    color:white;

}

.primaryButton:hover,
button:hover{

    transform:translateY(-4px);

    box-shadow:0 12px 30px rgba(109,124,255,.35);

}

.secondaryButton{

    background:rgba(255,255,255,.08);

    color:white;

    border:1px solid rgba(255,255,255,.08);

}

.secondaryButton:hover{

    background:rgba(255,255,255,.14);

}

/* ---------- Glass Cards ---------- */

.glassCard{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:var(--radius);

    padding:40px;

    margin:35px 0;

    backdrop-filter:blur(18px);

    box-shadow:var(--shadow);

    transition:.35s;

}

.glassCard:hover{

    transform:translateY(-6px);

}

.glassCard h2{

    font-size:2rem;

    margin-bottom:20px;

}

.glassCard p{

    color:var(--text2);

    line-height:1.8;

    margin-bottom:18px;

}

/* ---------- Status Grid ---------- */

.statusGrid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:22px;

    margin-top:30px;

}

.statusBox{

    background:rgba(255,255,255,.05);

    border-radius:20px;

    padding:30px;

    border:1px solid rgba(255,255,255,.08);

    transition:.3s;

}

.statusBox:hover{

    transform:translateY(-5px);

    background:rgba(255,255,255,.08);

}

.statusBox h3{

    margin-bottom:12px;

}

.statusBox p{

    margin:0;

    color:var(--text2);

}

/* ---------- Utility ---------- */

.centerCard{

    text-align:center;

}

hr{

    margin:35px 0;

    border:none;

    border-top:1px solid rgba(255,255,255,.08);

}

.hidden{

    display:none !important;

}

/* =======================================
   PART 2
   Forms • FAQ • Tables • Lists • Footer
======================================= */

/* ---------- Forms ---------- */

form{

    display:flex;

    flex-direction:column;

    gap:25px;

    margin-top:25px;

}

.inputGroup{

    display:flex;

    flex-direction:column;

    gap:10px;

}

.inputGroup label{

    font-weight:600;

    color:white;

}

input,
textarea{

    width:100%;

    padding:18px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.12);

    border-radius:18px;

    color:white;

    font-size:1rem;

    font-family:inherit;

    outline:none;

    transition:.3s;

}

textarea{

    resize:vertical;

    min-height:180px;

}

input::placeholder,
textarea::placeholder{

    color:#8d8d99;

}

input:focus,
textarea:focus{

    border-color:var(--accent);

    background:rgba(255,255,255,.09);

    box-shadow:0 0 25px rgba(109,124,255,.25);

}

/* ---------- FAQ ---------- */

.faqItem{

    background:rgba(255,255,255,.05);

    border-radius:18px;

    padding:25px;

    margin-top:18px;

    border:1px solid rgba(255,255,255,.08);

    transition:.3s;

}

.faqItem:hover{

    transform:translateY(-4px);

    border-color:rgba(109,124,255,.4);

}

.faqItem h3{

    margin-bottom:12px;

    color:white;

}

.faqItem p{

    margin-bottom:8px;

}

/* ---------- Tables ---------- */

.aboutTable{

    width:100%;

    border-collapse:collapse;

    overflow:hidden;

    border-radius:18px;

    margin-top:20px;

}

.aboutTable tr{

    transition:.25s;

}

.aboutTable tr:nth-child(even){

    background:rgba(255,255,255,.04);

}

.aboutTable tr:hover{

    background:rgba(255,255,255,.08);

}

.aboutTable td{

    padding:18px;

    border-bottom:1px solid rgba(255,255,255,.08);

    color:var(--text2);

}

.aboutTable td:first-child{

    color:white;

    font-weight:600;

}

/* ---------- Lists ---------- */

.aboutList{

    margin-top:20px;

    padding-left:25px;

}

.aboutList li{

    margin-bottom:18px;

    color:var(--text2);

    line-height:1.7;

}

/* ---------- Footer ---------- */

footer{

    text-align:center;

    padding:70px 0 40px;

    color:#8d8d99;

    font-size:.95rem;

}

footer p{

    margin:8px 0;

}

/* ---------- Toast ---------- */

#toast{

    position:fixed;

    bottom:35px;

    left:50%;

    transform:translateX(-50%) translateY(120px);

    background:rgba(20,20,25,.95);

    color:white;

    padding:16px 28px;

    border-radius:999px;

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    transition:.4s;

    z-index:99999;

    pointer-events:none;

    opacity:0;

}

#toast.show{

    transform:translateX(-50%) translateY(0);

    opacity:1;

}

/* ---------- Misc ---------- */

.tinyText{

    font-size:.9rem;

    opacity:.65;

}

.errorNumber{

    font-size:7rem;

    font-weight:900;

    line-height:1;

    margin-bottom:20px;

    background:linear-gradient(
        135deg,
        var(--accent),
        var(--accent2)
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

}

.errorContainer{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:60px 0;

}

.errorCard{

    width:min(900px,92%);

    text-align:center;

}

/* ---------- Inputs on Dark Theme ---------- */

input:-webkit-autofill{

    -webkit-box-shadow:0 0 0 1000px #171722 inset;

    -webkit-text-fill-color:white;

}

/* ---------- Scrollbar ---------- */

::-webkit-scrollbar{

    width:12px;

}

::-webkit-scrollbar-track{

    background:#0e0e13;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(
        var(--accent),
        var(--accent2)
    );

    border-radius:999px;

}

::-webkit-scrollbar-thumb:hover{

    background:#7d8dff;

}

/* ---------- Selection ---------- */

::selection{

    background:var(--accent);

    color:white;

}

/* ---------- Responsive ---------- */

@media(max-width:900px){

header{

    flex-direction:column;

    gap:20px;

}

nav{

    flex-wrap:wrap;

    justify-content:center;

}

.hero h1{

    font-size:3.4rem;

}

.glassCard{

    padding:30px;

}

.buttons{

    flex-direction:column;

}

button,
.primaryButton,
.secondaryButton{

    width:100%;

}

.statusGrid{

    grid-template-columns:1fr;

}

.aboutTable td{

    display:block;

    width:100%;

}

.aboutTable tr{

    display:block;

    margin-bottom:20px;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

}

}

/* ======================================
Achievement Popup
====================================== */

.achievementPopup{

position:fixed;

top:30px;

right:-450px;

width:340px;

padding:25px;

background:rgba(20,20,30,.95);

border:1px solid rgba(255,255,255,.1);

backdrop-filter:blur(20px);

border-radius:20px;

box-shadow:0 20px 40px rgba(0,0,0,.45);

transition:.5s;

z-index:999999;

}

.achievementPopup.show{

right:30px;

}

.achievementPopup h2{

margin-bottom:10px;

font-size:1.3rem;

}

.achievementPopup p{

color:#b6b6c5;

line-height:1.6;

}