@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Open+Sans:ital,wght@0,400;0,600;0,700;1,400&display=swap');

#fff-film-recommender {
  font-family: 'Open Sans', Helvetica, Arial, Lucida, sans-serif;
  color: #011052;
  max-width: 640px;
  margin: 0 auto;
}

/* Header */
.fff-film-header {
  background: #011052;
  padding: 36px 28px 32px;
  text-align: center;
  border-radius: 14px 14px 0 0;
}
.fff-film-header-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #B4E0F8;
  margin-bottom: 12px;
}
.fff-film-header h2 {
  font-family: 'Amatic SC', handwriting;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.15;
}
.fff-film-header h2 span { color: #ED204D; }
.fff-film-header p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  margin: 12px 0 0;
  line-height: 1.6;
}

/* Search */
.fff-film-search {
  background: #f0f6ff;
  padding: 28px;
  border: 1px solid #d0e8f5;
  border-top: none;
}
.fff-film-search label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 10px;
}
.fff-film-search-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fff-film-search-row input {
  width: 100%;
  padding: 13px 16px;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
  border-radius: 8px;
  border: 2px solid #d0e8f5;
  outline: none;
  color: #011052;
  background: #fff;
  box-sizing: border-box;
}
.fff-film-search-row input:focus {
  border-color: #B4E0F8;
}
.fff-film-btn {
  width: 100%;
  background: #ED204D;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 20px;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  box-sizing: border-box;
}
.fff-film-btn:hover { background: #c4103a; }
.fff-film-btn:disabled { background: #aaa; cursor: default; }

/* Desktop: input and button sit side by side */
@media (min-width: 600px) {
  .fff-film-search-row {
    flex-direction: row;
    align-items: stretch;
  }
  .fff-film-search-row input { flex: 1 1 auto; }
  .fff-film-btn {
    width: auto;
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

/* Error */
.fff-film-error {
  margin-top: 16px;
  padding: 14px 16px;
  background: #fdecea;
  border-radius: 8px;
  color: #ED204D;
  font-size: 13px;
}

/* Loading */
.fff-film-loading {
  text-align: center;
  padding: 40px 20px;
}
.fff-film-reel {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: conic-gradient(#111 0deg,#333 60deg,#111 120deg,#222 180deg,#111 240deg,#333 300deg,#111 360deg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: fff-film-spin 2.5s linear infinite;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.fff-film-reel-centre {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ED204D;
  border: 3px solid #fff;
}
@keyframes fff-film-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.fff-film-loading-icon { font-size: 28px; margin-bottom: 8px; }
.fff-film-loading-text {
  font-size: 15px;
  font-style: italic;
  color: #011052;
  min-height: 24px;
}
.fff-film-loading-text span { color: #ED204D; }
.fff-film-loading-sub {
  font-size: 12px;
  color: #aaa;
  margin-top: 12px;
}

/* Results */
.fff-film-results {
  padding: 20px 0;
}
.fff-film-intro {
  font-size: 15px;
  font-style: italic;
  line-height: 1.7;
  border-left: 3px solid #B4E0F8;
  padding-left: 16px;
  margin: 0 0 24px;
  color: #011052;
}

/* Film card */
.fff-film-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #d0e8f5;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(1,16,82,0.06);
  animation: fff-film-fadeIn 0.4s ease;
}
@keyframes fff-film-fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.fff-film-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.fff-film-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eef6fd;
  border: 2px solid #d0e8f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  overflow: hidden;
}
.fff-film-card-header h3 {
  font-family: 'Amatic SC', handwriting;
  font-size: 26px;
  font-weight: 700;
  color: #011052;
  margin: 0 0 6px;
  line-height: 1;
}
.fff-film-genre {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: #ED204D;
  padding: 3px 10px;
  border-radius: 20px;
}
.fff-film-meta {
  font-size: 12px;
  font-weight: 600;
  color: #888;
  margin: 0 0 12px;
}
.fff-film-card p {
  font-size: 13px;
  line-height: 1.7;
  color: #333;
  margin: 0 0 16px;
}

/* Highlights */
.fff-film-highlights-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 8px;
}
.fff-film-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  background: #eef6fd;
  border-radius: 6px;
  margin-bottom: 6px;
  font-size: 13px;
  color: #011052;
}
.fff-film-highlight-note { color: #B4E0F8; }

/* Streaming line */
.fff-film-streaming {
  font-size: 12px;
  color: #555;
  margin-top: 14px;
  line-height: 1.5;
}
.fff-film-streaming-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 4px;
}

/* Links */
.fff-film-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.fff-film-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-family: 'Open Sans', sans-serif;
  text-decoration: none;
  transition: opacity 0.2s;
}
.fff-film-link:hover { opacity: 0.8; }
.fff-film-link-justwatch { background: #FCD90520; color: #b89400; border: 1px solid #FCD90560; }
.fff-film-link-trailer   { background: #FF000020; color: #FF0000; border: 1px solid #FF000040; }
.fff-film-link-tv5monde  { background: #0e749020; color: #0e7490; border: 1px solid #0e749040; }
.fff-film-link-wikipedia { background: #55555520; color: #555;    border: 1px solid #55555540; }

/* Trailer toggle + inline embed */
.fff-film-trailer-toggle { cursor: pointer; }
.fff-film-link-active { box-shadow: inset 0 0 0 2px #FF000055; }
.fff-film-trailer-embed { display: none; margin-top: 14px; }
.fff-film-iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 10px;
  display: block;
  background: #000;
}
.fff-film-trailer-fallback {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  color: #888;
  text-decoration: none;
}
.fff-film-trailer-fallback:hover { color: #ED204D; text-decoration: underline; }

/* Footer note */
.fff-film-footer-note {
  font-size: 11px;
  color: #aaa;
  text-align: center;
  font-style: italic;
  margin-top: 24px;
  line-height: 1.6;
}
