/* ============================================================
   ROLLIT — THE DROPS  (css/drops.312479d9.css)
   Predict-the-upcoming-releases board. Violet accent throughout to
   match the Predictions identity (--predict tokens in style.css).
   ============================================================ */

#drops-app { max-width: 1180px; margin: 0 auto; padding: 1.5rem 1.5rem 5rem; }

/* ---- HERO ---- */
.drops-hero {
  text-align: center;
  padding: 2.6rem 1.5rem 2.2rem;
  margin-bottom: 1.8rem;
  border-radius: 20px;
  border: 1px solid var(--predict-border);
  background:
    radial-gradient(120% 140% at 50% 0%, var(--predict-soft), transparent 60%),
    var(--surface);
}
.drops-hero-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase;
  color: var(--predict); background: var(--predict-soft);
  border: 1px solid var(--predict-border); border-radius: 20px;
  padding: 4px 12px; margin-bottom: 1rem;
}
.drops-hero h1 {
  font-family: 'Bebas Neue', sans-serif; font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.1rem); line-height: 1; letter-spacing: .5px;
  margin: 0 0 .7rem; color: var(--text);
}
.drops-hero p {
  max-width: 560px; margin: 0 auto; font-size: 13.5px; line-height: 1.6; color: var(--muted);
}
.drops-stats {
  display: flex; justify-content: center; gap: 2.6rem; margin-top: 1.8rem; flex-wrap: wrap;
}
.drops-stat { position: relative; display: flex; flex-direction: column; gap: 2px; }
.drops-stat + .drops-stat::before {
  content: ''; position: absolute; left: -1.3rem; top: 15%; height: 70%; width: 1px;
  background: var(--predict-border); opacity: .5;
}
.ds-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.3rem; line-height: 1; color: var(--predict);
}
.ds-lbl { font-size: 11px; text-transform: uppercase; letter-spacing: .7px; color: var(--dim); }

/* ---- SECTIONS ---- */
.drops-section { margin-bottom: 2.4rem; }
.drops-sec-head {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  margin-bottom: 1.1rem; padding-bottom: .6rem; border-bottom: 0.5px solid var(--border);
}
.drops-sec-head h2 {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Bebas Neue', sans-serif; font-weight: 400; font-size: 1.7rem;
  letter-spacing: .5px; margin: 0; color: var(--text);
}
.drops-sec-head h2 i { color: var(--predict); font-size: 1.3rem; }
.drops-sec-sub { font-size: 12.5px; color: var(--muted); }

.drops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(178px, 1fr));
  gap: 1.1rem;
}

/* ---- CARD ---- */
.drop-card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 0.5px solid var(--border);
  border-radius: 14px; overflow: hidden;
  transition: border-color .18s, transform .18s;
}
.drop-card:hover { border-color: var(--predict-border); transform: translateY(-2px); }

.drop-poster { position: relative; aspect-ratio: 2/3; cursor: pointer; background: var(--surface2); }
.drop-poster img { width: 100%; height: 100%; object-fit: cover; display: block; }
.drop-poster-ph {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  color: var(--dim); font-size: 2rem;
}
.drop-countdown {
  position: absolute; top: 8px; left: 8px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .3px;
  color: #160d2e; background: var(--predict);
  border-radius: 20px; padding: 3px 9px;
  box-shadow: 0 2px 8px rgba(0,0,0,.35);
}

.drop-body { display: flex; flex-direction: column; gap: 5px; padding: .7rem .75rem .8rem; flex: 1; }
.drop-title {
  font-size: 13.5px; font-weight: 600; color: var(--text); cursor: pointer;
  line-height: 1.25; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.drop-title:hover { color: var(--predict); }
.drop-meta { font-size: 11px; color: var(--muted); }

/* ---- PREDICT BUTTON (mirrors the poster Rate button, violet) ---- */
.drop-predict { margin-top: auto; padding-top: .6rem; }
.drop-predict-btn {
  width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 12.5px; font-weight: 600; cursor: pointer;
  color: var(--predict); background: var(--predict-soft);
  border: 1px solid var(--predict-border); border-radius: 9px; padding: 8px 10px;
  transition: background .15s, transform .1s, border-color .15s;
}
.drop-predict-btn i { font-size: 14px; }
.drop-predict-btn:hover { background: rgba(167,139,250,.22); transform: translateY(-1px); }

/* Locked-in standing call — filled violet pill showing your verdict */
.drop-predict-btn.predicted {
  color: #160d2e; background: var(--predict); border-color: var(--predict); font-weight: 700;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.drop-predict-btn.predicted:hover { background: #b9a3ff; }
.drop-predict-btn.predicted.dp-peak { background: var(--toproll); border-color: var(--toproll); }
.drop-predict-btn.predicted.dp-flop { background: var(--flop); border-color: var(--flop); color: #fff; }

/* ---- PREDICT MODAL (violet overrides of the shared .modal styles) ---- */
/* .mode-chip lives in title.css (not loaded here) — define it locally. */
#predict-modal .mode-chip {
  display: inline-flex; align-items: center; gap: 5px;
  border-radius: 20px; padding: 4px 11px;
  font-family: 'Bebas Neue', sans-serif; font-size: 12px; letter-spacing: 1.2px; text-transform: uppercase;
}
#predict-modal .mode-chip i { font-size: 13px; }
#predict-modal .predict-chip { background: var(--predict-soft); border: 1px solid var(--predict-border); color: var(--predict); }
#predict-modal .modal-body { display: flex; flex-direction: column; align-items: stretch; }
#predict-modal .mode-chip { align-self: flex-start; margin-bottom: .6rem; }
#predict-modal .stars-grid .star-cell.lit { color: var(--predict); }
#predict-modal #pm-score { color: var(--predict); }
#predict-modal .submit-btn:not(.submit-remove):not(.submit-done) { background: var(--predict); color: #160d2e; }
#predict-modal .submit-btn:not(.submit-remove):not(.submit-done):hover { background: #b9a3ff; }

/* ---- EMPTY / ERROR ---- */
.drops-empty {
  text-align: center; padding: 4rem 1.5rem; color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: .8rem;
}
.drops-empty i { font-size: 2.6rem; color: var(--predict); opacity: .7; }
.drops-empty p { font-size: 13.5px; max-width: 380px; line-height: 1.5; margin: 0; }

@media (max-width: 600px) {
  .drops-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: .8rem; }
  .drops-stats { gap: 1.6rem; }
}

/* ============================================================
   PREDICTIONS FEED (remake) — Watching/Everyone tabs, prediction
   posts, and interleaved "what to predict" strips.
   ============================================================ */
.drops-tabs { display: flex; gap: 8px; justify-content: center; max-width: 680px; margin: 0 auto 1.4rem; }
.drops-tab {
  display: inline-flex; align-items: center; gap: 6px; cursor: pointer;
  font-size: 13px; font-weight: 600; color: var(--muted);
  background: var(--surface); border: 0.5px solid var(--border); border-radius: 20px; padding: 7px 16px;
}
.drops-tab.active { color: #160d2e; background: var(--predict); border-color: var(--predict); }
.drops-tab i { font-size: 15px; }

.drops-feed { max-width: 680px; margin: 0 auto; }

/* ---- prediction post ---- */
.drops-pred-item {
  display: flex; gap: 11px; align-items: flex-start;
  background: var(--surface); border: 0.5px solid var(--border); border-left: 2px solid var(--predict);
  border-radius: 14px; padding: 13px 15px; margin-bottom: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,.22);
  transition: border-color .18s, box-shadow .2s, transform .18s;
}
.drops-pred-item:hover { border-left-color: var(--predict); box-shadow: 0 8px 24px rgba(0,0,0,.32); transform: translateY(-1px); }
.dpi-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; overflow: hidden;
  display: flex; align-items: center; justify-content: center; text-decoration: none;
  box-shadow: 0 0 0 2px rgba(167,139,250,.2);
}
.dpi-main { flex: 1; min-width: 0; }
.dpi-line { font-size: 13.5px; line-height: 1.65; color: var(--muted); }
.dpi-name { color: var(--text); font-weight: 600; text-decoration: none; }
.dpi-name:hover { text-decoration: underline; }
.dpi-you { font-size: 10px; font-weight: 700; color: var(--predict); background: var(--predict-soft); border-radius: 5px; padding: 0 5px; }
.dpi-verb { color: var(--muted); }
.dpi-titlelink { color: var(--text); font-weight: 600; cursor: pointer; }
.dpi-titlelink:hover { color: var(--predict); }
.dpi-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11.5px; font-weight: 700; border-radius: 6px; padding: 1px 7px;
  color: var(--predict); background: var(--predict-soft);
}
.dpi-badge.pb-peak { color: var(--toproll); background: rgba(62,212,154,.14); }
.dpi-badge.pb-flop { color: var(--flop); background: rgba(232,77,99,.14); }
.dpi-tag { font-size: 11px; color: var(--predict); }
.dpi-tag i { font-size: 12px; }
.dpi-time { font-size: 11.5px; color: var(--dim); }
.dpi-result { font-size: 11.5px; font-weight: 600; border-radius: 6px; padding: 1px 7px; }
.dpi-result.pred-hit { color: var(--toproll); background: rgba(62,212,154,.14); }
.dpi-result.pred-miss { color: var(--flop); background: rgba(232,77,99,.14); }
.dpi-pts { color: var(--toproll); font-weight: 700; }
.dpi-poster { width: 42px; height: 62px; border-radius: 6px; object-fit: cover; flex-shrink: 0; cursor: pointer; background: var(--surface2); }
.dpi-poster-ph { display: flex; align-items: center; justify-content: center; color: var(--dim); }

/* ---- "what to predict" strip ---- */
.drops-strip { margin: 4px 0 16px; }
.drops-strip-head {
  display: flex; align-items: center; gap: 7px; margin-bottom: 10px;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.15rem; letter-spacing: .5px; color: var(--text);
}
.drops-strip-head i { color: var(--predict); font-size: 1.1rem; }
.drops-strip-see {
  margin-left: auto; font-family: 'DM Sans', sans-serif; font-size: 12px;
  letter-spacing: 0; color: var(--muted); text-decoration: none;
}
.drops-strip-see:hover { color: var(--predict); }
.drops-strip-row { display: flex; gap: 11px; overflow-x: auto; padding-bottom: 6px; scrollbar-width: thin; }
.drops-strip-row::-webkit-scrollbar { height: 6px; }
.drops-strip-row::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }
.drops-pcard { width: 132px; flex-shrink: 0; }
.drops-pcard-poster { position: relative; aspect-ratio: 2/3; border-radius: 10px; overflow: hidden; cursor: pointer; background: var(--surface2); }
.drops-pcard-poster img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .25s ease; }
.drops-pcard-poster:hover img { transform: scale(1.05); }
.drops-pcard-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--dim); font-size: 1.6rem; }
.drops-pcard-count {
  position: absolute; top: 6px; left: 6px; font-size: 10px; font-weight: 700;
  color: #160d2e; background: var(--predict); border-radius: 20px; padding: 2px 7px;
}
.drops-pcard-title {
  font-size: 12px; font-weight: 600; color: var(--text); cursor: pointer; margin: 6px 0;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.drops-pcard-title:hover { color: var(--predict); }
.drops-pbtn {
  width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 5px;
  font-size: 11.5px; font-weight: 600; cursor: pointer;
  color: var(--predict); background: var(--predict-soft);
  border: 1px solid var(--predict-border); border-radius: 8px; padding: 6px 8px;
}
.drops-pbtn i { font-size: 13px; }
.drops-pbtn:hover { background: rgba(167,139,250,.22); }
.drops-pbtn.predicted { color: #160d2e; background: var(--predict); border-color: var(--predict); font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.drops-pbtn.predicted.dp-peak { background: var(--toproll); border-color: var(--toproll); }
.drops-pbtn.predicted.dp-flop { background: var(--flop); border-color: var(--flop); color: #fff; }

.drops-empty-feed {
  text-align: center; padding: 2.4rem 1.5rem; color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  background: var(--surface); border: 0.5px dashed var(--border2); border-radius: 12px; margin-top: 4px;
}
.drops-empty-feed i { font-size: 2.2rem; color: var(--predict); opacity: .7; }
.drops-empty-feed div { font-size: 14px; color: var(--text); }
.drops-empty-feed p { font-size: 12.5px; margin: 0; max-width: 320px; }
