.sky-tabs{
  position:fixed;
  top:0;
  left:0;
  right:0;
  height:64px;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:4px;
  padding:0 18px;
  background:linear-gradient(#050505,#141414);
  border-bottom:4px solid #d6a13a;
  z-index:999999;
  font-family:Arial,Helvetica,sans-serif;
}

.sky-tab{
  position:relative;
  min-width:145px;
  height:46px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 22px;
  color:#221600;
  text-decoration:none;
  font-weight:900;
  letter-spacing:.08em;
  font-size:15px;
  background:linear-gradient(#f5d889,#c68b22);
  border:2px solid #8b6418;
  border-bottom:none;
  border-radius:14px 14px 0 0;
  box-shadow:inset 0 2px 0 rgba(255,255,255,.45);
  transform:translateY(6px);
  opacity:.72;
}

.sky-tab:before{
  content:"";
  position:absolute;
  left:-16px;
  bottom:-2px;
  width:28px;
  height:28px;
  background:inherit;
  border-left:2px solid #8b6418;
  border-bottom:2px solid #8b6418;
  transform:skewX(-28deg);
  border-radius:8px 0 0 0;
  z-index:-1;
}

.sky-tab.active{
  height:56px;
  transform:translateY(0);
  opacity:1;
  background:linear-gradient(#fff2b8,#f1b83f);
  color:#000;
  z-index:3;
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.7),
    0 -4px 22px rgba(255,191,73,.35);
}

.sky-tab:hover{
  opacity:1;
  filter:brightness(1.08);
}

body{
  padding-top:64px !important;
}

@media(max-width:800px){
  .sky-tabs{
    justify-content:flex-start;
    overflow-x:auto;
  }
  .sky-tab{
    min-width:120px;
    font-size:13px;
  }
}

/* TV / display mode: hide folder tabs on large screens */
@media (min-width: 1000px) and (orientation: landscape){
  .sky-tabs{
    display:none!important;
  }

  body{
    padding-top:0!important;
  }

  .screen{
    padding-top:3.5vh!important;
  }
}

/* Mobile/tablet: keep tabs visible */
@media (max-width: 999px), (orientation: portrait){
  .sky-tabs{
    display:flex!important;
  }
}
