
/* Deep Unlocker — Theme CSS
   Purpose: drop into your site (e.g., assets/css/deep-unlocker-theme.css)
   Instructions: include <link rel="stylesheet" href="deep-unlocker-theme.css"> after your main CSS
*/

:root{
  --bg-1: #07090c;
  --bg-2: #0b0f14;
  --panel: rgba(6,18,26,0.6);
  --border: rgba(96,110,129,0.12);
  --muted: #9aa6b2;
  --text: #dbe7ee;
  --accent-a: #00d1ff; /* cyan */
  --accent-b: #9b6bff; /* violet */
  --glass: rgba(255,255,255,0.03);
  --glow: rgba(99,200,255,0.12);
  --rounded: 14px;
  --shadow-soft: 0 6px 24px rgba(2,6,12,0.6);
}

/* Global background and typography */
html,body{
  height:100%;
}
body{
  margin:0;
  font-family: "Inter", "Segoe UI", Roboto, system-ui, -apple-system, "Helvetica Neue", Arial;
  background: radial-gradient(1200px 600px at 10% 10%, rgba(19,40,55,0.12), transparent 8%),
              linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-y:auto;
}

/* Container base used for panels */
.panel{
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(120,140,160,0.06);
  border-radius: var(--rounded);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

/* Frosted glass / neon edge for the main card */
.card-glow{
  background: linear-gradient(180deg, rgba(6,18,26,0.6), rgba(4,10,16,0.6));
  border: 1px solid rgba(120,150,210,0.06);
  position:relative;
  overflow:hidden;
  border-radius: calc(var(--rounded) + 4px);
}
.card-glow::after{
  content:"";
  position:absolute;
  inset: -2px;
  pointer-events:none;
  background: linear-gradient(90deg, transparent, rgba(130,190,255,0.04), transparent);
  mix-blend-mode: screen;
  filter: blur(12px);
}

/* Header/logo */
.header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}
.logo-badge{
  width:56px;
  height:56px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  color:#021018;
  font-weight:700;
  box-shadow: 0 6px 30px rgba(110,66,255,0.14), 0 6px 30px rgba(0,200,255,0.08);
}

/* Tabs */
.tabs{
  display:flex;
  gap:8px;
  margin-bottom:16px;
}
.tab{
  padding:10px 14px;
  border-radius:10px;
  font-weight:600;
  font-size:13px;
  cursor:pointer;
  border:1px solid transparent;
  background:transparent;
  color:var(--muted);
  transition: all 160ms ease;
}
.tab:hover{ transform:translateY(-2px); }
.tab.active{
  color:#07121a;
  background: linear-gradient(90deg, rgba(0,209,255,0.12), rgba(155,107,255,0.12));
  border:1px solid rgba(130,160,220,0.12);
  box-shadow: 0 6px 24px rgba(73,93,112,0.08), 0 0 18px rgba(120,90,255,0.06) inset;
}

/* Hero action button */
.hero-wrap{
  display:flex;
  align-items:center;
  gap:18px;
}
.btn-primary{
  width:100%;
  max-width:420px;
  height:72px;
  border-radius:16px;
  font-size:20px;
  font-weight:700;
  border:none;
  cursor:pointer;
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  color:#051018;
  box-shadow: 0 10px 30px rgba(155,107,255,0.16), 0 2px 8px rgba(0,209,255,0.06);
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn-primary:active{ transform:translateY(1px); box-shadow: 0 6px 18px rgba(0,0,0,0.5); }
.btn-ghost{
  padding:10px 12px;
  border-radius:10px;
  background: rgba(255,255,255,0.02);
  border:1px solid rgba(120,140,160,0.06);
  color:var(--muted);
  cursor:pointer;
}

/* Small action group (Read Info / Relock) */
.action-row{ display:flex; gap:10px; margin-top:12px; }
.action-row .btn-ghost{ min-width:120px; text-align:center; }

/* Right panel device info */
.device-info h3{ margin:0 0 8px 0; }
.device-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:8px 10px;
  border-radius:10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.01), transparent);
  border:1px solid rgba(110,130,150,0.04);
  margin-bottom:8px;
  font-size:13px;
}
.status-pill{
  display:inline-block;
  padding:8px 10px;
  border-radius:8px;
  font-weight:700;
  font-size:12px;
  letter-spacing:0.6px;
  background: rgba(3,18,28,0.65);
  border: 1px solid rgba(100,120,150,0.06);
  color:var(--accent-a);
}

/* Small decorative cards */
.small-card{
  margin-top:14px;
  padding:12px;
  border-radius:12px;
  border:1px solid rgba(120,140,160,0.04);
  background: linear-gradient(180deg, rgba(3,10,15,0.45), rgba(3,10,15,0.25));
  font-size:13px;
}

/* Logs box */
.logs{
  margin-top:14px;
  padding:12px;
  border-radius:10px;
  background: linear-gradient(180deg, rgba(2,8,14,0.6), rgba(2,8,14,0.4));
  border:1px dashed rgba(70,90,110,0.04);
  color:var(--muted);
  max-height:220px;
  overflow:auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, monospace;
  font-size:12px;
}

/* Inputs & selects (styled) */
.input, input[type=text], select, textarea {
  width:100%;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid rgba(110,130,150,0.06);
  background: rgba(255,255,255,0.01);
  color:var(--text);
  outline:none;
  transition: box-shadow 0.12s ease, border-color 0.12s ease;
}
.input:focus, input[type=text]:focus, select:focus, textarea:focus{
  border-color: rgba(130,170,250,0.18);
  box-shadow: 0 6px 18px rgba(100,150,255,0.06);
}

/* Icons / sidebar */
.sidebar{
  width:64px;
  background: linear-gradient(180deg, rgba(5,10,15,0.6), rgba(3,8,12,0.5));
  border-radius:16px;
  padding:10px;
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:center;
}
.side-btn{
  width:44px;height:44px;border-radius:10px;display:flex;align-items:center;justify-content:center;
  background: rgba(255,255,255,0.01); border:1px solid rgba(110,130,150,0.04); cursor:pointer;
}
.side-btn.active{
  background: linear-gradient(135deg, rgba(0,209,255,0.12), rgba(155,107,255,0.12));
  box-shadow: 0 6px 18px rgba(120,90,255,0.06);
}

/* Footer small */
.footer{
  font-size:12px;
  color:var(--muted);
  margin-top:10px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* Utilities */
.row{ display:flex; gap:12px; align-items:center; }
.col{ display:flex; flex-direction:column; gap:12px; }

/* Responsive tweaks */
@media (max-width: 980px){
  .hero-wrap{ flex-direction:column; align-items:stretch; }
  .btn-primary{ max-width:100%; height:60px; }
}

