:root {
  --bg: #0b0b12;
  --bg-card: #14141f;
  --bg-elevated: #1c1c2a;
  --accent: #e94560;
  --accent-hover: #ff5a75;
  --text: #f0f0f5;
  --text-muted: #9a9ab0;
  --border: rgba(255, 255, 255, 0.06);
  --radius: 14px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img, a {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", "Noto Sans JP", system-ui, sans-serif;
  background-color: var(--bg);
  background-image: 
    radial-gradient(ellipse 90% 60% at 85% -10%, rgba(233, 69, 96, 0.12), transparent 60%),
    radial-gradient(ellipse 70% 50% at 10% 40%, rgba(110, 50, 200, 0.09), transparent 55%),
    radial-gradient(ellipse 80% 50% at 90% 80%, rgba(233, 69, 96, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 40% at 20% 95%, rgba(60, 100, 240, 0.07), transparent 50%),
    linear-gradient(180deg, rgba(16, 16, 26, 0.6) 0%, rgba(11, 11, 18, 0.95) 50%, #08080d 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 11, 18, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  width: 130px;
  height: 48px;
  object-fit: contain;
  border-radius: 10px;
}

.logo-tx {
  color: var(--accent);
}

.logo-anime {
  color: var(--text);
  margin-left: 2px;
}

.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  margin-left: 12px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  margin-left: auto;
}

.mobile-search-btn {
  display: none;
}

.mobile-search-close {
  display: none;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  width: 220px;
  transition: border-color 0.2s, width 0.3s;
}

.search-box:focus-within {
  border-color: var(--accent);
  width: 280px;
}

.search-box svg {
  color: var(--text-muted);
  flex-shrink: 0;
}

.search-box input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 0.9rem;
  width: 100%;
  font-family: inherit;
}

/* Live Search Dropdown */
.search-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 360px;
  max-height: 420px;
  overflow-y: auto;
  background: rgba(20, 20, 31, 0.98);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 20px rgba(233, 69, 96, 0.15);
  z-index: 1000;
  display: none;
}

.search-dropdown.active {
  display: block;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none;
  color: var(--text);
  transition: background 0.15s ease;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: rgba(233, 69, 96, 0.12);
}

.search-result-poster {
  width: 44px;
  height: 62px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.search-result-info {
  flex: 1;
  min-width: 0;
}

.search-result-title {
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text);
}

.search-result-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.search-result-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.75rem;
  margin-top: 4px;
}

.search-empty {
  padding: 24px 16px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.btn-login {
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.btn-login:hover {
  background: var(--accent);
  color: white;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  height: 560px;
  min-height: 560px;
  max-height: 560px;
  margin-top: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 24px 60px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  gap: 48px;
  overflow: hidden;
  box-sizing: border-box;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(40px) brightness(0.32);
  transform: scale(1.15);
  transition: background-image 0.6s ease;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(233, 69, 96, 0.18), transparent 60%),
              radial-gradient(ellipse 50% 40% at 20% 80%, rgba(100, 60, 180, 0.12), transparent 50%),
              linear-gradient(to bottom, transparent 65%, var(--bg) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  flex: 1;
  z-index: 2;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  display: inline-block;
  align-self: flex-start;
  background: rgba(233, 69, 96, 0.15);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  border: 1px solid rgba(233, 69, 96, 0.3);
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  min-height: 72px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero h1 span {
  color: var(--accent);
}

.hero-desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 16px;
  max-width: 520px;
  line-height: 1.6;
  height: 76px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  align-items: center;
  min-height: 28px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-poster {
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-poster img {
  width: 280px;
  height: 400px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(233, 69, 96, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: block;
}

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 24px;
  display: flex;
  gap: 8px;
  z-index: 5;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.hero-dot.active {
  width: 28px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(233, 69, 96, 0.6);
}

@media (max-width: 900px) {
  .nav-inner {
    padding: 0 16px;
    gap: 12px;
    justify-content: space-between;
  }
  .logo {
    flex-shrink: 0;
  }
  .logo-img {
    width: 110px;
    height: 40px;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(14, 14, 22, 0.98);
    backdrop-filter: blur(24px);
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    z-index: 99;
  }
  .nav-links.open {
    display: flex !important;
    animation: menuSlideDown 0.22s ease forwards;
  }
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    flex-shrink: 0;
  }
  .mobile-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
  }
  .mobile-search-btn:hover,
  .mobile-search-btn.active {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(233, 69, 96, 0.12);
  }
  .search-box {
    display: none;
  }
  .search-box.mobile-open {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 68px;
    background: rgba(11, 11, 18, 0.98);
    backdrop-filter: blur(20px);
    z-index: 120;
    padding: 0 16px;
    gap: 12px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--border);
    animation: searchSlideDown 0.2s ease forwards;
    width: 100%;
  }
  .mobile-search-close {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .mobile-search-close:hover {
    color: var(--accent);
  }
  .search-box.mobile-open .mobile-search-close {
    display: inline-flex;
  }
  .search-dropdown {
    position: fixed;
    top: 68px;
    left: 12px;
    right: 12px;
    width: calc(100vw - 24px);
    max-width: none;
    z-index: 1001;
  }
  .mobile-menu-btn {
    display: flex;
    flex-shrink: 0;
  }
  .hero {
    height: auto;
    min-height: auto;
    max-height: none;
    flex-direction: column;
    padding: 30px 16px 64px;
    gap: 28px;
    text-align: center;
    align-items: center;
  }
  .hero-content {
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .hero-badge {
    align-self: center;
  }
  .hero-meta {
    justify-content: center;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-poster img {
    width: 220px;
    height: 310px;
  }
  .hero-desc {
    height: auto;
    max-width: 100%;
  }
  .hero-dots {
    position: static;
    transform: none;
    margin-top: 28px;
    margin-bottom: 4px;
    display: flex;
    justify-content: center;
    width: 100%;
    z-index: 5;
  }
  .section {
    padding: 32px 16px 12px;
  }
  .section-header {
    flex-wrap: wrap;
    gap: 10px;
  }
  .section-header h2 {
    font-size: 1.3rem;
  }
  .continue-card {
    flex: 0 0 250px;
    width: 250px;
  }
}

/* Common UI Elements & Buttons */
.tag {
  background: var(--bg-elevated);
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.rating {
  color: #f5c518;
  font-weight: 600;
  font-size: 0.95rem;
}

.eps {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(233, 69, 96, 0.35);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 69, 96, 0.55);
  color: #ffffff;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--bg-elevated);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: var(--accent);
  background: var(--bg-card);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.88rem;
}

.btn-secondary.disabled,
.btn-primary.disabled,
button:disabled {
  opacity: 0.35;
  pointer-events: none;
  cursor: not-allowed;
}

/* Watch Page Buttons & Actions */
.watch-sources {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 12px;
}

.source-btn {
  padding: 8px 20px;
  font-size: 0.88rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.source-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(233, 69, 96, 0.45);
}

.watch-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

/* Continue Watching Section */
.continue-section {
  display: none;
}

.continue-section.has-items {
  display: block;
}

.continue-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.continue-edit-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  transition: all 0.2s ease;
}

.continue-edit-btn:hover,
.continue-edit-btn.active {
  border-color: var(--accent);
  color: var(--text);
  background: rgba(233, 69, 96, 0.12);
}

.continue-clear-btn {
  background: transparent;
  border: 1px solid rgba(233, 69, 96, 0.4);
  color: var(--accent);
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  display: none;
}

.continue-clear-btn.visible {
  display: inline-block;
}

.section-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.slider-nav-btns {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  outline: none;
}

.slider-nav-btn:hover {
  border-color: var(--accent);
  background: rgba(233, 69, 96, 0.15);
  color: var(--accent);
  transform: scale(1.06);
}

.slider-nav-btn:active {
  transform: scale(0.95);
}

.continue-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 8px 4px 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}

.continue-grid::-webkit-scrollbar {
  display: none;
}

.continue-grid.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.continue-grid.is-dragging a {
  pointer-events: none;
}

.continue-card {
  flex: 0 0 280px;
  width: 280px;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.continue-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  width: 100%;
}

.continue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5), 0 0 16px rgba(233, 69, 96, 0.15);
  border-color: rgba(233, 69, 96, 0.35);
}

.continue-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.continue-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.continue-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.continue-card:hover .continue-play-overlay {
  opacity: 1;
}

.continue-play-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0 16px rgba(233, 69, 96, 0.6);
  transform: scale(0.9);
  transition: transform 0.2s ease;
}

.continue-card:hover .continue-play-icon {
  transform: scale(1);
}

.continue-progress-track {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.continue-progress-bar {
  height: 100%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(233, 69, 96, 0.9);
}

.continue-info {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.continue-anime-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.continue-ep-title {
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.continue-delete-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(233, 69, 96, 0.95);
  color: white;
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.15s ease, background 0.15s ease;
}

.continue-delete-btn:hover {
  transform: scale(1.1);
  background: #ff1e42;
}

.edit-mode .continue-delete-btn {
  display: flex;
}

/* Sections */
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px 16px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.section-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

.see-all {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: opacity 0.2s;
}

.see-all:hover {
  opacity: 0.8;
}

/* Anime Grid */
.anime-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  transition: opacity 0.25s ease;
}

.anime-grid.fade-in {
  animation: gridFadeIn 0.35s ease forwards;
}

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

.anime-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.anime-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(233, 69, 96, 0.18);
  border-color: rgba(233, 69, 96, 0.35);
}

.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.card-poster {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
}

.card-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-rating-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(11, 11, 18, 0.85);
  backdrop-filter: blur(8px);
  color: #ffc107;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid rgba(255, 193, 7, 0.3);
  display: flex;
  align-items: center;
  gap: 3px;
  z-index: 2;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
}

.anime-card:hover .card-overlay {
  opacity: 1;
}

.play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: transform 0.2s;
}

.anime-card:hover .play-btn {
  transform: scale(1);
}

.card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}

.card-info {
  padding: 12px 14px 16px;
}

.card-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.card-rating {
  color: #f5c518;
  font-weight: 600;
}

/* Categories */
.category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}

.cat-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.cat-btn:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

.cat-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

/* Footer */
.footer {
  margin-top: 64px;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px 32px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand .logo-img {
  width: 130px;
  height: 48px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 12px;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-links h4 {
  font-size: 0.95rem;
  margin-bottom: 14px;
  color: var(--text);
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 20px 24px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

@media (max-width: 980px) {
  .hero {
    flex-direction: column;
    align-items: stretch;
    padding: 40px 18px 24px;
    gap: 32px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-poster {
    margin: 0 auto;
  }

  .hero-poster img {
    width: min(100%, 340px);
    height: auto;
  }
}

/* ========== DETAIL PAGE ========== */
.detail-page {
  margin-top: 68px;
  min-height: calc(100vh - 68px);
}

.detail-hero {
  position: relative;
  padding: 48px 24px 40px;
  overflow: hidden;
}

.detail-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  filter: blur(40px) brightness(0.35);
  transform: scale(1.1);
}

.detail-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--bg) 100%);
}

.detail-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.detail-poster img {
  width: 240px;
  height: 340px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.detail-info {
  flex: 1;
  padding-top: 8px;
}

.detail-jp {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 6px;
  font-family: "Noto Sans JP", sans-serif;
}

.detail-info h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.detail-genres {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.detail-studio {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.detail-synopsis {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 24px;
}

.detail-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.detail-episodes {
  padding-top: 8px;
}

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

/* Episodes + Trailer layout */
.detail-episodes-trailer .detail-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: start;
}

.detail-trailer {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
}

.trailer-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
  background: #000;
}

.trailer-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}


.ep-item {
  position: relative;
  height: 150px;
  display: block;
  background-color: #0b0b12;
  background-size: cover;
  background-position: center center;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.18s ease, border-color 0.18s;
}

.ep-item:hover {
  /* remove transform/scale to avoid image zoom */
  box-shadow: 0 8px 22px rgba(0,0,0,0.55);
  border-color: rgba(233,69,96,0.18);
}

.ep-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0.65) 45%, rgba(0,0,0,0.98) 100%);
}

.ep-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  min-width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(20,20,30,0.8);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.04);
  z-index: 2;
}

.ep-card-content {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.ep-title {
  color: #fff;
  font-weight: 700;
  text-shadow: 0 6px 18px rgba(0,0,0,0.6);
  font-size: 1.05rem;
  line-height: 1.2;
  max-width: 100%;
}

.ep-dur {
  color: var(--text-muted);
  font-size: 0.85rem;
  background: rgba(0,0,0,0.35);
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.03);
}

.ep-item:hover {
  border-color: var(--accent);
}

/* Ensure no child or background scaling on hover */
.ep-item, .ep-item * {
  transform: none !important;
}

.ep-num {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
  flex-shrink: 0;
}

.ep-title {
  flex: 1;
  font-weight: 500;
  font-size: 0.95rem;
}

.ep-dur {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ========== WATCH PAGE ========== */
.watch-body {
  background: #05050a;
}

.navbar-watch .nav-inner {
  gap: 20px;
}

.watch-title-nav {
  flex: 1;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.watch-page {
  margin-top: 68px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 24px;
}

.player-party-container {
  margin-bottom: 28px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.player-wrap {
  width: 100%;
}

.player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

/* Fullscreen Responsive & Mobile Fit */
:fullscreen .player-wrap,
:-webkit-full-screen .player-wrap,
.player-party-container.is-fullscreen .player-wrap {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

:fullscreen .player,
:-webkit-full-screen .player,
.player-party-container.is-fullscreen .player,
.player.is-fullscreen {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  aspect-ratio: unset !important;
  border-radius: 0 !important;
}

.player-party-container:fullscreen,
.player-party-container:-webkit-full-screen,
.player-party-container.is-fullscreen {
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  background: #000 !important;
}

.player-party-container.party-active .player {
  border-radius: 0;
}

.player-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d0d18 0%, #1a1020 50%, #0d0d18 100%);
  gap: 16px;
  transition: opacity 0.3s;
}

.player-placeholder.playing {
  opacity: 0.3;
  pointer-events: none;
}

.player-play-big {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.player-play-big:hover {
  transform: scale(1.08);
  background: var(--accent-hover);
}

.player-note {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.player-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.player-placeholder.has-video {
  background: #000;
}

.player-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  padding: 20px;
  text-align: center;
}

.btn-open-external {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  background: var(--accent);
}

.btn-copy-url {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.player-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  padding: 24px 16px 12px;
  opacity: 0;
  transition: opacity 0.25s;
}

.player:hover .player-controls {
  opacity: 1;
}

.progress-bar {
  height: 5px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  cursor: pointer;
  margin-bottom: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 3px;
  transition: width 0.1s linear;
}

.controls-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ctrl-btn {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ctrl-btn:hover {
  color: var(--accent);
}

.time-display {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-variant-numeric: tabular-nums;
}

.ctrl-spacer {
  flex: 1;
}

.watch-info {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}

.watch-main h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.watch-ep {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.watch-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.watch-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

@media (max-width: 980px) {
  .detail-episodes-trailer .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-trailer {
    order: 2;
  }
}

.source-btn {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.source-btn:hover {
  background: rgba(233, 69, 96, 0.08);
}

.source-btn.active {
  background: var(--accent);
  border-color: transparent;
  color: #fff;
}

.watch-actions {
  display: flex;
  gap: 12px;
}

.episode-list-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  max-height: 480px;
  overflow-y: auto;
}

.episode-list-wrap h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.episode-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* When episode cards are rendered in the watch page, force single-column grid */
.episode-list .ep-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.ep-side.active {
  box-shadow: 0 6px 18px rgba(233,69,96,0.08);
  border: 1px solid rgba(233,69,96,0.28);
}

/* Sidebar-specific smaller card adjustments */
.episode-list .ep-grid .ep-item {
  height: 96px;
  border-radius: 10px;
  background-size: cover;
  background-position: center center;
}

.episode-list .ep-grid .ep-badge {
  left: 10px;
  top: 10px;
  min-width: 30px;
  height: 30px;
  border-radius: 6px;
  font-size: 0.85rem;
}

.episode-list .ep-grid .ep-card-content {
  left: 10px;
  right: 10px;
  bottom: 8px;
}

.episode-list .ep-grid .ep-title {
  font-size: 0.95rem;
  font-weight: 700;
  text-shadow: 0 4px 12px rgba(0,0,0,0.55);
}

.episode-list .ep-grid .ep-dur {
  font-size: 0.78rem;
  padding: 4px 8px;
}

/* reduce gap inside episode-list-wrap to fit more cards */
.episode-list-wrap {
  padding: 12px;
}

.ep-side-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  transition: background 0.15s;
}

.ep-side-item:hover {
  background: var(--bg-elevated);
}

.ep-side-item.active {
  background: rgba(233, 69, 96, 0.15);
  border: 1px solid rgba(233, 69, 96, 0.3);
}

.ep-side-num {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.ep-side-item.active .ep-side-num {
  background: var(--accent);
  color: white;
}

.ep-side-title {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .search-box {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
    margin-left: auto;
  }

  .hero {
    flex-direction: column-reverse;
    text-align: center;
    padding-top: 40px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-meta,
  .hero-btns {
    justify-content: center;
  }

  .hero-poster img {
    width: 200px;
    height: 290px;
  }

  .anime-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 14px;
  }

  .detail-hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .detail-poster img {
    width: 180px;
    height: 260px;
  }

  .detail-synopsis {
    margin-left: auto;
    margin-right: auto;
  }

  .detail-btns,
  .detail-meta,
  .detail-genres {
    justify-content: center;
  }

  .watch-info {
    grid-template-columns: 1fr;
  }

  .episode-list-wrap {
    max-height: 320px;
  }
}

@media (max-width: 500px) {
  .hero h1 {
    font-size: 2rem;
  }

  .footer-links {
    gap: 32px;
  }

  .watch-page {
    padding: 12px;
  }
}

.episode-synopsis-box {
  margin: 16px 0;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
}

.ep-synopsis-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: rgba(233, 69, 96, 0.08);
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.spoiler-tag {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--accent);
  background: rgba(233, 69, 96, 0.15);
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

.ep-synopsis-wrapper {
  position: relative;
  padding: 14px 16px;
  transition: filter 0.4s ease;
}

.ep-synopsis-wrapper.blurred .ep-synopsis-text {
  filter: blur(6px);
  user-select: none;
  pointer-events: none;
}

.ep-synopsis-wrapper.blurred .spoiler-overlay {
  display: flex;
}

.spoiler-overlay {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
}

.spoiler-btn {
  background: rgba(233, 69, 96, 0.85);
  color: #fff;
  padding: 8px 22px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
  transition: background 0.2s ease, transform 0.15s ease;
}

.spoiler-btn:hover {
  background: var(--accent-hover);
  transform: scale(1.04);
}

.ep-synopsis-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
  transition: filter 0.4s ease;
}

.seasons-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0;
  flex-wrap: wrap;
}

.seasons-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-right: 4px;
}

.season-tab {
  padding: 6px 14px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.season-tab:hover {
  border-color: var(--accent);
  color: var(--text);
  transform: translateY(-1px);
}

.season-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
}

/* Skeleton Loading Screen */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.skeleton-shimmer {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.03) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.6s ease-in-out infinite;
  border-radius: 8px;
}

.detail-skeleton {
  max-width: 1280px;
  margin: 0 auto;
  padding: 88px 24px 60px;
  min-height: 80vh;
}

.skeleton-hero {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px;
  margin-bottom: 40px;
}

.skeleton-hero-content {
  display: flex;
  gap: 36px;
  align-items: flex-start;
}

.skeleton-poster {
  width: 240px;
  height: 350px;
  border-radius: 14px;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.skeleton-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.skeleton-sub {
  width: 160px;
  height: 16px;
}

.skeleton-title {
  width: 55%;
  height: 38px;
  border-radius: 10px;
}

.skeleton-meta-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.skeleton-badge {
  width: 50px;
  height: 24px;
}

.skeleton-tag {
  width: 75px;
  height: 24px;
  border-radius: 6px;
}

.skeleton-line {
  height: 14px;
  border-radius: 4px;
}

.skeleton-btn {
  width: 180px;
  height: 46px;
  border-radius: 10px;
  margin-top: 10px;
  background: linear-gradient(
    90deg,
    rgba(233, 69, 96, 0.2) 0%,
    rgba(233, 69, 96, 0.4) 50%,
    rgba(233, 69, 96, 0.2) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.6s ease-in-out infinite;
}

.skeleton-episodes-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.skeleton-section-title {
  width: 180px;
  height: 24px;
}

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

.skeleton-card {
  height: 140px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

@media (max-width: 768px) {
  .detail-skeleton {
    padding: 76px 16px 40px;
  }
  .skeleton-hero {
    padding: 20px;
  }
  .skeleton-hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .skeleton-poster {
    width: 180px;
    height: 260px;
  }
  .skeleton-title {
    width: 80%;
  }
  .skeleton-meta-row {
    justify-content: center;
  }
}

/* Generic Fallback Loader */
.detail-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.spinner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.08);
  border-top-color: var(--accent);
  animation: spin 0.8s linear infinite;
  box-shadow: 0 0 20px rgba(233, 69, 96, 0.25);
}

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

/* Card Skeletons */
.anime-card-skeleton {
  pointer-events: none;
}

.anime-card-skeleton .card-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--bg-elevated);
}

.anime-card-skeleton .card-info {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Watch Page Skeleton & Loader */
.skeleton-player-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: radial-gradient(circle at center, #141424 0%, #0b0b12 100%);
  width: 100%;
  height: 100%;
}

.player-spinner-ring {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid rgba(233, 69, 96, 0.15);
  border-top-color: var(--accent);
  animation: spin 0.8s linear infinite;
  box-shadow: 0 0 24px rgba(233, 69, 96, 0.35);
}