:root{
  --bg:#0b1020;
  --card:#0f1724;
  --accent:#6ee7b7;
  --muted:#9aa4b2;
}

/* Base page */
body{
  font-family:Inter,system-ui,Segoe UI,Roboto,'Helvetica Neue',Arial;
  line-height:1.4;
  background:linear-gradient(180deg,#061021 0%, #071428 100%);
  color:#e6eef6;
  padding:40px;
  min-height:100vh;
}

/* Card layout container */
.card-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:20px;
  max-width:1200px;
  margin:0 auto;
}

/* Individual cards */
.card{
  background:var(--card);
  padding:28px;
  border-radius:12px;
  box-shadow:0 8px 30px rgba(2,6,23,0.6);
}

/* Headings */
h1{
  margin:0 0 8px;
  font-size:18px;
  border-bottom:1px solid rgba(255,255,255,0.1);
  padding-bottom:6px;
}

h2{
  margin-top:24px;
  font-size:16px;
  border-bottom:1px solid rgba(255,255,255,0.1);
  padding-bottom:6px;
}

/* Text */
p{
  margin:8px 0;
  color:var(--muted);
}

/* Info rows inside cards */
.info{
  display:grid;
  grid-template-columns:140px 1fr;
  gap:8px 18px;
  align-items:center;
  margin:14px 0;
}

.label{
  color:var(--muted);
  font-size:16px;
}

.value{
  font-family:monospace;
  background:rgba(255,255,255,0.03);
  padding:8px;
  border-radius:6px;
}

/* Mods list */
.mods{
  margin-top:12px;
}

.mods ul{
  margin:6px 0 0 18px;
}

a.modlink{
  color:var(--accent);
  text-decoration:none;
}

a.modlink:hover{
  text-decoration:underline;
}

/* Actions / buttons */
.actions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:18px;
  font-size:18px;
}

button{
  background:transparent;
  border:1px solid rgba(255,255,255,0.06);
  color:inherit;
  padding:8px 12px;
  border-radius:8px;
  cursor:pointer;
  font-size:18px;
}

button.primary{
  background:var(--accent);
  color:#04221a;
  border:none;
}

button.mod{
  background:#e76e6e;
  color:#04221a;
  border:none;
}

/* Footer */
footer{
  margin-top:16px;
  font-size:12px;
  color:var(--muted);
}

/* Mobile tweaks */
@media (max-width:520px){
  .info{
    grid-template-columns:1fr;
  }
}
