.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, .92);
  backdrop-filter: blur(8px);
  border-bottom:
    1px solid rgba(96, 165, 250, .14);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, .18);
  overflow: hidden;
}

.navbar::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -120px;
  transform: translateX(-50%) scale(.85);
  width: 520px;
  height: 180px;
  background:
    radial-gradient(ellipse at center,
      rgba(96, 165, 250, .12),
      transparent 72%);
  pointer-events: none;
  opacity: 0;
  animation: navbarGlow 1.8s ease forwards;
}

.navbar::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) scaleX(.4);
  width: min(900px, 92%);
  height: 1px;
  background:
    linear-gradient(to right,
      transparent,
      rgba(125, 211, 252, .45),
      rgba(96, 165, 250, .85),
      rgba(125, 211, 252, .45),
      transparent);
  opacity: 0;
  filter: blur(.3px);
  animation:
    navbarLineGlow 1.4s ease forwards;
}

@keyframes navbarGlow {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(.75);
    filter: blur(24px);
  }
  
  45% {
    opacity: .9;
    transform: translateX(-50%) scale(1.05);
    filter: blur(14px);
  }
  
  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    filter: blur(10px);
  }
}

@keyframes navbarLineGlow {
  0% {
    opacity: 0;
    transform: translateX(-50%) scaleX(.2);
    filter: blur(6px);
  }
  
  55% {
    opacity: 1;
    transform: translateX(-50%) scaleX(1.04);
    filter: blur(2px);
  }
  
  100% {
    opacity: .9;
    transform: translateX(-50%) scaleX(1);
    filter: blur(.3px);
  }
}

.nav-container {
  width: min(1180px, 92%);
  margin: auto;
}

nav {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  
}

.logo img {
  height: 36px;
  width: auto;
  object-fit: cover;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  color: #94a3b8;
  text-decoration: none;
  transition: .25s;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  height: 2px;
  width: 0;
  background: var(--primary);
  transition: .25s;
  border-radius: 999px;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  z-index: 2000;
  margin-right: 16px;
}

.menu span {
  position: absolute;
  left: 11px;
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 999px;
  transition: .3s ease;
  transform-origin: center;
}

.menu span:nth-child(1) {
  top: 14px;
}

.menu span:nth-child(2) {
  top: 22px;
}

.menu span:nth-child(3) {
  top: 30px;
}

.menu.active span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

.menu.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.menu.active span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -360px;
  width: 320px;
  max-width: 88vw;
  height: 100vh;
  padding:
    max(26px, env(safe-area-inset-top)) 28px 28px;
  background:
    linear-gradient(180deg,
      #0f172a 0%,
      #111827 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    right .35s ease,
    opacity .25s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-drawer.active {
  right: 0;
}

.drawer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 34px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.drawer-close {
  border: none;
  background: transparent;
  color: #e5e7eb;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 6px;
  transition: .25s ease;
}

.drawer-close:hover {
  color: #93c5fd;
  transform: rotate(90deg);
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 60px;
}

.drawer-nav a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  font-weight: 500;
  font-size: .96rem;
  color: #e5e7eb;
  text-decoration: none;
  transition:
    background .25s ease,
    color .25s ease,
    transform .25s ease,
    border-color .25s ease;
  border: 1px solid transparent;
}

.drawer-nav a:hover {
  background:
    rgba(96, 165, 250, 0.10);
  color: #93c5fd;
  border-color:
    rgba(96, 165, 250, 0.18);
  transform: translateX(4px);
}

.drawer-nav a:active {
  transform: scale(.98);
  opacity: .8;
}

.drawer-footer {
  margin-top: auto;
  padding-top: 28px;
  border-top:
    1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.drawer-footer a {
  font-size: 14px;
  color: #94a3b8;
  text-decoration: none;
  transition: .2s ease;
}

.drawer-footer a:hover {
  color: #93c5fd;
}

@media(max-width:420px) {
  .mobile-drawer {
    width: 100%;
    max-width: 100%;
    right: -100%;
    border-radius: 0;
  }
}

@media(max-width:760px) {
  
  .nav-links {
    display: none;
  }
  
  .menu {
    display: flex;
  }
  
  nav {
    height: 76px;
  }
  
  .logo {
    font-size: 26px;
  }
}

@media(max-width:420px) {
  .mobile-drawer {
    width: 100%;
    max-width: 100%;
    right: -100%;
    border-radius: 0;
  }
}


.site-footer {
  position: relative;
  overflow: hidden;
  padding: 48px 18px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer .container {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: flex-start;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

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

.footer-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.like-btn,
.footer-action-btn {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #cbd5e1;
  text-decoration: none;
  transition:
    transform .25s ease,
    background .25s ease,
    border-color .25s ease,
    color .25s ease,
    box-shadow .25s ease;
  cursor: pointer;
  overflow: hidden;
  background: transparent;
  border: none;
  cursor: pointer;
}

.footer-action-btn svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.footer-action-btn.yt {
  color: #fb7185;
}

.footer-action-btn.share {
  color: #FBF4C6;
}

.footer-action-btn:hover {
  color: #7dd3fc;
}

.footer-action-btn:active {
  transform: scale(.96);
}

.text-name {
  font-size: 12px;
  line-height: 1;
  color: #cbd5e1;
}

.like-count {
  font-size: 12px;
  line-height: 1;
}

.heart-icon {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: all 0.3s ease;
}

.like-btn.liked {
  color: #fb7185;
}

.like-btn.liked .heart-icon {
  fill: currentColor;
  stroke: currentColor;
}

.like-btn:hover {
  color: #fda4af;
  transform: translateY(-1px);
}

.like-btn.animate .heart-icon {
  animation: pop 0.35s ease;
}

@keyframes pop {
  0% {
    transform: scale(1);
  }
  
  40% {
    transform: scale(1.4);
  }
  
  100% {
    transform: scale(1);
  }
}

.footer-col p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #94a3b8;
  margin: 8px 0;
}

.footer-col h4 {
  position: relative;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e2e8f0;
  padding-bottom: 10px;
  margin-bottom: 12px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 68px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right,
      #60a5fa,
      transparent);
}

.footer-col a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 6px 0;
  margin-bottom: 0;
  font-size: 0.86rem;
  line-height: 1.35;
  color: #94a3b8;
  text-decoration: none;
  border-radius: 0;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-col a:not(.footer-action-btn):hover {
  color: #7dd3fc;
  transform: translateX(3px);
}

.fan-disclaimer {
  margin-top: 18px;
  padding: 15px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg,
      rgba(96, 165, 250, 0.12),
      rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1 !important;
  font-size: 0.8rem !important;
  line-height: 1.7;
  
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-mini-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-mini-links a {
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: none;
  border-radius: 999px;
  transition: 0.25s ease;
}

.footer-mini-links a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #7dd3fc;
  transform: translateY(-2px);
}

.copyright {
  max-width: 760px;
  text-align: center;
  font-size: 0.76rem;
  line-height: 1.65;
  color: #64748b;
}

@media (min-width: 681px) {
  
  .site-footer {
    padding: 80px 22px 36px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 34px;
  }
  
  .footer-col p {
    font-size: 0.92rem;
    line-height: 1.75;
    margin: 16px 14px;
  }
  
  .footer-col h4 {
    font-size: 0.92rem;
    margin-bottom: 14px;
  }
  
  .footer-col a {
    padding: 7px 10px;
    margin-bottom: 2px;
    font-size: 0.88rem;
    border-radius: 10px;
    transition:
      background 0.25s ease,
      color 0.25s ease,
      transform 0.25s ease;
  }
  
  .footer-col a:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(4px);
  }
  
  .fan-disclaimer {
    padding: 16px 18px;
    font-size: 0.84rem !important;
  }
  
  .footer-bottom {
    margin-top: 52px;
  }
  
  .footer-mini-links {
    gap: 12px;
  }
  
  .footer-mini-links a {
    padding: 8px 14px;
    font-size: 0.84rem;
  }
  
  .copyright {
    font-size: 0.82rem;
    line-height: 1.7;
  }
}

@media (min-width: 921px) {
  
  .site-footer {
    padding: 90px 20px 38px;
  }
  
  .footer-grid {
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 52px;
  }
  
  .footer-bottom {
    margin-top: 62px;
    padding-top: 28px;
  }
}

.breadcrumb {
  max-width: 768px;
  padding: 0 0 32px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  font-size: 0.8rem;
  color: var(--muted);
  opacity: 0;
}

.breadcrumb.ready {
  opacity: 1;
}

.breadcrumb::-webkit-scrollbar {
  display: none;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: 0.2s;
}

.breadcrumb a:hover {
  color: #93c5fd;
}

.breadcrumb span {}

.breadcrumb .current {
  color: var(--text);
  font-weight: 500;
}

.breadcrumb>* {
  opacity: 0;
  transform: translateY(6px);
}

.breadcrumb>*.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease;
}

.breadcrumb>*.show span {
  opacity: 0.5;
}

.breadcrumb .current.glow {
  animation: breadcrumbGlow 0.6s ease;
}

@keyframes breadcrumbGlow {
  0% {
    color: #93c5fd;
    text-shadow: 0 0 0 transparent;
  }
  
  50% {
    color: #60a5fa;
    text-shadow: 0 0 8px rgba(96, 165, 250, 0.6);
  }
  
  100% {
    color: var(--text);
    text-shadow: none;
  }
}

.hero-art {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 420px;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: .42;
  filter:
    blur(.6px) saturate(.92) brightness(.92) transform:scale(1.04);
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(3, 7, 18, 0) 0%,
      rgba(3, 7, 18, .04) 18%,
      rgba(3, 7, 18, .12) 36%,
      rgba(3, 7, 18, .28) 52%,
      rgba(3, 7, 18, .52) 68%,
      rgba(3, 7, 18, .78) 82%,
      var(--bg) 100%);
}

.ad-container {
  width: 100%;
  max-width: 540px;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin: 0 auto;
}