/* Shared buttons */
.fph-btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 900;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.fph-btn-primary { background: #f5c400; color: #0b0b0c; }
.fph-btn-primary:hover { filter: brightness(.95); }
.fph-btn-ghost {
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
}
.fph-btn-ghost:hover { background: rgba(255,255,255,.09); }

.fph-choice {
  text-align: left;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}
.fph-choice:hover { background: rgba(255,255,255,.06); }
.fph-choice[disabled] { opacity: .7; cursor: not-allowed; }

.fph-share-btn, .fph-share-link {
  font-weight: 900;
  border-radius: 10px;
  padding: 8px 10px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  margin: 6px 6px 0 0;
}
.fph-share-btn:hover, .fph-share-link:hover { background: rgba(255,255,255,.06); }

/* Endless trivia page embed */
.fph-trivia-embed {
  color: #fff;
  max-width: 980px;
  margin: 18px auto;
}
.fph-trivia-title {
  font-size: 26px;
  font-weight: 1000;
  margin: 6px 0;
}
.fph-trivia-score {
  color: #cbd5e1;
  font-weight: 800;
  margin-bottom: 12px;
}
.fph-trivia-card {
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(20,20,22,.96), rgba(12,12,14,.96));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
  overflow: hidden;
  padding: 16px;
}
.fph-trivia-prompt {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
  margin: 6px 0 14px 0;
}
.fph-trivia-choices { display: grid; grid-template-columns: 1fr; gap: 10px; }
.fph-trivia-result { margin-top: 12px; font-weight: 1000; min-height: 22px; }
.fph-trivia-result.ok { color: #4ade80; }
.fph-trivia-result.no { color: #fb7185; }

.fph-trivia-after {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.fph-trivia-after img { width: 110px; border-radius: 14px; display:block; }
.fph-trivia-movie-title { font-size: 18px; font-weight: 1000; margin-bottom: 10px; }
.fph-trivia-links { display:flex; gap:10px; flex-wrap:wrap; margin-bottom: 10px; }

.fph-trivia-controls { margin-top: 14px; }

/* Floating daily hook modal */
.fph-hook-bg{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.68);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  padding: 18px;
}
.fph-hook-box{
  width: min(760px, 100%);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(20,20,22,.98), rgba(12,12,14,.98));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  overflow: hidden;
  color: #fff;
}
.fph-hook-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 16px;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.fph-hook-title{ font-weight: 1000; }
.fph-hook-close{
  appearance:none;
  border:0;
  background: transparent;
  color:#cbd5e1;
  font-size:18px;
  cursor:pointer;
  padding: 6px 10px;
  border-radius: 10px;
}
.fph-hook-close:hover{ background: rgba(255,255,255,.06); color:#fff; }
.fph-hook-body{ padding: 16px; }
.fph-hook-prompt{
  font-size: 18px;
  font-weight: 1000;
  margin: 6px 0 14px 0;
  line-height: 1.35;
}
.fph-hook-choices{ display:grid; gap:10px; }
.fph-hook-result{ margin-top: 12px; font-weight: 1000; min-height: 22px; }
.fph-hook-result.ok{ color:#4ade80; }
.fph-hook-result.no{ color:#fb7185; }

.fph-hook-after{
  margin-top: 14px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.fph-hook-poster{ width:110px; border-radius:14px; display:block; }
.fph-hook-movie-title{ font-size:18px; font-weight:1000; margin-bottom:10px; }
.fph-hook-links{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom: 10px; }

/* Mobile tweaks */
@media (max-width: 640px){
  .fph-trivia-after, .fph-hook-after { grid-template-columns: 90px 1fr; }
  .fph-trivia-after img, .fph-hook-poster { width: 90px; }
}