/* GLOBAL */

body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,sans-serif;
  background:#0e0f14;
  color:#e5e7eb;
  padding-top:50px;
}

/* TOPBAR */

.lcm-topbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:64px;
  display:flex;
  align-items:center;
  background:#0d0f14;
  border-bottom:1px solid rgba(255,255,255,0.08);
  z-index:1000;
}

.lcm-topbar-inner{
  width:100%;
  max-width:1100px;
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:40px;
  padding:0 20px;
}

.lcm-logo{
  font-weight:600;
  font-size:16px;
}

.lcm-nav{
  display:flex;
  gap:24px;
}

.lcm-nav a{
  color:#e5e7eb;
  text-decoration:none;
  font-size:14px;
}

.lcm-nav a:hover{
  color:#00ff88;
}

/* FORM */

input{
  width:100%;
  padding:12px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.12);
  background:#161a21;
  color:white;
}

button{
  background:#00c853;
  border:none;
  padding:10px 18px;
  border-radius:8px;
  color:white;
  cursor:pointer;
}

/* RESULT OVERLAY */



#resultOverlay{
  position: fixed;
  top:64px;
  left:0;
  width:100vw;
  height:calc(100vh - 64px);
  display:none;
  justify-content:center;
  align-items:center;
  background:#0e0f14;
  z-index:900;
}

/* RESULT PANEL */

#result{
  width:700px;
  max-width:90%;
  margin:0 auto;
  text-align:left;
}

/* EXECUTION LOG */

#result .execution-log{
  margin-top:10px;
  max-width:640px;
  text-align:left;
}

/* ---------- LCM ACCENT SYSTEM ---------- */

:root{
  --accent:#00ff88;
  --accent-soft:rgba(0,255,136,0.12);
}

/* ---------- SUCCESS STATUS ---------- */

.subtitle.success{
  color:var(--accent);
  font-weight:600;
}

/* ---------- EXECUTION LOG TITLE ---------- */

.log-title{
  color:var(--accent);
  font-weight:600;
  margin-bottom:8px;
}

/* ---------- TERMINAL STYLE LOG ---------- */

.execution-log{
  background:#141820;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:12px;
  padding:18px;
  margin-top:24px;
  box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

/* ---------- FINGERPRINT CARD ---------- */

.fingerprint-box{
  margin-top:28px;
  background:#141820;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:12px;
  padding:20px;
}

.fingerprint-title{
  color:var(--accent);
  font-weight:600;
  margin-bottom:10px;
}

.fingerprint-value{
  font-family:monospace;
  background:#0d0f14;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:8px;
  padding:12px;
  font-size:13px;
  word-break:break-all;
}

/* ---------- LINKS ---------- */

.proof-link,
.audit-link{
  display:block;
  margin-top:12px;
  color:var(--accent);
  text-decoration:none;
  font-weight:500;
}

.proof-link:hover,
.audit-link:hover{
  opacity:0.8;
}

/* ---------- BUTTON ---------- */

button{
  background:var(--accent);
  border:none;
  padding:10px 18px;
  border-radius:8px;
  font-weight:600;
  font-size:14px;
  color:#002b1a;
  cursor:pointer;
}

button:hover{
  transform:translateY(-1px);
  box-shadow:0 6px 20px rgba(0,255,136,0.25);
}

/* ---------- LCM ACCENT SYSTEM ---------- */

:root{
  --accent:#00ff88;
  --accent-soft:rgba(0,255,136,0.12);
}

/* ---------- SUCCESS STATUS ---------- */

.subtitle.success{
  color:var(--accent);
  font-weight:600;
}

/* ---------- EXECUTION LOG TITLE ---------- */

.log-title{
  color:var(--accent);
  font-weight:600;
  margin-bottom:8px;
}

/* ---------- TERMINAL STYLE LOG ---------- */

.execution-log{
  background:#141820;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:12px;
  padding:18px;
  margin-top:24px;
  box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

/* ---------- FINGERPRINT CARD ---------- */

.fingerprint-box{
  margin-top:28px;
  background:#141820;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:12px;
  padding:20px;
}

.fingerprint-title{
  color:var(--accent);
  font-weight:600;
  margin-bottom:10px;
}

.fingerprint-value{
  font-family:monospace;
  background:#0d0f14;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:8px;
  padding:12px;
  font-size:13px;
  word-break:break-all;
}

/* ---------- LINKS ---------- */

.proof-link,
.audit-link{
  display:block;
  margin-top:12px;
  color:var(--accent);
  text-decoration:none;
  font-weight:500;
}

.proof-link:hover,
.audit-link:hover{
  opacity:0.8;
}

/* ---------- BUTTON ---------- */

button{
  background:var(--accent);
  border:none;
  padding:10px 18px;
  border-radius:8px;
  font-weight:600;
  font-size:14px;
  color:#002b1a;
  cursor:pointer;
}

button:hover{
  transform:translateY(-1px);
  box-shadow:0 6px 20px rgba(0,255,136,0.25);
}

.result-panel{
  text-align:left;
}

/* ======================================
LCM ACCENT COLOR SYSTEM
====================================== */

:root{
  --accent:#00ff88;
}

.hero-title{
  font-size:48px;
  font-weight:700;
  letter-spacing:-0.5px;
}

.hero-sub{
  color:var(--accent);
  font-size:16px;
}

/* Success status */

.subtitle.success{
  color:var(--accent);
  font-weight:600;
}

/* Execution Log title */

.log-title{
  color:var(--accent);
  font-weight:600;
}

/* Fingerprint title */

.fingerprint-title{
  color:var(--accent);
  font-weight:600;
}

/* Links */

.proof-link,
.audit-link{
  color:var(--accent);
  text-decoration:none;
  font-weight:500;
}

.proof-link:hover,
.audit-link:hover{
  opacity:0.8;
}

.subtitle,
.log-title,
.fingerprint-title,
.proof-link,
.audit-link{
  color:#00ff88;
}

.execution-log,
.fingerprint-box{
  width:820px;
  max-width:92%;
}

.links a,
.links a:visited{
  color:#00ff88;
}

.links a,
.links a:visited{
  color:#00ff88;
  text-decoration:none;
  font-weight:500;
}

.links a:hover{
  opacity:0.8;
}

.verify-btn{
margin-top:18px;
background:#00ff88;
border:none;
color:#02140b;
padding:10px 20px;
border-radius:8px;
font-weight:600;
cursor:pointer;
}

.verify-btn:hover{
opacity:0.9;
}

textarea.hash{
width:100%;
background:#0e1218;
border:1px solid rgba(255,255,255,0.08);
border-radius:8px;
padding:12px;
color:#fff;
font-family:monospace;
font-size:13px;
resize:none;
}

.result-title{
color:#00ff88;
font-weight:600;
margin-bottom:16px;
}

.item{
display:flex;
justify-content:space-between;
border-bottom:1px solid rgba(255,255,255,0.06);
padding:6px 0;
}

.error{
color:#ff6b6b;
margin-top:10px;
}

.page-header{
  text-align:center;
}

.page-header{
  margin-top:390px;
}


