.new-singles-page .page {
  max-width: 1180px;
}

.new-singles-page .singles-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 42px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 10%, rgba(242, 107, 58, 0.22), transparent 36%),
    radial-gradient(circle at 8% 90%, rgba(11, 122, 126, 0.22), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(237, 246, 248, 0.76));
  box-shadow: var(--shadow);
  animation: float-in 0.7s ease both;
}

.new-singles-page .singles-hero::after {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px dashed rgba(18, 33, 48, 0.14);
  border-radius: 21px;
  pointer-events: none;
}

.new-singles-page .singles-hero-copy,
.new-singles-page .singles-hero-meta {
  position: relative;
  z-index: 1;
}

.new-singles-page .singles-hero h1 {
  max-width: 720px;
  margin: 8px 0 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.6rem, 8vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
  color: var(--ink);
}

.new-singles-page .singles-lead {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.75;
}

.new-singles-page .singles-hero-meta {
  min-width: 210px;
  padding: 16px 18px;
  border: 1px solid rgba(11, 122, 126, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.new-singles-page .singles-hero-meta strong,
.new-singles-page .singles-hero-meta span {
  display: block;
}

.new-singles-page .singles-hero-meta strong {
  margin-bottom: 2px;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.new-singles-page .singles-section {
  min-height: 60vh;
}

.new-singles-page .singles-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.new-singles-page .singles-section-heading h2 {
  margin: 6px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.new-singles-page .singles-page-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.new-singles-page .singles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.new-singles-page .single-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--card);
  box-shadow: 0 20px 44px rgba(15, 29, 45, 0.1);
  animation: card-in 0.55s ease both;
}

.new-singles-page .single-card-heading {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 22px 18px;
}

.new-singles-page .single-card-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: auto;
  padding-bottom: 18px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.new-singles-page .single-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(11, 122, 126, 0.12);
  color: var(--accent);
}

.new-singles-page .single-artist,
.new-singles-page .single-title {
  overflow-wrap: anywhere;
}

.new-singles-page .single-artist {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.28rem, 3vw, 1.85rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.new-singles-page .single-title {
  margin: 7px 0 0;
  color: var(--accent-2);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.new-singles-page .single-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 28%, rgba(11, 122, 126, 0.32), transparent 45%),
    linear-gradient(135deg, #101b25, #071014);
}

.new-singles-page .single-video-trigger {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font: inherit;
}

.new-singles-page .single-video-trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(4, 10, 14, 0.56));
  transition: background 0.25s ease;
}

.new-singles-page .single-video-trigger img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.35s ease;
}

.new-singles-page .single-play-icon {
  position: relative;
  z-index: 1;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(7, 16, 20, 0.74);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, background 0.25s ease;
}

.new-singles-page .single-play-icon::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 15px solid currentColor;
}

@media (hover: hover) and (pointer: fine) {
  .new-singles-page .single-video-trigger:hover img {
    transform: scale(1.035);
    filter: saturate(1.08) contrast(1.03);
  }

  .new-singles-page .single-video-trigger:hover .single-play-icon {
    transform: scale(1.08);
    background: rgba(11, 122, 126, 0.92);
  }
}

.new-singles-page .single-video-trigger:focus-visible {
  outline: 3px solid #fff;
  outline-offset: -5px;
}

.new-singles-page .single-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.new-singles-page .single-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 22px 17px;
  color: var(--muted);
  font-size: 0.75rem;
}

.new-singles-page .single-source-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
}

.new-singles-page .single-source-link::after {
  content: "↗";
}

.new-singles-page .single-source-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.new-singles-page .singles-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 38px;
}

.new-singles-page .singles-pagination button,
.new-singles-page .singles-error button {
  min-width: 42px;
  min-height: 42px;
  border: 1px solid rgba(11, 122, 126, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--accent);
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.new-singles-page .singles-pagination button[data-direction] {
  min-width: 108px;
  padding: 0 16px;
}

.new-singles-page .singles-pagination button[aria-current="page"] {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.new-singles-page .singles-pagination button:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.new-singles-page .singles-pagination button:not(:disabled):hover,
.new-singles-page .singles-error button:hover {
  transform: translateY(-2px);
  background: var(--accent);
  color: #fff;
}

.new-singles-page .singles-pagination button:focus-visible,
.new-singles-page .singles-error button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.new-singles-page .singles-pagination-ellipsis {
  padding: 0 3px;
  color: var(--muted);
}

.new-singles-page .singles-error {
  margin: 34px 0;
  padding: 28px;
  text-align: center;
  border: 1px solid rgba(242, 107, 58, 0.24);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
}

.new-singles-page .singles-error strong,
.new-singles-page .singles-error span {
  display: block;
}

.new-singles-page .singles-error span {
  margin: 6px 0 18px;
  color: var(--muted);
}

.new-singles-page .singles-error button {
  padding: 0 18px;
}

.new-singles-page .singles-source-note {
  display: flex;
  gap: 14px;
  margin-top: 42px;
  padding: 20px 22px;
  border-left: 3px solid var(--accent-2);
  border-radius: 0 16px 16px 0;
  background: rgba(255, 255, 255, 0.5);
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.new-singles-page .singles-source-note p {
  margin: 0;
}

.new-singles-page .singles-source-note a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.new-singles-page .singles-source-mark {
  color: var(--accent-2);
  font-size: 1.15rem;
}

.new-singles-page .single-card--skeleton {
  min-height: 430px;
  background:
    linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, 0.72) 50%, transparent 70%) 0 0 / 220% 100%,
    linear-gradient(180deg, rgba(11, 122, 126, 0.08) 0 36%, rgba(18, 33, 48, 0.08) 36% 82%, rgba(255, 255, 255, 0.55) 82%);
  animation: singles-shimmer 1.4s linear infinite;
}

.new-singles-page .singles-noscript {
  max-width: 700px;
  margin: 20px auto;
  padding: 18px;
  color: #8a2f18;
  text-align: center;
}

.new-singles-page[data-theme="dark"] .singles-hero {
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 139, 92, 0.22), transparent 36%),
    radial-gradient(circle at 8% 90%, rgba(79, 209, 217, 0.22), transparent 38%),
    linear-gradient(135deg, rgba(16, 22, 32, 0.96), rgba(12, 19, 27, 0.82));
}

.new-singles-page[data-theme="dark"] .singles-hero::after {
  border-color: rgba(231, 237, 245, 0.14);
}

.new-singles-page[data-theme="dark"] .singles-hero-meta,
.new-singles-page[data-theme="dark"] .singles-pagination button,
.new-singles-page[data-theme="dark"] .singles-error,
.new-singles-page[data-theme="dark"] .singles-source-note {
  background: rgba(12, 18, 26, 0.7);
}

.new-singles-page[data-theme="dark"] .single-card {
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
}

.new-singles-page[data-theme="dark"] .single-card--skeleton {
  background:
    linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, 0.08) 50%, transparent 70%) 0 0 / 220% 100%,
    linear-gradient(180deg, rgba(79, 209, 217, 0.08) 0 36%, rgba(231, 237, 245, 0.08) 36% 82%, rgba(16, 22, 32, 0.75) 82%);
}

@keyframes singles-shimmer {
  to { background-position: -220% 0, 0 0; }
}

@media (max-width: 800px) {
  .new-singles-page .singles-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .new-singles-page .singles-hero-meta {
    min-width: 0;
    width: min(100%, 320px);
  }

  .new-singles-page .singles-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .new-singles-page .singles-hero {
    margin-bottom: 34px;
    padding: 26px 22px;
    border-radius: 24px;
  }

  .new-singles-page .singles-hero::after {
    inset: 9px;
    border-radius: 17px;
  }

  .new-singles-page .singles-section-heading {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

  .new-singles-page .single-card-heading {
    min-height: 122px;
    padding: 19px 18px 16px;
  }

  .new-singles-page .single-card-footer {
    padding: 14px 18px 16px;
  }

  .new-singles-page .singles-pagination button[data-direction] {
    min-width: 42px;
    width: 42px;
    padding: 0;
    overflow: hidden;
    color: transparent;
  }

  .new-singles-page .singles-pagination button[data-direction]::after {
    display: block;
    color: var(--accent);
    font-size: 1.2rem;
  }

  .new-singles-page .singles-pagination button[data-direction="prev"]::after {
    content: "←";
  }

  .new-singles-page .singles-pagination button[data-direction="next"]::after {
    content: "→";
  }

  .new-singles-page .singles-pagination button[data-direction][aria-current="page"]::after,
  .new-singles-page .singles-pagination button[data-direction]:hover::after {
    color: #fff;
  }
}

@media (prefers-reduced-motion: reduce) {
  .new-singles-page .singles-hero,
  .new-singles-page .single-card,
  .new-singles-page .single-card--skeleton {
    animation: none;
  }

  .new-singles-page .single-video-trigger img,
  .new-singles-page .single-play-icon {
    transition: none;
  }
}
