body {
  margin: 0;
  font-family: sans-serif;
  background: #00AAC3;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.viewer-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.story-frame {
  width: 360px;
  height: 640px;
  border: 6px solid white;
  border-radius: 12px;
  padding: 1rem;
  background: #fff;
  color: black;
  position: relative;
  overflow: auto;
}
#timer-bar {
  height: 4px;
  width: 0%;
  background: #00ffcc;
  position: absolute;
  top: 0;
  left: 0;
  transition: none;
}
.story-frame img, video, iframe {
  width: 100%;
  margin-top: 1rem;
}
.badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 4px 8px;
  background: #333;
  color: white;
  border-radius: 6px;
}
