body {
  background: #181b1f;
  min-height: 100vh;
}
.store-container {
  max-width: 800px;
  margin: 40px auto;
  background: #23272b;
  border-radius: 18px;
  box-shadow: 0 4px 28px #0009;
  padding: 32px 16px 28px 16px;
}
h1 {
  color: #ffe066;
  text-shadow: 0 2px 14px #0007;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
}
.video-box {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 2px 14px #0008;
  margin-bottom: 20px;
}
video {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
  pointer-events: auto;
  user-select: none;
  -webkit-user-drag: none;
}
.custom-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 10px 0 0 0;
  justify-content: center;
  user-select: none;
}
.progress {
  flex: 1 1 auto;
  height: 0.7rem;
  cursor: pointer;
  margin: 0 8px;
  background-color: #3b4046;
}
.progress-bar {
  background: linear-gradient(90deg, #ffe066, #f3cd5d 85%);
}
.time {
  width: 54px;
  font-size: 0.98em;
  color: #ffe066;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.video-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: none;
}
body,
video,
.video-box,
.store-container,
.custom-controls {
  -webkit-user-select: none;
  user-select: none;
}

.source-code-btn {
  position: absolute;
  top: 7px;
  right: 10px;
  z-index: 10;
  font-size: 0.5rem;
  padding: 0.4rem 0.75rem;
  min-width: auto;
  background-color: rgba(33, 37, 41, 0.9);
  color: white;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .source-code-btn span {
    display: none;
  }
}

.source-code-btn i {
  font-size: 1.5em;
}

.source-code-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}