/* v1.4.2 — visual + motion; guaranteed enqueue */
:root{
  --oio-bg: #1f1f1f;
  --oio-panel: #2b2b2b;
  --oio-text: #f2f2f2;
  --oio-muted: #bdbdbd;
  --oio-accent: #ffd54d;
  --oio-link: #cdd7ff;
  --oio-border: rgba(255,255,255,.12);
}

.oio-imdb-top500-wrap{
  max-width: 840px;
  margin: 0 auto;
  background: var(--oio-panel);
  padding: 28px 22px;
  border-radius: 14px;
  color: var(--oio-text);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

.oio-imdb-top500-heading{
  text-align:center;
  margin: 0 0 16px;
  font-size: 32px;
  letter-spacing: .5px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--oio-text);
}

.oio-imdb-top500-list{
  list-style: none;
  margin: 0;
  padding: 0 4px;
  counter-reset: oio;
}

@keyframes oio-fade-slide{
  from{opacity:0; transform: translateY(6px);}
  to{opacity:1; transform: translateY(0);}
}

.oio-imdb-top500-item{
  position: relative;
  padding: 10px 0;
  border-bottom: 1px dashed var(--oio-border);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 10px;
  opacity: 0;
  animation: oio-fade-slide .4s ease forwards;
  animation-delay: calc(0.015s * var(--i, 0));
}

.oio-imdb-top500-rank{
  width: 40px;
  color: var(--oio-muted);
  font-variant-numeric: tabular-nums;
}

.oio-imdb-top500-title{
  color: var(--oio-link);
  text-decoration: none;
  position: relative;
}
.oio-imdb-top500-title::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: linear-gradient(90deg, var(--oio-link), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.oio-imdb-top500-title:hover::after{ transform: scaleX(1); }

.oio-imdb-top500-year{ color: var(--oio-muted); }
.oio-imdb-top500-rating{ margin-left:auto; font-weight:700; }
.oio-imdb-top500-votes{ color: var(--oio-muted); }

.oio-imdb-top500-my{
  margin-left: 8px;
  background: var(--oio-accent);
  color: #222;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
  text-decoration: none;
  box-shadow: 0 2px 0 rgba(0,0,0,.15);
  transition: transform .15s ease, box-shadow .15s ease;
}
.oio-imdb-top500-my:hover{
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,.25);
}

/* Compact */
.oio-imdb-top500-compact{
  background: var(--oio-panel);
  color: var(--oio-text);
  padding: 12px 14px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,.3);
}
.oio-imdb-top500-compact-title{ margin:0 0 8px; font-size:18px; font-weight:700; letter-spacing:.3px; }
.oio-imdb-top500-compact-list{ list-style:none; margin:0; padding:0; max-height:70vh; overflow:auto; }
.oio-imdb-top500-compact-row{
  display:flex; gap:8px; align-items:baseline; padding:6px 0; border-bottom:1px dashed var(--oio-border);
  opacity:0; animation:oio-fade-slide .35s ease forwards; animation-delay: calc(0.02s * var(--i, 0));
}
.oio-imdb-top500-compact-row .r{ width:28px; color:var(--oio-muted); font-variant-numeric: tabular-nums; }
.oio-imdb-top500-compact-row .t{ color:var(--oio-link); text-decoration:none; }
.oio-imdb-top500-compact-row .t:hover{ text-decoration:underline; }
.oio-imdb-top500-compact-row .mine{
  margin-left:auto; font-size:11px; background:var(--oio-accent); color:#222; padding:0 6px; border-radius:999px;
}

@media (prefers-reduced-motion: reduce){
  .oio-imdb-top500-item, .oio-imdb-top500-compact-row{ animation: none !important; opacity: 1 !important; }
}

@media (max-width: 560px){
  .oio-imdb-top500-wrap{ padding:18px 14px; border-radius:10px; }
  .oio-imdb-top500-heading{ font-size:22px; }
  .oio-imdb-top500-rating{ order:3; width:100%; margin-left:0; }
}
