:root{
--bg:#081018;
--panel:#111b25;
--panel2:rgba(17,27,37,.76);
--line:rgba(255,255,255,.06);
--text:#eef4fa;
--muted:#8b9aaa;
--green:#4caf2e;
--green2:#82ff7a;
--chrome:#d8dde3;
--shadow:0 20px 50px rgba(0,0,0,.35);
}

*{
box-sizing:border-box;
font-family:Poppins,Segoe UI,sans-serif;
}

body{
margin:0;
background:
radial-gradient(circle at top left, rgba(76,175,46,.14), transparent 28%),
radial-gradient(circle at bottom right, rgba(130,255,122,.08), transparent 25%),
linear-gradient(135deg,#081018,#0f1822,#111b25);
color:var(--text);
min-height:100vh;
overflow-x:hidden;
}

.bg-glow{
position:fixed;
inset:0;
pointer-events:none;
background:
radial-gradient(circle at 20% 20%, rgba(76,175,46,.08), transparent 20%),
radial-gradient(circle at 80% 80%, rgba(130,255,122,.05), transparent 20%);
filter:blur(30px);
}

.layout{
display:grid;
grid-template-columns:280px 1fr;
min-height:100vh;
position:relative;
z-index:1;
}

.sidebar{
background:rgba(7,12,18,.72);
backdrop-filter:blur(18px);
border-right:1px solid var(--line);
padding:26px;
}

.logo-wrap{
display:flex;
gap:14px;
align-items:center;
margin-bottom:34px;
}

.logo-mark{
width:64px;
height:64px;
border-radius:18px;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
font-weight:900;
background:linear-gradient(135deg,#ffffff,#c5ccd4 45%,#4caf2e 46%,#82ff7a);
color:#081018;
box-shadow:
0 0 25px rgba(130,255,122,.18),
inset 0 1px 0 rgba(255,255,255,.45);
}

.logo-mark span{
color:white;
}

.logo-title{
font-size:28px;
font-weight:900;
letter-spacing:-1px;
}

.logo-title span{
color:#7dff70;
}

.logo-sub{
font-size:12px;
color:var(--muted);
letter-spacing:.08em;
text-transform:uppercase;
}

nav{
display:flex;
flex-direction:column;
gap:10px;
}

nav button{
background:transparent;
border:1px solid transparent;
color:#d9e4ef;
padding:14px 16px;
border-radius:16px;
text-align:left;
cursor:pointer;
font-weight:600;
transition:.2s ease;
}

nav button:hover,
nav button.active{
background:linear-gradient(135deg, rgba(255,255,255,.05), rgba(76,175,46,.08));
border-color:rgba(130,255,122,.18);
box-shadow:0 0 18px rgba(130,255,122,.08);
}

.content{
padding:34px;
}

.topbar{
display:flex;
justify-content:space-between;
align-items:flex-start;
margin-bottom:26px;
gap:20px;
}

.topbar h1{
margin:0 0 8px;
font-size:40px;
}

.topbar p{
margin:0;
color:var(--muted);
max-width:760px;
}

.primary-btn,
.ghost-btn{
padding:14px 20px;
border-radius:16px;
font-weight:800;
cursor:pointer;
}

.primary-btn{
border:none;
background:linear-gradient(135deg,#4caf2e,#82ff7a);
color:#081018;
box-shadow:
0 0 24px rgba(130,255,122,.22),
0 12px 30px rgba(0,0,0,.25);
}

.ghost-btn{
background:rgba(255,255,255,.04);
color:white;
border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(10px);
}

.cards{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:18px;
margin-bottom:22px;
}

.card,
.panel{
background:var(--panel2);
backdrop-filter:blur(18px);
border:1px solid rgba(255,255,255,.06);
border-radius:26px;
padding:22px;
box-shadow:var(--shadow);
}

.card small{
color:var(--muted);
display:block;
margin-bottom:10px;
font-weight:700;
}

.card strong{
font-size:36px;
font-weight:900;
}

.panel-head{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:18px;
}

table{
width:100%;
border-collapse:collapse;
}

th,td{
padding:16px;
border-bottom:1px solid rgba(255,255,255,.05);
text-align:left;
}

th{
font-size:12px;
letter-spacing:.08em;
text-transform:uppercase;
color:#90a1b2;
}

.status{
display:inline-flex;
padding:8px 12px;
border-radius:999px;
font-size:12px;
font-weight:800;
}

.in{
background:rgba(76,175,46,.14);
color:#82ff7a;
border:1px solid rgba(130,255,122,.18);
}

@media(max-width:1000px){
.layout{
grid-template-columns:1fr;
}

.cards{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:640px){
.cards{
grid-template-columns:1fr;
}

.content{
padding:18px;
}
}
