/* ── YouTube Shorts hikaye şeridi (anasayfa) ───────────────────────────── */
.shorts-stories {
  margin: 18px 0 4px;
}
.shorts-stories-row {
  position: relative;
}
.shorts-strip {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 4px 2px 10px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.shorts-strip::-webkit-scrollbar {
  display: none;
}
.shorts-item {
  flex: 0 0 auto;
}
.shorts-bubble {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 76px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.shorts-ring {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  padding: 3px;
  background: conic-gradient(from 210deg, #ff0033, #ff5b00, #ff0033, #c800ff, #ff0033);
  transition: transform 0.15s ease;
}
.shorts-bubble:hover .shorts-ring {
  transform: scale(1.04);
}
.shorts-thumb {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: #111 center/cover no-repeat;
  border: 2px solid #fff;
}
.shorts-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shorts-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}
.shorts-label {
  font-size: 11px;
  line-height: 1.25;
  color: #243044;
  text-align: center;
  max-width: 76px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* ── Modal (story görüntüleyici) ───────────────────────────────────────── */
.shorts-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.shorts-stage {
  position: relative;
  width: min(420px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.shorts-progress {
  display: flex;
  gap: 4px;
  width: 100%;
  margin-bottom: 10px;
}
.shorts-progress-seg {
  flex: 1;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.3);
}
.shorts-progress-seg.is-done {
  background: rgba(255, 255, 255, 0.7);
}
.shorts-progress-seg.is-active {
  background: #fff;
}
.shorts-player {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 80vh;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.5);
}
.shorts-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.shorts-caption {
  margin: 12px 4px 0;
  color: #fff;
  font-size: 14px;
  text-align: center;
  max-width: 100%;
}
.shorts-close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.shorts-close:hover {
  background: rgba(255, 255, 255, 0.22);
}
.shorts-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shorts-nav:hover {
  background: rgba(255, 255, 255, 0.22);
}
.shorts-nav-prev {
  left: 4%;
}
.shorts-nav-next {
  right: 4%;
}
@media (max-width: 720px) {
  .shorts-nav {
    display: none;
  }
  .shorts-stage {
    width: 100%;
  }
}
