* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
  background: #000;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  height: 100%;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
}
header {
  background: #000;
  color: white;
  padding: 12px 16px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid #222;
}
header span span {
  color: #0d6efd;
}
.reel-container {
padding-top: 0; /* 🧹 karena header dihapus */
}

.reel {
scroll-snap-align: start;
height: 100vh;
width: 100%;
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background: #000;
overflow: hidden;
}
.reel video {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.caption {
  font-size: 0.9rem;
  color: #ccc;
  margin-top: 8px;
  text-align: center;
  padding: 0 12px;
}
.icon-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: rgba(255, 255, 255, 0.8);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.icon-overlay.show {
  opacity: 1;
}
nav {
  background-color: #121212;
  border-top: 1px solid #444;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 9999;
}
.nav-item-footer {
  flex: 1;
  font-size: 0.75rem;
}
.nav-item-footer i {
  font-size: 1.3rem;
}
.caption {
position: absolute;
bottom: 90px;
left: 16px;
right: 16px;
z-index: 10;
display: flex;
flex-direction: column;
gap: 6px;
font-size: 0.9rem;
}

.caption .channel-line {
display: flex;
align-items: center;
gap: 10px;
}

.caption .channel-line img {
width: 36px;
height: 36px;
border-radius: 50%;
}

.channel-name {
font-weight: 800;
font-size: 1rem;
color: #fff;
letter-spacing: 0.3px;
font-family: 'Segoe UI', sans-serif; 
-webkit-text-stroke: 0.4px black;
}

.channel-name .highlight {
color: #0d6efd;
font-weight: 800;
-webkit-text-stroke: 0.4px black;
}

.caption-text {
color: #fff;
font-size: 0.95rem;
font-weight: 600;
line-height: 1.5;
text-align: center;
word-break: break-word;
}