*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html,
body{
  width:100%;
  height:100%;
}

body{

  background:#050505;
  color:white;

  font-family:'Inter',sans-serif;

  overflow:hidden;

  position:relative;

}

/*
  DNE Background
*/

body::before{

  content:"";

  position:fixed;
  inset:0;

  background:
    radial-gradient(
      circle at top,
      rgba(0,255,208,0.10),
      transparent 35%
    ),

    radial-gradient(
      circle at bottom,
      rgba(176,108,255,0.08),
      transparent 35%
    ),

    #050505;

  z-index:-2;

}

/*
  Root OS Container
*/

#dne-os{

  width:100vw;
  height:100vh;

  position:relative;

  overflow:hidden;

}

/*
  Runtime Pages
*/

.page-shell{

  position:absolute;
  inset:0;

  width:100%;
  height:100%;

  overflow-y:auto;

  padding:
    120px
    24px
    140px;

}

/*
  Temporary Placeholders
*/

.page-placeholder{

  width:100%;
  min-height:300px;

  border-radius:32px;

  border:
    1px solid
    rgba(255,255,255,0.06);

  background:
    rgba(255,255,255,0.04);

  backdrop-filter:blur(24px);

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:42px;
  font-weight:800;

  letter-spacing:-2px;

  color:white;

}

/*
  Bottom Navigation
*/

.bottom-nav{

  position:fixed;

  bottom:18px;
  left:18px;
  right:18px;

  z-index:100;

}

.bottom-nav-inner{

  display:flex;
  align-items:center;
  justify-content:space-around;

  gap:10px;

  background:
    rgba(12,12,12,0.76);

  backdrop-filter:blur(24px);

  border-radius:24px;

  border:
    1px solid
    rgba(255,255,255,0.06);

  padding:16px;

}

/*
  Nav Buttons
*/

.nav-item{

  border:none;

  background:none;

  color:#8d8d8d;

  font-size:11px;
  font-weight:700;

  letter-spacing:1px;

  transition:0.25s ease;

  cursor:pointer;

}

.nav-item.active{
  color:white;
}
/* =========================
   DNE OS RUNTIME
========================= */

body{
  margin:0;
  background:#050505;
  color:white;
  font-family:'Inter',sans-serif;
  overflow-x:hidden;
}

.page-runtime{
  padding:
    120px
    24px
    140px;
}

.runtime-hero{
  margin-bottom:42px;
}

.runtime-label{
  color:#00ffd0;
  font-size:11px;
  font-weight:700;
  letter-spacing:2px;
  margin-bottom:18px;
}

.runtime-title{
  font-size:64px;
  line-height:0.92;
  font-weight:800;
  letter-spacing:-4px;
  margin-bottom:18px;
}

.runtime-sub{
  max-width:720px;
  color:#9f9f9f;
  font-size:16px;
  line-height:1.7;
}

.runtime-grid{
  display:grid;
  grid-template-columns:
    repeat(auto-fit,minmax(240px,1fr));
  gap:18px;
}

.runtime-card{

  background:
    rgba(255,255,255,0.05);

  border:
    1px solid rgba(255,255,255,0.06);

  border-radius:30px;

  padding:28px;

  backdrop-filter:blur(20px);

}

.card-label{
  color:#8d8d8d;
  font-size:12px;
  font-weight:700;
  letter-spacing:2px;
  margin-bottom:16px;
}

.card-value{
  font-size:48px;
  font-weight:800;
  letter-spacing:-2px;
}
/* =========================
   LIVE FEED
========================= */

.runtime-feed{

  margin-top:42px;

  background:
    rgba(255,255,255,0.04);

  border:
    1px solid rgba(255,255,255,0.06);

  border-radius:32px;

  padding:28px;

  backdrop-filter:blur(20px);

}

.feed-title{

  font-size:13px;
  font-weight:800;
  letter-spacing:2px;

  color:#00ffd0;

  margin-bottom:22px;

}

.feed-item{

  padding:
    18px
    0;

  border-bottom:
    1px solid rgba(255,255,255,0.06);

}

.feed-item:last-child{
  border-bottom:none;
}

.feed-meta{

  font-size:11px;
  font-weight:700;
  letter-spacing:1.5px;

  color:#8d8d8d;

  margin-bottom:8px;

}

.feed-text{

  font-size:16px;
  line-height:1.5;

  color:white;

}
.feed-meta{

  display:flex;
  justify-content:space-between;
  align-items:center;

  font-size:11px;
  font-weight:700;
  letter-spacing:1.5px;

  color:#8d8d8d;

  margin-bottom:8px;

}

.feed-time{

  color:#00ffd0;

  opacity:0.9;

}
