:root {
  --bg:#070b12;
  --panel:#0f1621;
  --panel2:#121b27;
  --card:#0f1621;
  --card2:#0f1621;
  --text:#f4f7fb;
  --muted:#92a0b3;
  --line:rgba(255,255,255,.11);
  --accent:#68e4a2;
  --accent2:#68e4a2;
  --shadow:0 26px 80px rgba(0,0,0,.38);
}

* {
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
}

body {
  margin:0;
  min-height:100dvh;
  background:transparent;
  color:var(--text);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-weight:760;
}

.bg-orb {
  position:fixed;
  filter:blur(75px);
  opacity:.25;
  pointer-events:none;
}

.orb-a {
  width:330px;
  height:330px;
  border-radius:999px;
  background:#45d993;
  left:-120px;
  top:70px;
}

.orb-b {
  width:270px;
  height:270px;
  border-radius:999px;
  background:#45d993;
  right:8%;
  top:70px;
}

.app-shell {
  width:min(1180px,100%);
  margin:auto;
  padding:14px clamp(12px,3vw,28px) 56px;
}

.topbar {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:12px;
}

.brand {
  display:flex;
  align-items:center;
  gap:11px;
  background:transparent;
  border:0;
  color:var(--text);
  padding:0;
  text-align:left;
  cursor:pointer;
}

.brand-mark {
  display:grid;
  place-items:center;
  width:38px;
  height:38px;
  border-radius:13px;
  background:linear-gradient(135deg,var(--accent),#45d993);
  box-shadow:0 14px 36px rgba(104,228,162,.32);
  font-weight:1000;
  letter-spacing:-.05em;
}

.brand strong {
  display:block;
  font-size:18px;
}

.brand small {
  display:block;
  color:var(--muted);
  font-weight:750;
  margin-top:1px;
}

.profile-button,.icon-btn {
  border:1px solid var(--line);
  background:rgba(255,255,255,.055);
  color:var(--text);
  border-radius:999px;
  padding:8px 12px;
  display:flex;
  align-items:center;
  gap:9px;
  font-weight:900;
  backdrop-filter:blur(10px);
  cursor:pointer;
}

.profile-button span:first-child {
  display:grid;
  place-items:center;
  width:26px;
  height:26px;
  border-radius:999px;
  background:rgba(104,228,162,.28);
  color:#68e4a2;
}

.icon-btn {
  justify-content:center;
  min-width:42px;
  height:42px;
  padding:0;
}

.hero-card {
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.09);
  background:linear-gradient(135deg,rgba(104,228,162,.24),rgba(104,228,162,.12) 52%,rgba(15,22,33,.80));
  box-shadow:var(--shadow);
  border-radius:26px;
  padding:clamp(18px,3.4vw,30px);
  display:grid;
  grid-template-columns:1fr auto;
  gap:18px;
  align-items:center;
}

.hero-copy {
  position:relative;
  z-index:1;
}

.eyebrow {
  margin:0 0 6px;
  color:var(--accent2);
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.20em;
  font-weight:1000;
}

.hero-card h1 {
  margin:0;
  font-size:clamp(34px,6vw,58px);
  letter-spacing:-.075em;
  line-height:.9;
  max-width:720px;
}

.hero-status {
  color:#f4f7fb;
  max-width:720px;
  line-height:1.45;
  font-size:15px;
  margin:12px 0 0;
}

.hero-actions {
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}

.primary,.secondary,.chip,.tab,.preset,.limit-chip {
  border:0;
  border-radius:999px;
  padding:12px 17px;
  font-weight:1000;
  color:var(--text);
  cursor:pointer;
}

.primary {
  background:linear-gradient(135deg,var(--accent),#45d993);
  box-shadow:0 14px 35px rgba(69,217,147,.28);
}

.secondary,.chip,.tab,.limit-chip {
  background:rgba(255,255,255,.075);
  border:1px solid var(--line);
}

.primary-chip {
  background:rgba(104,228,162,.18);
  border-color:rgba(104,228,162,.45);
}

.ghost {
  margin-left:auto;
  color:#f4f7fb;
}

.hero-highlight {
  position:relative;
  z-index:1;
  min-width:190px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:22px;
  background:rgba(7,11,18,.35);
  padding:14px;
  backdrop-filter:blur(14px);
}

.hero-highlight strong {
  display:block;
  font-size:23px;
  letter-spacing:-.04em;
}

.hero-highlight small,.mini-label {
  color:var(--muted);
  display:block;
}

.mini-label {
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:950;
}

.control-strip {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  margin:16px 0 10px;
}

.mode-switch,
.quickbar,
.sheet-actions,
.advanced-actions,
.limit-group {
  display:flex;
  gap:9px;
  flex-wrap:wrap;
}

.limit-group {
  justify-content:flex-end;
}

.tab.active {
  background:#f4f7fb;
  color:#0f1621;
}

.country-control {
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-size:13px;
  font-weight:900;
}

.country-control select {
  min-width:180px;
}

.quickbar {
  align-items:center;
  margin-bottom:12px;
}

.result-tools {
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:12px;
  margin:12px 0;
}

.searchbox {
  display:flex;
  align-items:center;
  gap:10px;
  flex:1;
  max-width:540px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  border-radius:999px;
  padding:0 14px;
  color:var(--muted);
}

.searchbox input {
  border:0;
  background:transparent;
  padding:13px 4px;
}

.limit-chip {
  padding:9px 12px;
  font-size:13px;
  color:#f4f7fb;
}

.limit-chip.active {
  background:#f4f7fb;
  color:#0f1621;
}

.active-filters {
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin:6px 0 18px;
}

.info-pill {
  font-size:12px;
  color:#f4f7fb;
  background:rgba(255,255,255,.055);
  border:1px solid var(--line);
  border-radius:999px;
  padding:7px 10px;
  font-weight:850;
  cursor:default;
}

.results-head {
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:12px;
  margin:10px 0 14px;
}

.results-head h2 {
  margin:0;
  font-size:26px;
  letter-spacing:-.04em;
}

.count-pill {
  background:rgba(255,255,255,.08);
  border:1px solid var(--line);
  border-radius:999px;
  padding:8px 11px;
  font-weight:1000;
  color:#f4f7fb;
}

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

.grid.compact {
  grid-template-columns:repeat(auto-fill,minmax(330px,1fr));
}

.card {
  position:relative;
  overflow:hidden;
  background:linear-gradient(180deg,var(--card),var(--card2));
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:0 18px 45px rgba(0,0,0,.26);
  transition:.18s transform,.18s border,.18s box-shadow;
  cursor:pointer;
}

.card:hover {
  transform:translateY(-5px);
  border-color:rgba(104,228,162,.7);
  box-shadow:0 22px 60px rgba(0,0,0,.36);
}

.poster-wrap {
  position:relative;
  background:#0f1621;
}

.poster {
  width:100%;
  aspect-ratio:2/3;
  background:#0f1621;
  object-fit:cover;
  display:block;
}

.poster-placeholder {
  display:grid;
  place-items:center;
  aspect-ratio:2/3;
  color:#718096;
  font-size:42px;
  background:linear-gradient(135deg,#121b27,#0f1621);
}

.match {
  position:absolute;
  left:10px;
  bottom:10px;
  background:rgba(104,228,162,.92);
  color:#07110c;
  border-radius:999px;
  padding:7px 10px;
  font-size:12px;
  font-weight:1000;
  z-index:2;
}

.card-body {
  padding:13px;
}

.title {
  font-size:15px;
  font-weight:1000;
  line-height:1.18;
  margin:0 0 6px;
  letter-spacing:-.02em;
}

.meta {
  color:var(--muted);
  font-size:12px;
  display:flex;
  gap:6px;
  flex-wrap:wrap;
}

.genres,.providers {
  display:flex;
  gap:6px;
  flex-wrap:wrap;
  margin-top:10px;
}

.genre-badge {
  font-size:11px;
  color:#f4f7fb;
  background:rgba(255,255,255,.07);
  border:1px solid var(--line);
  border-radius:999px;
  padding:5px 8px;
}

.provider-logo {
  font-size:11px;
  font-weight:950;
  border-radius:999px;
  padding:6px 8px;
  background:#0f1621;
  border:1px solid var(--line);
  color:#68e4a2;
}

.provider-logo.netflix {
  background:#2b0b12;
  color:#fecaca;
}

.provider-logo.prime {
  background:#0a2540;
  color:#68e4a2;
}

.provider-logo.disney {
  background:#081a38;
  color:#68e4a2;
}

.provider-logo.max {
  background:#160a3a;
  color:#68e4a2;
}

.provider-logo.apple {
  background:#111827;
  color:#f4f7fb;
}

.compact .card {
  display:grid;
  grid-template-columns:104px 1fr;
}

.compact .poster,.compact .poster-placeholder {
  height:154px;
  aspect-ratio:auto;
}

.compact .card-body {
  padding:12px 14px;
}

.empty {
  text-align:center;
  color:var(--muted);
  padding:62px 20px;
}

.empty-icon {
  font-size:46px;
}

.hidden {
  display:none!important;
}

.sheet,.detail-dialog {
  border:0;
  padding:0;
  background:transparent;
  color:var(--text);
  width:min(760px,calc(100vw - 18px));
  max-height:92dvh;
}

.sheet::backdrop,.detail-dialog::backdrop {
  background:rgba(0,0,0,.7);
  backdrop-filter:blur(5px);
}

.sheet-content,.detail-content {
  background:linear-gradient(180deg,var(--panel2),var(--panel));
  border:1px solid var(--line);
  border-radius:30px;
  padding:20px;
  box-shadow:var(--shadow);
  max-height:90dvh;
  overflow:auto;
}

.sheet-head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:18px;
}

.sheet h2,.sheet h3 {
  margin:0;
}

.form-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(185px,1fr));
  gap:18px 16px;
  margin-bottom:26px;
}

label {
  display:grid;
  gap:7px;
  color:var(--muted);
  font-size:13px;
  font-weight:850;
}

input,select {
  background:#0f1621;
  border:1px solid var(--line);
  border-radius:15px;
  color:var(--text);
  padding:12px 40px 12px 14px;
  width:100%;
  font-weight:850;
}

select {
  appearance:auto;
}

.providers-block {
  margin-top:18px;
}

.providers-block h3 {
  margin-bottom:12px;
}

.check-grid {
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  margin-bottom:22px;
}

.check-grid label {
  display:flex;
  grid-template-columns:none;
  gap:8px;
  align-items:center;
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  padding:9px 12px;
  border-radius:999px;
  color:var(--text);
}

.check-grid input {
  width:auto;
}

.sliders {
  display:grid;
  gap:12px;
}

.slider-row {
  background:rgba(255,255,255,.045);
  border:1px solid var(--line);
  border-radius:16px;
  padding:10px;
}

.slider-row div {
  display:flex;
  justify-content:space-between;
  gap:10px;
}

.slider-row input {
  padding:0;
}

.profile-list {
  display:grid;
  gap:8px;
  margin-bottom:12px;
}

.profile-row {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  background:rgba(255,255,255,.055);
  border:1px solid var(--line);
  border-radius:16px;
  padding:10px;
}

.profile-row.active {
  border-color:var(--accent);
  background:rgba(104,228,162,.16);
}

.inline-form {
  display:flex;
  gap:8px;
}

.profile-actions {
  margin-top:14px;
}

.preset-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(210px,1fr));
  gap:12px;
}

.preset {
  border-radius:20px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.055);
  text-align:left;
  padding:16px;
  display:grid;
  gap:5px;
}

.preset:hover {
  border-color:rgba(104,228,162,.65);
}

.preset-icon {
  font-size:22px;
}

.preset strong {
  display:block;
}

.preset span:last-child {
  display:block;
  color:var(--muted);
  font-size:13px;
  line-height:1.35;
}

.advanced-actions {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(190px,1fr));
}

.detail-dialog {
  width:min(980px,calc(100vw - 18px));
}

.detail-hero {
  display:grid;
  grid-template-columns:minmax(150px,280px) 1fr;
  gap:22px;
}

.detail-hero img {
  width:100%;
  border-radius:22px;
}

.detail-hero h2 {
  font-size:clamp(30px,6vw,56px);
  line-height:.95;
  margin:0 0 10px;
  letter-spacing:-.065em;
}

.overview {
  color:#f4f7fb;
  line-height:1.58;
}

.floating-close {
  position:sticky;
  top:0;
  float:right;
  z-index:2;
  border:1px solid var(--line);
  background:rgba(0,0,0,.45);
  color:white;
  border-radius:999px;
  padding:10px 13px;
}

.kv {
  display:grid;
  grid-template-columns:126px 1fr;
  gap:9px;
  margin-top:14px;
  color:#f4f7fb;
}

.kv b {
  color:white;
}

.help {
  color:var(--muted);
  line-height:1.45;
}
.profile-stats-sheet{
  width:min(1000px, calc(100% - 24px));
}

.profile-stats-content{
  width:100%;
  max-width:1000px;
  max-height:min(90vh, 900px);
  overflow-y:auto;
}

.profile-stats-loading,
.profile-stats-empty{
  min-height:300px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:12px;
}

.profile-stats-loading.hidden,
.profile-stats-empty.hidden,
#profileStatsBody.hidden{
  display:none;
}

.profile-stats-spinner{
  width:36px;
  height:36px;
  border:3px solid rgba(255,255,255,.12);
  border-top-color:currentColor;
  border-radius:50%;
  animation:profileStatsSpin .8s linear infinite;
}

@keyframes profileStatsSpin{
  to{transform:rotate(360deg)}
}

.profile-summary-card{
  display:flex;
  gap:16px;
  align-items:flex-start;
  padding:20px;
  margin:6px 0 18px;
  border:1px solid rgba(255,255,255,.09);
  border-radius:20px;
  background:
    linear-gradient(135deg, rgba(104,228,162,.16), rgba(104,228,162,.07)),
    rgba(255,255,255,.03);
}

.profile-summary-icon{
  display:grid;
  place-items:center;
  flex:0 0 52px;
  width:52px;
  height:52px;
  border-radius:16px;
  font-size:25px;
  background:rgba(255,255,255,.09);
}

.profile-summary-card h3{
  margin:4px 0 7px;
  font-size:clamp(18px, 3vw, 25px);
  line-height:1.25;
}

.profile-summary-card .help{
  margin:0;
  line-height:1.55;
}

.profile-kpis{
  display:grid;
  grid-template-columns:repeat(5, minmax(0, 1fr));
  gap:10px;
  margin-bottom:14px;
}

.profile-kpi{
  min-height:112px;
  padding:15px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:17px;
  background:rgba(255,255,255,.035);
}

.profile-kpi span,
.profile-kpi small{
  display:block;
  color:var(--muted, #92a0b3);
}

.profile-kpi span{
  min-height:34px;
  font-size:12px;
  line-height:1.35;
}

.profile-kpi strong{
  display:block;
  margin:6px 0 2px;
  font-size:25px;
  line-height:1;
}

.profile-kpi small{
  font-size:11px;
}

.profile-stats-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
}

.profile-stat-panel{
  padding:18px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:19px;
  background:rgba(255,255,255,.03);
}

.profile-stat-panel-wide{
  grid-column:1 / -1;
}

.profile-stat-heading{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  margin-bottom:16px;
}

.profile-stat-heading h3{
  margin:3px 0 0;
  font-size:18px;
}

.profile-stat-heading > small{
  max-width:180px;
  color:var(--muted, #92a0b3);
  text-align:right;
  line-height:1.35;
}

.profile-bars{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:13px 22px;
}

.compact-bars{
  grid-template-columns:1fr;
}

.profile-bar-row{
  min-width:0;
}

.profile-bar-label{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  margin-bottom:7px;
}

.profile-bar-label strong{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  font-size:13px;
}

.profile-bar-label small{
  flex:0 0 auto;
  color:var(--muted, #92a0b3);
  font-size:10px;
}

.profile-bar-track{
  height:7px;
  overflow:hidden;
  border-radius:999px;
  background:rgba(255,255,255,.07);
}

.profile-bar-track span{
  display:block;
  height:100%;
  min-width:7px;
  border-radius:inherit;
  background:linear-gradient(90deg, #68e4a2, #45d993);
}

.profile-ranking{
  display:flex;
  flex-direction:column;
}

.profile-ranking-row{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.06);
}

.profile-ranking-row:last-child{
  border-bottom:0;
}

.profile-ranking-position{
  display:grid;
  place-items:center;
  flex:0 0 30px;
  width:30px;
  height:30px;
  border-radius:10px;
  background:rgba(255,255,255,.06);
  color:var(--muted, #92a0b3);
  font-size:12px;
  font-weight:700;
}

.profile-ranking-row strong,
.profile-ranking-row small{
  display:block;
}

.profile-ranking-row strong{
  font-size:13px;
}

.profile-ranking-row small{
  margin-top:3px;
  color:var(--muted, #92a0b3);
  font-size:10px;
}

.profile-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.profile-tag{
  display:inline-flex;
  padding:8px 10px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:999px;
  background:rgba(255,255,255,.045);
  font-size:12px;
}

.profile-stat-muted{
  margin:0;
  color:var(--muted, #92a0b3);
  font-size:13px;
}

.profile-stats-note{
  margin:16px 2px 2px;
  color:var(--muted, #92a0b3);
  font-size:11px;
  line-height:1.5;
  text-align:center;
}

@media (max-width:800px){
  .profile-kpis{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .profile-kpi:last-child{
    grid-column:1 / -1;
  }

  .profile-stats-grid{
    grid-template-columns:1fr;
  }

  .profile-stat-panel-wide{
    grid-column:auto;
  }

  .profile-bars{
    grid-template-columns:1fr;
  }
}

@media (max-width:520px){
  .profile-stats-sheet{
    width:100%;
    max-width:none;
    margin:0;
  }

  .profile-stats-content{
    max-height:94vh;
    padding-left:15px;
    padding-right:15px;
  }

  .profile-summary-card{
    padding:16px;
  }

  .profile-summary-icon{
    flex-basis:44px;
    width:44px;
    height:44px;
  }

  .profile-kpis{
    gap:8px;
  }

  .profile-kpi{
    min-height:103px;
    padding:13px;
  }

  .profile-stat-panel{
    padding:15px;
  }

  .profile-stat-heading{
    display:block;
  }

  .profile-stat-heading > small{
    display:block;
    max-width:none;
    margin-top:5px;
    text-align:left;
  }

  .profile-bar-label{
    display:block;
  }

  .profile-bar-label small{
    display:block;
    margin-top:3px;
  }
}
@media(max-width:700px) {
  .app-shell {
    padding-inline:12px;
  }

  .topbar {
    margin-bottom:10px;
  }

  .profile-button #profileNameTop {
    display:none;
  }

  .hero-card {
    grid-template-columns:1fr;
    border-radius:24px;
    padding:20px;
  }

  .hero-card h1 {
    font-size:42px;
  }

  .hero-highlight {
    display:none;
  }

  .hero-actions .primary {
    width:100%;
  }

  .control-strip {
    display:grid;
    grid-template-columns:1fr;
    align-items:stretch;
  }

  .country-control {
    display:grid;
    gap:6px;
  }

  .country-control select {
    min-width:0;
  }

  .quickbar .ghost {
    margin-left:0;
  }

  .result-tools {
    display:flex;
    justify-content:flex-end;
  }

  .grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:11px;
  }

  .grid.compact {
    grid-template-columns:1fr;
  }

  .title {
    font-size:14px;
  }

  .detail-hero {
    grid-template-columns:1fr;
  }

  .detail-hero img {
    max-width:250px;
  }

  .sheet {
    width:100vw;
    max-height:94dvh;
    align-self:end;
  }

  .sheet-content {
    border-radius:28px 28px 0 0;
  }

  .inline-form {
    flex-direction:column;
  }

  .kv {
    grid-template-columns:1fr;
  }

  .results-head h2 {
    font-size:22px;
  }

}


/* Uitgebreid filmprofiel */
.profile-stats-link{
  display:inline-flex;
  margin-top:10px;
  padding:0;
  border:0;
  background:transparent;
  color:#68e4a2;
  font:inherit;
  font-size:13px;
  font-weight:950;
  cursor:pointer;
  text-align:left;
}
.profile-stats-link:hover{ text-decoration:underline; }

.profile-stats-sheet{ width:min(1120px,calc(100% - 24px)); }
.profile-stats-content{
  width:100%;
  max-width:1120px;
  max-height:min(92vh,980px);
  overflow-y:auto;
}
.profile-stats-head{
  position:sticky;
  top:0;
  z-index:10;
  padding-bottom:12px;
  background:linear-gradient(180deg,#0f1621 82%,transparent);
}

.profile-identity-card{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:18px;
  align-items:start;
  padding:22px;
  margin:4px 0 16px;
  border:1px solid rgba(255,255,255,.11);
  border-radius:24px;
  background:
    radial-gradient(circle at 0 0,rgba(104,228,162,.26),transparent 38%),
    linear-gradient(135deg,rgba(104,228,162,.12),rgba(255,255,255,.035));
}
.profile-taste-icon{
  display:grid;
  place-items:center;
  width:64px;
  height:64px;
  border-radius:20px;
  font-size:31px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.08);
}
.profile-identity-copy h3{
  margin:2px 0 8px;
  font-size:clamp(26px,4vw,40px);
  line-height:1;
  letter-spacing:-.05em;
}
.profile-identity-copy p{
  margin:0 0 8px;
  color:#f4f7fb;
  line-height:1.55;
}
.profile-identity-copy small{ color:var(--muted); line-height:1.45; }

.profile-kpis{
  grid-template-columns:repeat(3,minmax(0,1fr));
}
.profile-kpi strong{ font-size:28px; }

.profile-axes{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px 24px;
}
.profile-axis{ display:grid; gap:7px; }
.profile-axis-labels{
  display:flex;
  justify-content:space-between;
  color:var(--muted);
  font-size:12px;
}
.profile-axis-track{
  position:relative;
  height:10px;
  overflow:visible;
  border-radius:999px;
  background:rgba(255,255,255,.08);
}
.profile-axis-fill{
  display:block;
  height:100%;
  border-radius:inherit;
  background:linear-gradient(90deg,var(--accent2),var(--accent));
}
.profile-axis-track i{
  position:absolute;
  top:50%;
  width:18px;
  height:18px;
  border-radius:50%;
  background:#f4f7fb;
  border:4px solid #68e4a2;
  transform:translate(-50%,-50%);
  box-shadow:0 4px 15px rgba(0,0,0,.35);
}
.profile-axis > strong{ font-size:13px; color:#f4f7fb; }

.profile-ranking-best{
  display:block;
  margin-top:4px;
  color:#68e4a2;
  font-size:11px;
  line-height:1.35;
}
.profile-ranking-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px 18px;
}

.profile-distribution{ display:grid; gap:10px; }
.profile-distribution-row{
  display:grid;
  grid-template-columns:92px 1fr 34px;
  gap:10px;
  align-items:center;
  font-size:12px;
}
.profile-distribution-track{
  height:8px;
  overflow:hidden;
  border-radius:999px;
  background:rgba(255,255,255,.075);
}
.profile-distribution-track i{
  display:block;
  height:100%;
  border-radius:inherit;
  background:linear-gradient(90deg,var(--accent),var(--accent2));
}
.profile-distribution-row strong{ text-align:right; }

.profile-dna{ display:grid; gap:12px; }
.profile-dna-item{
  display:grid;
  grid-template-columns:28px 1fr 42px;
  gap:9px;
  align-items:center;
}
.profile-dna-item > span{ font-size:19px; }
.profile-dna-item strong{ display:block; margin-bottom:5px; font-size:13px; }
.profile-dna-item b{ text-align:right; font-size:12px; color:#f4f7fb; }
.profile-dna-track{
  height:7px;
  overflow:hidden;
  border-radius:999px;
  background:rgba(255,255,255,.07);
}
.profile-dna-track i{
  display:block;
  height:100%;
  border-radius:inherit;
  background:linear-gradient(90deg,#68e4a2,#68e4a2);
}

.profile-facts{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}
.profile-fact{
  display:grid;
  grid-template-columns:30px 1fr;
  gap:10px;
  align-items:start;
  padding:13px;
  border-radius:15px;
  background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.07);
}
.profile-fact span{ font-size:19px; }
.profile-fact p{ margin:0; color:#f4f7fb; line-height:1.45; font-size:13px; }

.profile-tag-1{ opacity:.68; font-size:11px; }
.profile-tag-2{ opacity:.78; font-size:12px; }
.profile-tag-3{ opacity:.88; font-size:13px; }
.profile-tag-4{ font-size:14px; }
.profile-tag-5{ font-size:15px; border-color:rgba(104,228,162,.55); }

@media(max-width:800px){
  .profile-kpis{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .profile-axes{ grid-template-columns:1fr; }
  .profile-ranking-grid,.profile-facts{ grid-template-columns:1fr; }
}
@media(max-width:700px){
  .hero-highlight{ display:block; }
}
@media(max-width:520px){
  .profile-identity-card{ grid-template-columns:1fr; padding:17px; }
  .profile-taste-icon{ width:52px; height:52px; }
  .profile-kpis{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .profile-distribution-row{ grid-template-columns:78px 1fr 28px; }
}

/* Aanbevelingsmodus en filmvergelijking */
.recommendation-mode{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin:16px 0 10px;
}
.recommendation-mode-button{
  display:flex;
  align-items:center;
  gap:12px;
  min-height:72px;
  padding:13px 15px;
  border:1px solid var(--line);
  border-radius:20px;
  background:rgba(255,255,255,.045);
  color:var(--text);
  text-align:left;
  cursor:pointer;
  transition:.18s transform,.18s border-color,.18s background;
}
.recommendation-mode-button:hover{transform:translateY(-2px);border-color:rgba(104,228,162,.55)}
.recommendation-mode-button.active{
  border-color:rgba(104,228,162,.75);
  background:linear-gradient(135deg,rgba(104,228,162,.20),rgba(104,228,162,.08));
  box-shadow:0 12px 34px rgba(0,0,0,.18);
}
.recommendation-mode-button > span:first-child{
  display:grid;
  place-items:center;
  flex:0 0 42px;
  width:42px;
  height:42px;
  border-radius:14px;
  background:rgba(255,255,255,.08);
  font-size:21px;
}
.recommendation-mode-button strong,.recommendation-mode-button small{display:block}
.recommendation-mode-button strong{font-size:15px}
.recommendation-mode-button small{margin-top:3px;color:var(--muted);font-size:12px;font-weight:750}

.similar-movie-panel{
  display:grid;
  grid-template-columns:minmax(220px,.8fr) minmax(320px,1.2fr);
  gap:24px;
  align-items:start;
  margin:10px 0 16px;
  padding:20px;
  border:1px solid var(--line);
  border-radius:24px;
  background:linear-gradient(135deg,rgba(104,228,162,.09),rgba(104,228,162,.10),rgba(255,255,255,.025));
}
.similar-search-copy h2{margin:0;font-size:25px;letter-spacing:-.04em}
.similar-search-copy p:last-child{margin:8px 0 0;color:var(--muted);line-height:1.45;font-size:13px}
.movie-search-wrap{position:relative}
.movie-search-label{margin-bottom:7px}
.movie-searchbox{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:9px;
  padding:0 12px;
  border:1px solid var(--line);
  border-radius:17px;
  background:#0f1621;
}
.movie-searchbox > span{color:var(--muted);font-size:22px}
.movie-searchbox input{padding:13px 0;border:0;background:transparent}
.movie-search-clear{border:0;background:transparent;color:var(--muted);cursor:pointer;font-weight:1000}
.movie-suggestions{
  position:absolute;
  z-index:30;
  top:76px;
  left:0;
  right:0;
  max-height:360px;
  overflow:auto;
  padding:6px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#0c1423;
  box-shadow:var(--shadow);
}
.movie-suggestion{
  width:100%;
  display:grid;
  grid-template-columns:42px 1fr;
  gap:10px;
  align-items:center;
  padding:8px;
  border:0;
  border-radius:13px;
  background:transparent;
  color:var(--text);
  text-align:left;
  cursor:pointer;
}
.movie-suggestion:hover{background:rgba(255,255,255,.07)}
.movie-suggestion img,.movie-suggestion-placeholder{width:42px;height:58px;object-fit:cover;border-radius:8px;background:#121b27}
.movie-suggestion-placeholder{display:grid;place-items:center}
.movie-suggestion strong,.movie-suggestion small{display:block}
.movie-suggestion small{margin-top:3px;color:var(--muted)}
.selected-movie{
  display:grid;
  grid-template-columns:62px 1fr auto;
  gap:12px;
  align-items:center;
  margin-top:10px;
  padding:10px;
  border:1px solid rgba(104,228,162,.45);
  border-radius:17px;
  background:rgba(104,228,162,.11);
}
.selected-movie img,.selected-movie-poster{width:62px;height:88px;object-fit:cover;border-radius:11px;background:#121b27}
.selected-movie-poster{display:grid;place-items:center;font-size:24px}
.selected-movie strong,.selected-movie small{display:block}
.selected-movie small{margin-top:5px;color:var(--muted)}
.selected-movie button{align-self:start}

@media(max-width:700px){
  .recommendation-mode{grid-template-columns:1fr 1fr}
  .recommendation-mode-button{display:grid;grid-template-columns:1fr;gap:7px;min-height:112px}
  .recommendation-mode-button > span:first-child{width:38px;height:38px}
  .similar-movie-panel{grid-template-columns:1fr;padding:16px;gap:16px}
}
.similarity-reasons{display:grid;gap:3px;margin-top:9px;color:#68e4a2;font-size:10px;line-height:1.3}


/* Genegeerde films */
.card-menu-button{position:absolute;top:9px;right:9px;z-index:8;width:36px;height:36px;border:1px solid rgba(255,255,255,.18);border-radius:999px;background:rgba(7,11,18,.78);color:#fff;font-size:22px;line-height:1;cursor:pointer;backdrop-filter:blur(8px)}
.card-menu{position:absolute;top:50px;right:9px;z-index:9;min-width:155px;padding:6px;border:1px solid var(--line);border-radius:13px;background:#0f1621;box-shadow:0 16px 40px rgba(0,0,0,.42)}
.card-menu button{width:100%;padding:10px 11px;border:0;border-radius:9px;background:transparent;color:#fecaca;text-align:left;font-weight:900;cursor:pointer}
.card-menu button:hover{background:rgba(255,255,255,.07)}
.profile-kpi-action{cursor:pointer;transition:.18s transform,.18s border-color}
.profile-kpi-action:hover{transform:translateY(-2px);border-color:rgba(104,228,162,.65)}
.ignored-movies-sheet{width:min(680px,calc(100vw - 18px))}
.ignored-movies-list{display:grid;gap:9px;margin-top:16px}
.ignored-movie-row{display:grid;grid-template-columns:48px 1fr auto;gap:12px;align-items:center;padding:9px;border:1px solid var(--line);border-radius:15px;background:rgba(255,255,255,.04)}
.ignored-movie-row img,.ignored-movie-placeholder{width:48px;height:68px;object-fit:cover;border-radius:9px;background:#121b27}
.ignored-movie-placeholder{display:grid;place-items:center}
.ignored-movie-row strong,.ignored-movie-row small{display:block}
.ignored-movie-row small{margin-top:4px;color:var(--muted)}
.snackbar{position:fixed;left:50%;bottom:24px;z-index:100;display:flex;align-items:center;gap:22px;min-width:min(390px,calc(100vw - 24px));padding:14px 16px;border:1px solid var(--line);border-radius:16px;background:#f4f7fb;color:#0f1621;box-shadow:var(--shadow);font-weight:950;transform:translate(-50%,140%);opacity:0;transition:.22s transform,.22s opacity}
.snackbar.show{transform:translate(-50%,0);opacity:1}
.snackbar button{margin-left:auto;border:0;background:transparent;color:#45d993;font-weight:1000;cursor:pointer}
@media(max-width:520px){.ignored-movie-row{grid-template-columns:42px 1fr}.ignored-movie-row img,.ignored-movie-placeholder{width:42px;height:60px}.ignored-movie-row button{grid-column:1/-1;width:100%}.snackbar{bottom:12px}}
