/* PsyBrazil clean menu + release cards */
.psb-main-nav {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  backdrop-filter: blur(14px);
  background: rgba(247, 249, 252, 0.88);
  border-bottom: 1px solid rgba(12, 24, 44, 0.1);
}

.psb-nav-toggle {
  display: none;
  width: calc(100% - 24px);
  margin: 10px 12px;
  padding: 10px 14px;
  border: 1px solid rgba(17, 35, 62, 0.14);
  border-radius: 12px;
  background: #fff;
  color: #101827;
  font-weight: 800;
}

.psb-nav-panel {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.psb-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(17, 35, 62, 0.12);
  border-radius: 10px;
  background: #fff;
  color: #173050;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.psb-nav-link:hover,
.psb-nav-link.is-active {
  transform: translateY(-1px);
  border-color: rgba(255, 0, 112, 0.35);
  color: #0c1830;
  box-shadow: 0 8px 20px rgba(255, 0, 112, 0.12), 0 0 0 1px rgba(0, 229, 255, 0.12) inset;
}

.psb-nav-icon { font-size: 15px; }
.psb-nav-separator {
  width: 1px;
  height: 26px;
  background: rgba(12, 24, 44, .14);
  margin: 0 6px;
}

.psb-release-grid {
  width: min(1180px, calc(100% - 28px));
  margin: 28px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
}

.psb-release-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.16);
  background:
    radial-gradient(circle at 20% 0%, rgba(0,229,255,.20), transparent 36%),
    radial-gradient(circle at 90% 20%, rgba(255,0,126,.20), transparent 34%),
    linear-gradient(135deg, #07111f, #11172a 52%, #1d0e2d);
  box-shadow: 0 18px 45px rgba(0,0,0,.16);
  color: #fff;
  isolation: isolate;
}

.psb-release-card:before {
  content: '';
  position: absolute;
  inset: -60%;
  background: conic-gradient(from 180deg, transparent, rgba(0,229,255,.16), transparent, rgba(255,230,0,.12), transparent);
  animation: psbCardSpin 14s linear infinite;
  z-index: -1;
}

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

.psb-release-cover {
  position: relative;
  display: block;
  height: 180px;
  overflow: hidden;
  background: #06101b;
}

.psb-release-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform .35s ease, filter .35s ease;
}

.psb-release-card:hover .psb-release-cover img {
  transform: scale(1.07);
  filter: saturate(1.18) contrast(1.06);
}

.psb-release-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 234, 0, .92);
  color: #07111f;
  font-weight: 900;
  letter-spacing: .04em;
  font-size: 12px;
}

.psb-release-body { padding: 16px; }
.psb-release-title { margin: 0 0 8px; font-size: 20px; line-height: 1.15; }
.psb-release-title a { color: #fff; text-decoration: none; }
.psb-release-title a:hover { color: #ffe600; }
.psb-release-desc { margin: 0 0 12px; color: rgba(255,255,255,.78); line-height: 1.45; }

.psb-release-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 14px;
}

.psb-release-meta span {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.84);
  font-size: 12px;
}

.psb-release-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.psb-release-open,
.psb-release-plus {
  border: 0;
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.psb-release-open {
  background: linear-gradient(135deg, #00e5ff, #18ff9a);
  color: #04111a;
}

.psb-release-plus {
  background: rgba(255,255,255,.10);
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
}

@media (max-width: 720px) {
  .psb-nav-toggle { display: block; }
  .psb-nav-panel { display: none; justify-content: stretch; }
  .psb-main-nav.is-open .psb-nav-panel { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .psb-nav-link { justify-content: center; }
  .psb-nav-separator { display: none; }
  .psb-release-grid { width: min(100% - 20px, 520px); grid-template-columns: 1fr; }
}
