header {
  background-color: white;
  border: 1px solid var(--border-color);
  padding: 1.5rem 1rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.brand-logo {
  background-color: var(--primary);
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  font-size: 1.25rem;
}

/* Preview Canvas Area */
.canvas-wrapper {
  background-color: #000;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0;
}

#previewCanvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.canvas-wrapper:hover .video-overlay {
  opacity: 1;
}

.play-btn {
  pointer-events: auto;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: var(--primary);
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.play-btn:hover {
  background-color: var(--primary-hover);
}

/* Progress bar custom */
.progress {
  height: 10px;
  background-color: var(--light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 0.75rem;
}
.progress-bar {
  height: 100%;
  background-color: var(--success);
  width: 0%;
  transition: width 0.15s linear;
}

/* Custom Grid dalam 1 Col */
.grid-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 480px) {
  .grid-info {
    grid-template-columns: 1fr;
  }
}

/* FOOTER */

/* ─── FOOTER ─── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}

.foot-logo {
  font-size: 15px;
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: -0.3px;
}

.foot-logo span {
  color: var(--primary);
}

.foot-tag {
  font-size: 12px;
  color: var(--muted-fg);
  margin-top: 4px;
  max-width: 190px;
  line-height: 1.5;
}

.foot-socials {
  display: flex;
  gap: 6px;
  margin-top: 14px;
}

.foot-soc {
  width: 30px;
  height: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  color: var(--muted-fg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s;
}

.foot-soc:hover {
  background: var(--muted);
  color: var(--foreground);
  border-color: #d4d4d8;
}

.foot-h {
  font-size: 12px;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 12px;
}

.foot-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.foot-links li {
  margin-bottom: 7px;
}

.foot-links a {
  font-size: 13px;
  color: var(--muted-fg);
  text-decoration: none;
  transition: color 0.15s;
}

.foot-links a:hover {
  color: var(--foreground);
}

.foot-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--muted-fg);
}
