html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

body {
  position: fixed;
  inset: 0;
}

/* FEED CONTAINER */
.stimuli-feed {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

/* SLIDES */
.stimuli-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: none;
}

/* ONLY ACTIVE SLIDE IS FLEX */
.stimuli-slide.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   NEW: VIDEO WRAPPER
========================= */
.stimuli-video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

/* VIDEO */
.stimuli-video {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* SCALE FIX */
  transform: scale(0.92);
  transform-origin: center center;

  background: #000;
}

/* =========================
   NEW: TIKTOK-STYLE ACTIONS
========================= */
.stimuli-actions {
  position: absolute;
  right: 12px;
  bottom: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  z-index: 20;
}

.stimuli-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  cursor: pointer;
  user-select: none;
}

.stimuli-action svg {
  width: 34px;
  height: 34px;
  fill: #fff;
  transition: transform 0.2s ease;
}

.stimuli-action .count {
  margin-top: 4px;
  font-size: 12px;
}

/* LIKE ACTIVE STATE */
.stimuli-action.like.active svg {
  fill: #ff2d55;
  transform: scale(1.15);
}

/* =========================
   FREEZE OVERLAY
========================= */
.stimuli-freeze {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.85);
  color: #fff;
  font-size: 18px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}