:root{
  --bg:#0b0b0c;
  --card:#121214;
  --card2:#0f0f10;
  --text:#f3f4f6;
  --muted:#a1a1aa;
  --border:rgba(255,255,255,.10);
  --shadow:0 18px 60px rgba(0,0,0,.45);
  --radius:18px;
  --accent:#a07845; /* marrón del logo aproximado */
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: radial-gradient(1200px 800px at 20% 10%, rgba(160,120,69,.18), transparent 55%),
              radial-gradient(900px 700px at 90% 30%, rgba(255,255,255,.06), transparent 50%),
              var(--bg);
  color:var(--text);
}

html.locked body{ visibility:hidden; }

.wrap{
  max-width:1100px;
  margin:0 auto;
  padding:28px 18px 40px;
}

.top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:18px;
}

.brand{display:flex; align-items:center; gap:12px;}
.logo{
  width:40px; height:40px;
  border-radius:14px;
  background: linear-gradient(180deg, rgba(160,120,69,.9), rgba(160,120,69,.45));
  box-shadow: 0 10px 30px rgba(160,120,69,.25);
}
.name{font-weight:800; letter-spacing:.2px}
.tag{font-size:12px; color:var(--muted); margin-top:2px}

.user{display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-end}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  border:1px solid var(--border);
  border-radius:999px;
  background: rgba(255,255,255,.04);
}
.dot{
  width:8px; height:8px; border-radius:50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34,197,94,.12);
}

.card{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  padding:22px;
}

h1{margin:0 0 6px 0; font-size:26px}
h3{margin:0 0 10px 0; font-size:15px}
.muted{color:var(--muted); line-height:1.45}
code{color:#e5e7eb}

.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin-top:16px;
}
@media (max-width: 860px){
  .grid{grid-template-columns:1fr}
}

.box{
  padding:16px;
  border:1px solid var(--border);
  border-radius: 16px;
  background: rgba(0,0,0,.22);
}

.row{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}

.btn{
  border:1px solid rgba(255,255,255,.14);
  background: rgba(160,120,69,.22);
  color: var(--text);
  padding:10px 14px;
  border-radius: 12px;
  cursor:pointer;
  font-weight:650;
}
.btn:hover{filter:brightness(1.1)}
.btn:active{transform: translateY(1px)}

.btn-ghost{
  background: rgba(255,255,255,.06);
}

.pre{
  margin:10px 0 0 0;
  padding:12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.35);
  overflow:auto;
  min-height:110px;
  font-size:12px;
  line-height:1.35;
  color:#e5e7eb;
}

.foot{
  display:flex;
  justify-content:space-between;
  margin-top:14px;
  font-size:12px;
}
.link{color:#e5e7eb; text-decoration:none; opacity:.85}
.link:hover{opacity:1; text-decoration:underline}