/* ========== Variables ========== */
:root {
  --bg: #050510;
  --bg-2: #0a0a1c;
  --pink: #FF6B9D;
  --purple: #9B59B6;
  --cyan: #00D4FF;
  --text: #e8e8f0;
  --text-dim: #9a9ab0;
  --border: rgba(255, 255, 255, 0.08);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-strong: rgba(255, 255, 255, 0.07);
  --shadow-glow: 0 0 40px rgba(255, 107, 157, 0.25);

  --font-head: "Nunito", system-ui, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ========== Reset ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: radial-gradient(ellipse at top, var(--bg-2) 0%, var(--bg) 60%);
  min-height: 100vh;
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}

a { color: var(--pink); text-decoration: none; transition: color .2s; }
a:hover { color: var(--cyan); }

/* ========== Custom Cursor ========== */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 12px var(--pink), 0 0 24px var(--pink);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .12s ease-out;
}
.cursor-glow {
  position: fixed;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 107, 157, 0.4);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform .25s ease-out, width .2s, height .2s, border-color .2s;
}
.cursor.hover { transform: translate(-50%, -50%) scale(1.6); }
.cursor-glow.hover { width: 60px; height: 60px; border-color: var(--cyan); }

@media (max-width: 768px) {
  .cursor, .cursor-glow { display: none; }
  body { cursor: auto; }
}

/* ========== Sakura Petals ========== */
.sakura-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.petal {
  position: absolute;
  top: -40px;
  width: 14px; height: 14px;
  background: radial-gradient(circle at 30% 30%, #ffc1d8, #FF6B9D);
  border-radius: 50% 0 50% 0;
  opacity: 0.7;
  animation: fall linear infinite;
  filter: blur(0.5px);
}
.petal:nth-child(1)  { left: 5%;  width: 10px; height: 10px; animation-duration: 14s; animation-delay: 0s; }
.petal:nth-child(2)  { left: 12%; width: 16px; height: 16px; animation-duration: 18s; animation-delay: 2s; }
.petal:nth-child(3)  { left: 20%; width: 12px; height: 12px; animation-duration: 11s; animation-delay: 4s; }
.petal:nth-child(4)  { left: 28%; width: 18px; height: 18px; animation-duration: 20s; animation-delay: 1s; }
.petal:nth-child(5)  { left: 36%; width: 9px;  height: 9px;  animation-duration: 13s; animation-delay: 6s; }
.petal:nth-child(6)  { left: 44%; width: 14px; height: 14px; animation-duration: 16s; animation-delay: 3s; }
.petal:nth-child(7)  { left: 52%; width: 11px; height: 11px; animation-duration: 12s; animation-delay: 5s; }
.petal:nth-child(8)  { left: 60%; width: 17px; height: 17px; animation-duration: 19s; animation-delay: 0s; }
.petal:nth-child(9)  { left: 68%; width: 10px; height: 10px; animation-duration: 14s; animation-delay: 7s; }
.petal:nth-child(10) { left: 75%; width: 13px; height: 13px; animation-duration: 17s; animation-delay: 2s; }
.petal:nth-child(11) { left: 82%; width: 15px; height: 15px; animation-duration: 15s; animation-delay: 4s; }
.petal:nth-child(12) { left: 88%; width: 10px; height: 10px; animation-duration: 13s; animation-delay: 6s; }
.petal:nth-child(13) { left: 92%; width: 16px; height: 16px; animation-duration: 18s; animation-delay: 1s; }
.petal:nth-child(14) { left: 96%; width: 12px; height: 12px; animation-duration: 14s; animation-delay: 3s; }
.petal:nth-child(15) { left: 99%; width: 11px; height: 11px; animation-duration: 16s; animation-delay: 5s; }

@keyframes fall {
  0%   { transform: translateY(-10vh) translateX(0) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.7; }
  100% { transform: translateY(110vh) translateX(120px) rotate(720deg); opacity: 0; }
}

/* ========== Particles ========== */
.particles {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
}
.particles span {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan);
  opacity: 0.6;
  animation: float 8s infinite ease-in-out;
}
.particles span:nth-child(1)  { left: 10%; top: 20%; animation-delay: 0s; }
.particles span:nth-child(2)  { left: 80%; top: 30%; animation-delay: 1s; background: var(--pink); box-shadow: 0 0 8px var(--pink); }
.particles span:nth-child(3)  { left: 25%; top: 70%; animation-delay: 2s; background: var(--purple); box-shadow: 0 0 8px var(--purple); }
.particles span:nth-child(4)  { left: 60%; top: 80%; animation-delay: 3s; }
.particles span:nth-child(5)  { left: 90%; top: 60%; animation-delay: 4s; background: var(--pink); box-shadow: 0 0 8px var(--pink); }
.particles span:nth-child(6)  { left: 40%; top: 10%; animation-delay: 5s; background: var(--purple); box-shadow: 0 0 8px var(--purple); }
.particles span:nth-child(7)  { left: 15%; top: 50%; animation-delay: 6s; }
.particles span:nth-child(8)  { left: 70%; top: 15%; animation-delay: 7s; }
.particles span:nth-child(9)  { left: 50%; top: 90%; animation-delay: 0.5s; background: var(--pink); box-shadow: 0 0 8px var(--pink); }
.particles span:nth-child(10) { left: 85%; top: 75%; animation-delay: 2.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.6; }
  50%      { transform: translateY(-30px) translateX(15px); opacity: 1; }
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 2;
  overflow: hidden;
}
.hero-inner {
  text-align: center;
  max-width: 800px;
  position: relative;
  z-index: 3;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 50%, var(--cyan) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  min-height: 1.2em;
  position: relative;
}
.hero-title::after {
  content: "|";
  -webkit-text-fill-color: var(--pink);
  animation: blink 1s steps(1) infinite;
  margin-left: 4px;
}
.hero-title.done::after { display: none; }
@keyframes blink { 50% { opacity: 0; } }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-dim);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp .8s ease-out 1.8s forwards;
}

.hero-stats {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp .8s ease-out 2.1s forwards;
}
.stat-pill {
  background: var(--glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: .75rem 1.25rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--pink);
}
.stat-label {
  color: var(--text-dim);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-cta {
  display: inline-block;
  padding: .85rem 2rem;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: white;
  border-radius: 100px;
  font-weight: 700;
  letter-spacing: .5px;
  box-shadow: 0 8px 30px rgba(255, 107, 157, 0.3);
  opacity: 0;
  animation: fadeUp .8s ease-out 2.4s forwards;
  transition: transform .25s, box-shadow .25s;
}
.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 107, 157, 0.5);
  color: white;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.anime-silhouette {
  position: fixed;
  bottom: -50px;
  right: -80px;
  width: 360px;
  height: auto;
  z-index: 1;
  opacity: 0.5;
  pointer-events: none;
  animation: floatSil 8s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(255, 107, 157, 0.3));
}
@keyframes floatSil {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-15px); }
}
@media (max-width: 768px) {
  .anime-silhouette { width: 200px; right: -50px; opacity: 0.35; }
}

/* ========== Sections ========== */
.section {
  position: relative;
  z-index: 2;
  padding: 6rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
.section-header {
  margin-bottom: 3rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: .5rem;
}
.title-accent {
  background: linear-gradient(135deg, var(--pink), var(--cyan));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: .7em;
  margin-right: .5rem;
}
.section-sub {
  color: var(--text-dim);
  font-size: 1rem;
}

/* ========== Reveal on scroll ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease-out, transform .8s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Grids ========== */
.grid {
  display: grid;
  gap: 1.5rem;
}
.grid-watching {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}
.grid-completed {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
@media (max-width: 480px) {
  .grid-watching, .grid-completed {
    grid-template-columns: 1fr;
  }
}

/* ========== Card base (Glassmorphism) ========== */
.card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 16px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s;
  opacity: 0;
  transform: translateY(30px);
  animation: cardIn .7s ease-out forwards;
  position: relative;
}
@keyframes cardIn {
  to { opacity: 1; transform: translateY(0); }
}
.card:hover {
  transform: scale(1.03) translateY(-4px);
  border-color: rgba(255, 107, 157, 0.5);
  box-shadow: 0 20px 60px rgba(255, 107, 157, 0.2), 0 0 0 1px rgba(255, 107, 157, 0.2);
}

/* ========== Watching cards ========== */
.card-watching {
  display: flex;
  flex-direction: column;
}
.card-watching .cover {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}
.card-watching .content {
  padding: 1.25rem;
}
.card-watching .title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: .5rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-watching .progress-row {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  color: var(--text-dim);
  margin-bottom: .5rem;
}
.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  border-radius: 100px;
  width: 0;
  transition: width 1.4s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 0 10px rgba(255, 107, 157, 0.6);
}
.card-watching .note {
  font-size: .85rem;
  color: var(--text-dim);
  margin-top: .75rem;
  font-style: italic;
}

/* ========== Completed cards ========== */
.card-completed {
  position: relative;
  aspect-ratio: 2 / 3;
}
.card-completed .cover {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.card-completed .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 16, 0.95) 0%, rgba(5, 5, 16, 0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  opacity: 1;
  transition: opacity .3s;
}
.card-completed .hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(155, 89, 182, 0.92), rgba(255, 107, 157, 0.92));
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
  color: white;
}
.card-completed:hover .hover-overlay { opacity: 1; }
.card-completed:hover .overlay { opacity: 0; }
.card-completed .title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .25rem;
}
.card-completed .stars {
  color: #ffd700;
  font-size: .9rem;
  letter-spacing: 1px;
}
.card-completed .hover-overlay .rating-big {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: .5rem;
}
.card-completed .hover-overlay .hover-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: .5rem;
}
.card-completed .hover-overlay .hover-note {
  font-size: .85rem;
  line-height: 1.5;
  font-style: italic;
}

/* ========== Planned list ========== */
.planned-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.planned-item {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideIn .6s ease-out forwards;
}
@keyframes slideIn {
  to { opacity: 1; transform: translateX(0); }
}
.planned-item:hover {
  transform: scale(1.01) translateX(4px);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.15);
}
.planned-thumb {
  width: 50px; height: 70px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  background: #1a1a2e;
}
.planned-info { flex: 1; min-width: 0; }
.planned-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .15rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.planned-meta {
  font-size: .8rem;
  color: var(--text-dim);
}
.priority-badge {
  padding: .25rem .65rem;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.priority-high   { background: rgba(255, 107, 157, 0.2); color: var(--pink); border: 1px solid rgba(255, 107, 157, 0.4); }
.priority-medium { background: rgba(155, 89, 182, 0.2); color: var(--purple); border: 1px solid rgba(155, 89, 182, 0.4); }
.priority-low    { background: rgba(0, 212, 255, 0.15); color: var(--cyan); border: 1px solid rgba(0, 212, 255, 0.3); }

/* ========== Empty state ========== */
.empty-state {
  color: var(--text-dim);
  padding: 2rem;
  text-align: center;
  font-style: italic;
  grid-column: 1 / -1;
}

/* ========== Footer ========== */
.footer {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--text-dim);
  font-size: .9rem;
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
}
.footer-hint {
  margin-top: .5rem;
  font-size: .75rem;
  opacity: 0.6;
}
.footer kbd {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 6px;
  font-family: monospace;
  font-size: .8em;
}

/* ========== Admin Panel ========== */
.admin-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 16, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.admin-overlay.open { display: flex; }
.admin-panel {
  background: linear-gradient(135deg, rgba(20, 20, 40, 0.95), rgba(10, 10, 28, 0.95));
  border: 1px solid rgba(255, 107, 157, 0.3);
  border-radius: 16px;
  padding: 2rem;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 60px rgba(255, 107, 157, 0.15);
}
.admin-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-size: 1.75rem;
  cursor: none;
  line-height: 1;
  padding: 0 .5rem;
}
.admin-close:hover { color: var(--pink); }
.admin-panel h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--pink), var(--cyan));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.admin-panel label {
  display: block;
  margin-bottom: 1rem;
  font-size: .85rem;
  color: var(--text-dim);
  font-weight: 600;
}
.admin-panel input,
.admin-panel select,
.admin-panel textarea {
  display: block;
  width: 100%;
  margin-top: .35rem;
  padding: .65rem .85rem;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: inherit;
  font-size: .95rem;
  transition: border-color .2s;
}
.admin-panel input:focus,
.admin-panel select:focus,
.admin-panel textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: white;
  border: none;
  border-radius: 8px;
  padding: .75rem 1.5rem;
  font-weight: 700;
  font-family: var(--font-head);
  cursor: none;
  transition: transform .2s, box-shadow .2s;
  margin-top: .5rem;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 157, 0.4);
}
.btn-danger {
  background: rgba(255, 60, 80, 0.15);
  color: #ff8090;
  border: 1px solid rgba(255, 80, 100, 0.4);
  border-radius: 6px;
  padding: .35rem .75rem;
  font-size: .8rem;
  cursor: none;
}
.btn-danger:hover { background: rgba(255, 60, 80, 0.3); }
.admin-error {
  color: #ff8090;
  margin-top: .75rem;
  font-size: .85rem;
}
.admin-status {
  margin-top: .75rem;
  font-size: .85rem;
  color: var(--cyan);
}
.admin-tabs {
  display: flex;
  gap: .5rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.tab-btn {
  background: transparent;
  border: none;
  color: var(--text-dim);
  padding: .65rem 1rem;
  font-weight: 700;
  cursor: none;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  font-family: var(--font-head);
}
.tab-btn.active {
  color: var(--pink);
  border-color: var(--pink);
}

.search-results {
  margin-top: .5rem;
  max-height: 200px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.search-result {
  display: flex;
  gap: .65rem;
  padding: .5rem;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: 6px;
  align-items: center;
  cursor: none;
  transition: border-color .2s;
}
.search-result:hover { border-color: var(--pink); }
.search-result img {
  width: 36px; height: 50px; object-fit: cover; border-radius: 3px;
}
.search-result .sr-info { flex: 1; font-size: .8rem; }
.search-result .sr-title { font-weight: 700; color: var(--text); }
.search-result .sr-meta { color: var(--text-dim); font-size: .75rem; }

.manage-row {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: .75rem;
  padding: .75rem;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: .5rem;
  align-items: center;
}
.manage-row img { width: 50px; height: 70px; object-fit: cover; border-radius: 4px; }
.manage-row .info { font-size: .85rem; min-width: 0; }
.manage-row .info-title { font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.manage-row .info-meta { color: var(--text-dim); font-size: .75rem; }
.manage-row input[type="number"],
.manage-row input[type="text"] {
  width: 60px; padding: .25rem; font-size: .8rem; margin: .2rem 0;
}
.manage-row textarea { width: 100%; padding: .25rem; font-size: .8rem; margin: .2rem 0; }
.manage-row .actions { display: flex; flex-direction: column; gap: .35rem; }
.btn-save {
  background: rgba(0, 212, 255, 0.15);
  color: var(--cyan);
  border: 1px solid rgba(0, 212, 255, 0.4);
  border-radius: 6px;
  padding: .35rem .75rem;
  font-size: .8rem;
  cursor: none;
}
.btn-save:hover { background: rgba(0, 212, 255, 0.3); }

/* ========== Responsive tweaks ========== */
@media (max-width: 768px) {
  .section { padding: 4rem 1.25rem; }
  .hero { padding: 1.5rem; }
  .admin-panel { padding: 1.25rem; }
}

@media (min-width: 1024px) {
  .grid-completed { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .petal, .particles span, .anime-silhouette { display: none; }
}
