:root{
  --bg:#070b14;
  --panel:#111827;
  --panel2:#142033;
  --border:#26364f;
  --text:#f8fafc;
  --muted:#a8c5ff;
  --accent:#ED4245;
  --green:#20e07a;
  --blue:#2f80ed;
}
*{box-sizing:border-box}
body{
  margin:0;
  background:radial-gradient(circle at top,#132033 0,#070b14 45%,#05070d 100%);
  color:var(--text);
  font-family:Arial,Helvetica,sans-serif;
}
a{color:#7db2ff;font-weight:700}
header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 24px;
  background:#0b111d;
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  z-index:10;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand img{
  width:42px;
  height:42px;
  object-fit:cover;
  border-radius:50%;
  border:1px solid var(--border);
}
.brand h1{
  font-size:18px;
  margin:0;
}
.brand p{
  margin:2px 0 0;
  color:var(--muted);
  font-size:12px;
}
nav{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
nav a, nav button, button, .btn{
  background:var(--accent);
  color:white!important;
  border:0;
  border-radius:8px;
  padding:10px 14px;
  text-decoration:none;
  font-weight:800;
  cursor:pointer;
}
main{
  max-width:1200px;
  margin:0 auto;
  padding:28px;
}
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:18px;
}
.card{
  background:linear-gradient(135deg,var(--panel),var(--panel2));
  border:1px solid var(--border);
  border-radius:16px;
  padding:22px;
  box-shadow:0 20px 50px rgba(0,0,0,.25);
}
.card h2,.card h3{margin-top:0}
.stat{
  font-size:34px;
  font-weight:900;
  color:var(--blue);
}
.price{
  font-size:34px;
  color:var(--green);
  font-weight:900;
}
input,select,textarea{
  width:100%;
  padding:12px;
  border-radius:10px;
  border:1px solid var(--border);
  background:#0b1220;
  color:white;
  margin:8px 0 14px;
}
label{
  color:var(--muted);
  font-weight:700;
}
table{
  width:100%;
  border-collapse:collapse;
}
td,th{
  padding:12px;
  border-bottom:1px solid var(--border);
  text-align:left;
}
.badge{
  display:inline-block;
  padding:4px 8px;
  border-radius:999px;
  background:#1d3b2b;
  color:#7dffb0;
  font-size:12px;
  font-weight:800;
}
.alert{
  background:#3b1d2d;
  border:1px solid #b54762;
  padding:14px;
  border-radius:10px;
  margin:12px 0;
}
.success{
  background:#12392d;
  border:1px solid #1f9d6b;
  padding:14px;
  border-radius:10px;
  margin:12px 0;
}
footer{
  text-align:center;
  color:var(--muted);
  padding:30px;
  font-size:12px;
}
@media(max-width:800px){
  header{display:block}
  nav{justify-content:flex-start;margin-top:12px}
  main{padding:16px}
}
/* DayZ apocalypse dashboard wallpaper */
body {
  background:
    linear-gradient(rgba(2,6,23,0.88), rgba(2,6,23,0.92)),
    url('/public/img/dayz-apocalypse-bg.jpg') center center / cover fixed no-repeat !important;
}

.container {
  backdrop-filter: blur(1px);
}

.card {
  background: rgba(15, 23, 42, 0.88) !important;
  border: 1px solid rgba(51, 65, 85, 0.9) !important;
}

.topnav {
  background: rgba(2, 6, 23, 0.92) !important;
  backdrop-filter: blur(8px);
}

body{
  background:
    linear-gradient(rgba(2,6,23,.85),rgba(2,6,23,.90)),
    url('/public/img/dayz-apocalypse-bg.jpg')
    center center / cover fixed no-repeat !important;
}

.card{
  background:rgba(15,23,42,.88)!important;
  backdrop-filter:blur(4px);
}

.topnav{
  background:rgba(2,6,23,.92)!important;
  backdrop-filter:blur(8px);
}

