:root{
  --bg:#0F2624;
  --panel:#071A18;
  --accent:#2ED3C7;
  --teal:#2F5C5A;
  --soft:#6EE7A2;
  --text:#D7E7E2;
  --title:#A7F7C2;
}

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

body{
  background:var(--bg);
  font-family:system-ui,sans-serif;
  color:var(--text);
  font-size:14px;
  line-height:1.5;
}

h1,h2,h3{
  color:var(--title);
  font-weight:700;
  letter-spacing:0.3px;
}

h4,h5,h6{
  color:#d6e7df;
  font-weight:500;
  letter-spacing:0.2px;
  opacity:0.9;
}

h1,h2,h3,h4,h5,h6{
  margin:0;
  line-height:1.3;
}

h1{
  font-size:20px;
  margin-bottom:12px;
}

h2{
  font-size:17px;
  margin-bottom:10px;
}

h3{
  font-size:15px;
  margin-bottom:8px;
}

h4{
  font-size:13px;
  margin-bottom:6px;
}

h5{
  font-size:12px;
  margin-bottom:5px;
  opacity:0.95;
}

h6{
  font-size:11px;
  margin-bottom:4px;
  opacity:0.85;
}
.divider{
  height:1px;
  margin:22px 0;

  background:
    linear-gradient(
      90deg,
      transparent,
      #2ED3C7,
      transparent
    );

  box-shadow:
    0 0 10px rgba(46,211,199,.25);
}

.heading{
  display:block;
  font-weight:700;
  margin:0 0 10px 0;
}

.heading-grid{
  background:linear-gradient(90deg,#2F5C5A,#2ED3C7);
  color:#061514;
  padding:7px 10px;
  border-radius:3px;
  margin-bottom:8px;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.3px;
  border:1px solid rgba(255,255,255,0.08);
}

.heading-sidebar{
  background:linear-gradient(90deg,#2F5C5A,#0F2624);
  color:#fff;
  padding:8px 12px;
    font-size:14px;
border-radius:2px;
  margin:-12px -12px 10px -12px;
  position:relative;
  overflow:hidden;
  border-bottom:none;
  box-shadow:
    inset 0 -1px 0 rgba(255,255,255,0.04),
    0 2px 10px rgba(0,0,0,0.18);
}

.heading-sidebar::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(46,211,199,0.9),
      transparent
    );
}

.wrapper{
  max-width:950px;
  padding:6px;
  border-radius:0;
  margin:0 auto;
}

.header{
  background:#081715;
  border-bottom:1px solid #203638;
  box-shadow:
    0 4px 18px rgba(0,0,0,0.22);
}

.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
}

.brand img{
  height:22px;
}

.brand-text span{
  font-size:11px;
  color:#7FA9A1;
  letter-spacing:2px;
}

.apps{
  position:relative;
  display:inline-block;
}

.apps-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:9px 15px;
  background:#102725;
  border:1px solid #284345;
  color:#D7E7E2;
  font-size:11px;
  font-weight:600;
  letter-spacing:.8px;
  border-radius:12px;
  cursor:pointer;
  transition:0.25s ease;
  box-shadow:
    0 4px 14px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.apps-btn:hover{
  background:#163B38;
  border-color:#2ED3C7;
  color:#ffffff;
  transform:translateY(-1px);
  box-shadow:
    0 8px 22px rgba(0,0,0,0.24),
    0 0 0 3px rgba(46,211,199,0.08);
}

.apps-btn:active{
  transform:translateY(0);
}

.apps-menu{
  position:absolute;
  top:calc(100% + 12px);
  right:0;
  width:220px;
  padding:10px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:8px;
  background:#0F2624;
  border:1px solid #2b4446;
  border-radius:16px;
  box-shadow:
    0 14px 40px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.03);

  backdrop-filter:blur(12px);

  opacity:0;

  transform:
    translateY(-8px)
    scale(0.96);

  pointer-events:none;

  transition:
    opacity .25s ease,
    transform .25s ease;

  z-index:1000;
}

.apps-menu.show{
  opacity:1;

  transform:
    translateY(0)
    scale(1);

  pointer-events:auto;
}

.apps-menu::before{
  content:"";
  position:absolute;
  top:-7px;
  right:20px;
  width:14px;
  height:14px;
  background:#0F2624;
  border-left:1px solid #2b4446;
  border-top:1px solid #2b4446;
  transform:rotate(45deg);
}

.apps-menu a{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  height:66px;
  text-decoration:none;
  font-size:10px;
  font-weight:500;
  letter-spacing:.3px;
  color:#D7E7E2;
  border-radius:12px;
  background:rgba(255,255,255,0.03);
  transition:0.22s ease;
}

.apps-menu a:hover{
  background:rgba(46,211,199,0.10);
  color:#A7F7C2;
  transform:translateY(-2px);
  box-shadow:
    inset 0 0 0 1px rgba(46,211,199,0.15),
    0 6px 16px rgba(0,0,0,0.18);
}

.apps-menu svg{
  width:18px;
  height:18px;
  margin-bottom:4px;
  stroke:currentColor;
  fill:none;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
  opacity:0.92;
  transition:0.2s ease;
}

.apps-menu a:hover svg{
  transform:scale(1.08);
  opacity:1;
}

@media (min-width:600px){

  .apps-btn{
    display:none;
  }

  .apps-menu{
    position:static;

    opacity:1 !important;
    transform:none !important;

    pointer-events:auto;

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

    gap:4px;

    width:auto;
    max-width:100%;

    padding:0;

    background:none;
    border:none;

    box-shadow:none;
    backdrop-filter:none;

    overflow:hidden;
  }

  .apps-menu::before{
    display:none;
  }

  .apps-menu a{
    flex-direction:row;
    align-items:center;

    gap:5px;

    height:auto;

    padding:7px 9px;

    background:transparent;

    border-radius:9px;

    font-size:10px;

    white-space:nowrap;
  }

  .apps-menu a:hover{
    background:rgba(46,211,199,0.12);

    transform:none;

    box-shadow:none;
  }

  .apps-menu svg{
    width:16px;
    height:16px;

    margin-bottom:0;
  }
}

@media (max-width:480px){
 .brand img{
    height:18px;
  }

.navbar{
  padding:8px 10px;
}

.brand{
  gap:6px;
}

  .apps-menu{
    width:200px;
    gap:7px;
    padding:8px;
  }

  .apps-menu a{
    height:60px;
    font-size:9px;
  }

  .apps-menu svg{
    width:17px;
    height:17px;
  }
}

.top-block, .panel{
  min-width:0;
  width:100%;
}

.top-block{
  background:var(--panel);
  border:1px solid #2b4446;
  padding:8px;
  margin:8px 0;
  box-shadow:0 4px 12px rgba(0,0,0,0.28);
}

.top-block img{
  width:100%;
  height:auto;
  display:block;
}

.top-block a{
  display:block;
  margin-bottom:8px;
}

.top-block a:last-child{
  margin-bottom:0;
}

@media(max-width:600px){
  .top-block{
    padding:6px;
  }
}

.top-block--grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:6px;
  align-content:start;
}

.top-block--grid a{
  display:block;
  line-height:0;
  margin:0;
  padding:0;
}

.top-block--grid img{
  width:100%;
  height:auto;
  display:block;
}

@media(max-width:600px){
  .top-block--grid{
    grid-template-columns:1fr;
  }
}

.media-stack{
  margin-bottom:0;
}

.bottom-stack{
  margin-top:100px;
}

.top-stack{
  margin-bottom:20px;
}

.media-stack a{
  display:block;
  margin-bottom:6px;
  line-height:0;
}

@media(max-width:600px){
  .media-stack{
    margin-bottom:12px;
  }

  .media-stack a{
    margin-bottom:5px;
  }
}

.dashboard{
  display:grid;
  grid-template-columns:2.2fr 1fr;
  gap:10px;
}
@media(max-width:768px){
  .dashboard{
    grid-template-columns:1.5fr 1fr;
  }
}

@media(max-width:480px){
  .dashboard{
    grid-template-columns:1fr;
  }
}

.panel{
  background:var(--panel);
  border:1px solid #2b4446;
  box-shadow:0 4px 12px rgba(0,0,0,0.28);
  border-radius:4px;
  padding:12px;
  margin-bottom:10px;
}
.panel p{
  color:#A8C2BC;

  line-height:1.7;

  font-size:13px;

  opacity:.92;
}
.panel img{
  width:100%;
  height:auto;
  display:block;
}
.panel a{
  color:#8CF5D2;

  text-decoration:none;
  position:relative;

  font-weight:500;

  transition:
    color .25s ease,
    text-shadow .25s ease;
}

.panel a::after{
  content:"";

  position:absolute;
  left:0;
  bottom:-3px;

  width:0;
  height:1px;

  border-radius:20px;

  background:
    linear-gradient(
      90deg,
      #46E6B0,
      #2ED3C7
    );

  box-shadow:
    0 0 10px rgba(70,230,176,.30);

  transition:width .28s ease;
}

.panel a:hover{
  color:#F2FFF9;

  text-shadow:
    0 0 10px rgba(110,231,162,.14);
}

.panel a:hover::after{
  width:100%;
}
.title{
  font-size:14px;
  font-weight:700;
  color:var(--title);
  margin-bottom:10px;
}
.panel iframe{
  display:block;
  width:100%;
  margin-top:20px;
}
.data-angka{
  font-family:Verdana,sans-serif;
  font-size:14px;
  font-weight:bold;
  line-height:16px;
  color:#6EE7A2;
  margin:10px -6px 10px -6px;
}

.grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:6px;
}

.grid a{
  padding:14px;
  text-align:center;
  color:#fff;
  font-weight:700;
  font-size:13px;
  text-decoration:none;
  border:1px solid #0d241c;
  transition:0.2s;
}

.grid a:nth-child(4n+1),
.grid a:nth-child(4n+2){
  background:#214644;
}

.grid a:nth-child(4n+3),
.grid a:nth-child(4n+4){
  background:#0F2E2B;
}

.grid a:hover{
  transform:translateY(-2px);
  filter:brightness(1.08);
  box-shadow:0 0 14px rgba(46,211,199,0.18);
}

.menu a{
  display:flex;
  align-items:center;
  gap:10px;

  padding:9px 12px;
  margin-bottom:6px;

  background:rgba(255,255,255,0.03);
  border-left:3px solid transparent;

  color:#D7E7E2;
  text-decoration:none;

  border-radius:10px;

  font-size:13px;
  font-weight:500;

  transition:0.25s ease;
}
.menu a svg{
  width:18px;
  height:18px;

  stroke:currentColor;
  fill:none;
  stroke-width:1.8;

  opacity:0.85;

  transition:0.2s ease;
  will-change:transform, stroke, opacity;
}

.menu a:hover{
  border-left:3px solid #2ED3C7;
  background:rgba(46,211,199,0.18);

  transform:translateX(2px);

  color:#A7F7C2;
}

.menu a:hover svg{
  transform:scale(1.1);
  opacity:1;
  stroke:#2ED3C7;
}
.related-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.related-links a{
  display:inline-flex;
  align-items:center;

  padding:8px 14px;

  color:#D7E7E2;
  text-decoration:none;

  font-size:12px;
  font-weight:600;
  letter-spacing:.2px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.04),
      rgba(255,255,255,.02)
    );

  border:1px solid rgba(46,211,199,.10);

  border-radius:999px;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 3px 10px rgba(0,0,0,.18);

  transition:
    all .25s ease;
}

.related-links a::before{
  content:"";

  width:6px;
  height:6px;

  margin-right:8px;

  border-radius:50%;

  background:#2ED3C7;

  box-shadow:
    0 0 8px rgba(46,211,199,.45);
}

.related-links a:hover{
  color:#F2FFF9;

  border-color:rgba(46,211,199,.30);

  background:
    linear-gradient(
      180deg,
      rgba(46,211,199,.10),
      rgba(46,211,199,.04)
    );

  transform:translateY(-1px);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 6px 16px rgba(0,0,0,.25),
    0 0 0 1px rgba(46,211,199,.08);
}

.footer{
  text-align:center;
  line-height:1.7;
  padding:18px 16px;
  margin-top:12px;

  background:
    linear-gradient(
      180deg,
      #183634 0%,
      #0F2624 100%
    );

  border:1px solid rgba(46,211,199,0.10);
  border-radius:10px;

  box-shadow:
    0 6px 18px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.03);

  font-size:13px;
  color:#BFD7D1;

  position:relative;
  overflow:hidden;
}

.footer::before{
  content:"";

  position:absolute;
  top:0;
  left:50%;

  transform:translateX(-50%);

  width:120px;
  height:1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(46,211,199,.9),
      transparent
    );
}

.footer h3{
  font-size:15px;
  margin-bottom:8px;

  color:#A7F7C2;
  letter-spacing:.3px;
}

.footer p{
  margin-bottom:12px;

  color:#9DB7B1;

  line-height:1.6;
  font-size:13px;
}

.footer a{
  color:#7FE9DA;
  text-decoration:none;
  position:relative;
  transition:.25s ease;
}

.footer a:hover{
  color:#DFFFF4;
}
.table-scroll{
  max-width:100%;
  overflow-x:auto;
}
.tftable{
  width:100%;
  max-width:100%;
  border-collapse:collapse;
  table-layout:fixed;
  display:table;
  margin:10px auto 0;
  background:var(--panel);
  border:1px solid #2b4446;
  border-radius:6px;
  overflow:hidden;
  font-size:13px;
  box-shadow:0 4px 12px rgba(0,0,0,.22);
}

.tftable th{
  height:30px;
  padding:5px 8px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.4px;
  text-transform:uppercase;
  color:#dff7ef;
  background:linear-gradient(180deg,#214644,#163533);
  border-right:1px solid rgba(255,255,255,.04);
  border-bottom:1px solid rgba(255,255,255,.06);
  text-align:center;
  line-height:1.2;
}

.tftable td{
  height:26px;
  padding:3px 6px;
  font-family:ui-monospace, monospace;
  font-size:13px;
  font-weight:600;
  color:var(--text);
  border-right:1px solid rgba(255,255,255,.04);
  border-bottom:1px solid rgba(255,255,255,.04);
  text-align:center;
  line-height:1.2;
  transition:background .15s ease;
}

.tftable td:hover{
  background:rgba(46,211,199,.06);
  color:#fff;
}

.tftable tr:hover td{
  background:rgba(255,255,255,.02);
}

@media(max-width:768px){

  .tftable th{
    height:28px;
    padding:4px 6px;
    font-size:10px;
  }

  .tftable td{
    height:24px;
    padding:3px 4px;
    font-size:12px;
  }

}

@media(max-width:480px){

  .tftable{
    font-size:12px;
  }

  .tftable th{
    height:26px;
    padding:3px 4px;
  }

  .tftable td{
    height:22px;
    padding:2px 3px;
    font-size:11px;
  }

}