:root{
    --bg:#090b12;
    --panel:rgba(255,255,255,.075);
    --panel2:rgba(255,255,255,.11);
    --text:#eef2ff;
    --muted:#9aa4bb;
    --line:rgba(255,255,255,.13);
    --accent:#7c5cff;
    --accent2:#22d3ee;
    --danger:#ff5277
}
*{
    box-sizing:border-box
}
body{
    margin:0;
    font-family:Inter,ui-sans-serif,system-ui,-apple-system,Segoe UI,sans-serif;
    background:radial-gradient(circle at top left,#17203a,#090b12 35%,#07080d);
    color:var(--text);
    min-height:100vh
}
a{
    color:inherit;
    text-decoration:none
}
button,input{
    font:inherit
}
.glow{
    position:fixed;
    filter:blur(90px);
    opacity:.38;
    pointer-events:none
}
.glow-a{
    width:360px;
    height:360px;
    background:var(--accent);
    top:-120px;
    right:18%
}
.glow-b{
    width:280px;
    height:280px;
    background:var(--accent2);
    bottom:0;
    left:4%
}
.nav{
    height:76px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 6vw;
    border-bottom:1px solid var(--line);
    backdrop-filter:blur(18px);
    position:sticky;
    top:0;
    z-index:10;
    background:rgba(9,11,18,.62)
}
.brand,.nav-actions{
    display:flex;
    align-items:center;
    gap:16px
}
.brand{
    font-weight:800
}
.brand-mark{
    width:36px;
    height:36px;
    border-radius:12px;
    background:linear-gradient(135deg,var(--accent),var(--accent2));
    display:grid;
    place-items:center
}
.nav-actions a,.ghost{
    color:var(--muted);
    background:none;
    border:0;
    cursor:pointer
}
.page{
    width:min(1180px,88vw);
    margin:0 auto;
    padding:54px 0 80px
}
.hero{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:44px;
    align-items:center;
    min-height:62vh
}
.eyebrow{
    text-transform:uppercase;
    letter-spacing:.16em;
    color:var(--accent2);
    font-size:12px;
    font-weight:800
}
.hero h1,.dashboard-head h1,.auth-card h1{
    font-size:clamp(42px,7vw,72px);
    line-height:.95;
    margin:12px 0
}
.lead{
    font-size:20px;
    color:var(--muted);
    line-height:1.6;
    max-width:720px
}
.lead.small{
    font-size:16px
}
.hero-actions{
    display:flex;
    gap:14px;
    margin-top:30px
}
.button{
    border:0;
    border-radius:16px;
    padding:14px 20px;
    font-weight:800;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    justify-content:center
}
.primary{
    background:linear-gradient(135deg,var(--accent),#5eead4);
    color:#fff;
    box-shadow:0 20px 50px rgba(124,92,255,.28)
}
.secondary{
    background:var(--panel2);
    border:1px solid var(--line);
    color:var(--text)
}
.full{
    width:100%
}
.terminal-card,.card,.panel,.auth-card,.profile-card,.share-card,.stat{
    background:linear-gradient(180deg,rgba(255,255,255,.1),rgba(255,255,255,.045));
    border:1px solid var(--line);
    border-radius:28px;
    box-shadow:0 30px 90px rgba(0,0,0,.3)
}
.terminal-card{
    padding:20px;
    overflow:hidden
}
.terminal-top{
    display:flex;
    gap:8px;
    margin-bottom:18px
}
.terminal-top span{
    width:12px;
    height:12px;
    border-radius:50%;
    background:rgba(255,255,255,.35)
}
pre{
    white-space:pre-wrap;
    color:#c8f7ff;
    line-height:1.7;
    font-size:15px
}
.grid{
    display:grid;
    gap:18px
}
.three{
    grid-template-columns:repeat(3,1fr)
}
.card{
    padding:24px
}
.card p,.panel p,.auth-card p,.share-card p,.profile-card p{
    color:var(--muted);
    line-height:1.55
}
.auth-wrap{
    display:grid;
    place-items:center;
    min-height:65vh
}
.auth-card{
    width:min(470px,100%);
    padding:34px
}
label{
    display:grid;
    gap:8px;
    margin:16px 0;
    color:var(--muted)
}
input{
    width:100%;
    padding:15px 16px;
    border-radius:16px;
    border:1px solid var(--line);
    background:rgba(255,255,255,.07);
    color:var(--text);
    outline:none
}
input:focus{
    border-color:rgba(124,92,255,.75)
}
.dashboard-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px
}
.avatar{
    width:92px;
    height:92px;
    border-radius:28px;
    border:1px solid var(--line);
    background:#fff
}
.stats{
    grid-template-columns:repeat(3,1fr);
    margin:28px 0 16px
}
.stat{
    padding:24px
}
.stat span{
    font-size:30px;
    font-weight:900
}
.stat p{
    margin:.35rem 0 0;
    color:var(--muted)
}
.progress{
    height:10px;
    background:rgba(255,255,255,.08);
    border-radius:99px;
    overflow:hidden;
    margin-bottom:24px
}
.progress div{
    height:100%;
    background:linear-gradient(90deg,var(--accent),var(--accent2));
    border-radius:99px
}
.panel{
    padding:26px;
    margin-top:22px
}
.upload-panel{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:22px;
    align-items:center
}
.upload-box{
    display:grid;
    gap:14px
}
.upload-box input[type=file]{
    position:absolute;
    left:-9999px
}
.dropzone{
    border:1px dashed rgba(255,255,255,.3);
    border-radius:24px;
    padding:30px;
    display:grid;
    place-items:center;
    text-align:center;
    min-height:150px;
    background:rgba(255,255,255,.045);
    cursor:pointer;
    color:var(--text)
}
.dropzone span{
    display:block;
    margin-top:10px;
    color:var(--muted);
    font-size:14px
}
.panel-title{
    display:flex;
    justify-content:space-between;
    gap:20px;
    align-items:center
}
.file-list{
    display:grid;
    gap:12px;
    margin-top:18px
}
.file-row{
    display:grid;
    grid-template-columns:58px 1fr auto;
    gap:16px;
    align-items:center;
    padding:16px;
    border:1px solid var(--line);
    border-radius:22px;
    background:rgba(255,255,255,.045)
}
.file-icon{
    width:54px;
    height:54px;
    border-radius:18px;
    background:rgba(124,92,255,.2);
    display:grid;
    place-items:center;
    font-size:13px;
    font-weight:900;
    color:#dcd6ff
}
.file-icon.big{
    width:80px;
    height:80px;
    margin:0 auto 16px;
    border-radius:26px
}
.file-main{
    display:grid;
    gap:5px;
    min-width:0
}
.file-main span{
    color:var(--muted);
    font-size:14px
}
.file-main code{
    color:#92f2ff;
    overflow:hidden;
    text-overflow:ellipsis
}
.row-actions{
    display:flex;
    gap:8px;
    align-items:center;
    flex-wrap:wrap;
    justify-content:flex-end
}
.mini{
    border:1px solid var(--line);
    background:rgba(255,255,255,.06);
    color:var(--text);
    border-radius:12px;
    padding:9px 11px;
    cursor:pointer
}
.danger{
    color:#ffd6df;
    border-color:rgba(255,82,119,.4)
}
.empty{
    padding:30px;
    text-align:center;
    color:var(--muted);
    border:1px dashed var(--line);
    border-radius:22px
}
.profile-layout{
    display:grid;
    grid-template-columns:320px 1fr;
    gap:24px
}
.profile-card,.share-card{
    text-align:center;
    padding:34px
}
.profile-avatar{
    width:130px;
    height:130px;
    border-radius:34px;
    background:white
}
.badge{
    display:inline-flex;
    margin-top:10px;
    padding:8px 12px;
    border-radius:999px;
    background:rgba(34,211,238,.14);
    color:#9ff6ff
}
.settings-form{
    max-width:520px
}
.profile-metrics{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
    margin-top:26px
}
.profile-metrics div{
    background:rgba(255,255,255,.05);
    border:1px solid var(--line);
    border-radius:20px;
    padding:18px
}
.profile-metrics strong{
    display:block;
    font-size:28px
}
.profile-metrics span{
    color:var(--muted)
}
.share-card{
    width:min(520px,100%);
    margin:8vh auto
}
@media(max-width:860px){
    .hero,.upload-panel,.profile-layout{
        grid-template-columns:1fr
    }
    .three,.stats,.profile-metrics{
        grid-template-columns:1fr
    }
    .file-row{
        grid-template-columns:1fr
    }
    .row-actions{
        justify-content:flex-start
    }
    .nav{
        padding:0 4vw
    }
    .page{
        width:min(94vw,1180px)
    }
}
 .notice{
    margin:16px 0;
    padding:14px 16px;
    border-radius:16px;
    border:1px solid var(--line);
    background:rgba(255,255,255,.07);
    color:var(--text)
}
.notice.error{
    border-color:rgba(255,82,119,.45);
    background:rgba(255,82,119,.12);
    color:#ffd6df
}
 