:root {
  --rjc-album-blue: #02236b;
  --rjc-album-blue-deep: #01184c;
  --rjc-album-soft: #f3f6fc;
  --rjc-album-gold: #b99a5e;
  --rjc-album-text: #172033;
  --rjc-album-muted: #667085;
  --rjc-album-border: rgba(2, 35, 107, .14);
}

.rjc-discotheque-page,
.rjc-single-album-shell {
  color: var(--rjc-album-text);
  font-family: inherit;
}

.rjc-discotheque-page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 54px 24px 80px;
}

.rjc-discotheque-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 26px;
  padding: 48px;
  border-radius: 10px;
  color: #fff;
  background: var(--rjc-album-blue);
  box-shadow: 0 24px 60px rgba(2, 35, 107, .18);
}

.rjc-discotheque-hero::after {
  position: absolute;
  top: -100px;
  right: -90px;
  width: 290px;
  height: 290px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(255, 255, 255, .025);
  content: "";
}

.rjc-discotheque-hero .rjc-kicker,
.rjc-single-album .rjc-kicker {
  display: block;
  color: var(--rjc-album-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.rjc-discotheque-hero h1 {
  max-width: 800px;
  margin: 5px 0 8px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.rjc-discotheque-hero p {
  max-width: 780px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.6;
}

.rjc-discotheque-filters {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr) auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 20px;
  padding: 18px;
  border-radius: 8px;
  background: var(--rjc-album-soft);
}

.rjc-discotheque-filters label span {
  display: block;
  margin: 0 0 6px;
  color: #475569;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rjc-discotheque-filters input,
.rjc-discotheque-filters select {
  box-sizing: border-box;
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--rjc-album-border);
  border-radius: 5px;
  color: var(--rjc-album-text);
  background: #fff;
  font: inherit;
}

.rjc-filter-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.rjc-filter-actions button {
  height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 5px;
  color: #fff;
  background: var(--rjc-album-blue);
  font-weight: 800;
  cursor: pointer;
}

.rjc-filter-actions a {
  color: var(--rjc-album-blue);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.rjc-discotheque-count {
  margin: 22px 0 16px;
  color: var(--rjc-album-blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.rjc-album-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px 24px;
}

.rjc-album-card {
  min-width: 0;
}

.rjc-album-cover-wrap {
  position: relative;
}

.rjc-album-cover {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background: #e8ecf5;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

.rjc-album-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.rjc-album-card:hover .rjc-album-cover img {
  transform: scale(1.025);
}

.rjc-card-play {
  position: absolute;
  z-index: 3;
  bottom: 14px;
  left: 50%;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  padding: 0 15px;
  border-radius: 999px;
  color: #fff !important;
  background: rgba(2, 35, 107, .94);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .25);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .03em;
  text-decoration: none !important;
  white-space: nowrap;
  transform: translateX(-50%);
  transition: transform .2s ease, background .2s ease;
}

.rjc-card-play:hover,
.rjc-card-play:focus-visible {
  color: var(--rjc-album-blue) !important;
  background: #fff;
  transform: translateX(-50%) translateY(-2px);
}

.rjc-card-play span {
  font-size: 10px;
}

.rjc-cover-fallback {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  color: var(--rjc-album-blue);
  background: linear-gradient(145deg, #fff 0%, #dce4f6 100%);
}

.rjc-cover-fallback > span {
  font-size: clamp(20px, 3vw, 38px);
  font-weight: 900;
  line-height: .86;
  letter-spacing: -.06em;
}

.rjc-cover-fallback small {
  font-weight: 700;
  line-height: 1.2;
}

.rjc-album-card-body {
  padding: 15px 2px 0;
}

.rjc-album-date {
  margin-bottom: 7px;
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.rjc-album-date.is-upcoming {
  color: #a24d00;
}

.rjc-album-card h2 {
  margin: 0 0 7px;
  font-size: 20px;
  line-height: 1.12;
  letter-spacing: -.02em;
}

.rjc-album-card h2 a {
  color: inherit;
  text-decoration: none;
}

.rjc-album-artist {
  font-size: 15px;
  font-weight: 700;
}

.rjc-album-meta,
.rjc-album-label {
  margin-top: 7px;
  color: #64748b;
  font-size: 13px;
}

.rjc-album-label {
  color: var(--rjc-album-blue);
  font-weight: 800;
}

.rjc-album-card-body > p {
  margin: 12px 0 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.55;
}

.rjc-empty-state {
  padding: 45px;
  border-radius: 8px;
  text-align: center;
  background: var(--rjc-album-soft);
}

.rjc-empty-state h2 {
  margin-top: 0;
  color: var(--rjc-album-blue);
}

.rjc-pagination {
  margin-top: 50px;
}

.rjc-pagination ul {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rjc-pagination a,
.rjc-pagination span {
  display: grid;
  min-width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--rjc-album-border);
  border-radius: 5px;
  color: var(--rjc-album-blue);
  font-weight: 700;
  text-decoration: none;
}

.rjc-pagination .current {
  color: #fff;
  background: var(--rjc-album-blue);
}

.rjc-single-album-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 24px 80px;
}

.rjc-single-album {
  margin: 0;
}

.rjc-back-discotheque {
  display: inline-block;
  margin: 0 0 22px;
  color: var(--rjc-album-blue) !important;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none !important;
}

.rjc-single-album-hero {
  display: grid;
  grid-template-columns: minmax(280px, 440px) 1fr;
  gap: 52px;
  align-items: center;
  padding: 36px;
  border-radius: 10px;
  background: var(--rjc-album-soft);
}

.rjc-single-cover {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background: #e8ecf5;
  box-shadow: 0 18px 44px rgba(2, 35, 107, .16);
}

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

.rjc-single-album-info h1 {
  margin: 9px 0 16px;
  color: var(--rjc-album-blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.045em;
}

.rjc-single-artist {
  margin: 0 0 25px;
  font-size: 23px;
  font-weight: 800;
}

.rjc-single-album-info dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.rjc-single-album-info dl div {
  display: grid;
  grid-template-columns: 130px 1fr;
  padding-top: 10px;
  border-top: 1px solid var(--rjc-album-border);
}

.rjc-single-album-info dt {
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rjc-single-album-info dd {
  margin: 0;
  font-weight: 700;
}

.rjc-single-album-info dd a {
  color: var(--rjc-album-blue);
  font-weight: 800;
  text-decoration: none;
}

.rjc-single-album-info dd a:hover {
  text-decoration: underline;
}

.rjc-listen-on-rjc {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  padding: 13px 18px;
  border-radius: 999px;
  color: #fff !important;
  background: var(--rjc-album-blue);
  box-shadow: 0 10px 24px rgba(2, 35, 107, .18);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none !important;
}

.rjc-listen-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  scroll-margin-top: 120px;
}

.rjc-listen-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff !important;
  background: var(--rjc-album-blue);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none !important;
}

.rjc-listen-on-rjc:hover,
.rjc-listen-links a:hover {
  color: var(--rjc-album-blue) !important;
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--rjc-album-blue), 0 10px 24px rgba(2, 35, 107, .12);
}

.rjc-album-video,
.rjc-album-media {
  max-width: 960px;
  margin: 42px auto;
  scroll-margin-top: clamp(150px, 25vw, 330px);
}

.rjc-album-video-heading {
  margin-bottom: 16px;
}

.rjc-album-video-heading h2 {
  margin: 5px 0 0;
  color: var(--rjc-album-blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 500;
  letter-spacing: -.03em;
}

.rjc-video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  background: #000;
  box-shadow: 0 18px 44px rgba(2, 35, 107, .16);
}

.rjc-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.rjc-audio-player {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
  padding: 22px;
  border: 1px solid rgba(2, 35, 107, .12);
  border-radius: 12px;
  background: #f7f3ea;
  box-shadow: 0 18px 44px rgba(2, 35, 107, .1);
}

.rjc-audio-player strong {
  color: var(--rjc-album-blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 500;
}

.rjc-audio-player audio {
  width: 100%;
}

.rjc-audio-embed {
  position: relative;
  overflow: hidden;
  min-height: 160px;
  border-radius: 10px;
  background: #000;
  box-shadow: 0 18px 44px rgba(2, 35, 107, .16);
}

.rjc-audio-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.rjc-video-consent {
  position: absolute;
  inset: 0;
  display: grid;
  width: 100%;
  place-content: center;
  gap: 10px;
  border: 0;
  color: #fff;
  background:
    radial-gradient(circle at 75% 25%, rgba(185, 154, 94, .35), transparent 24%),
    linear-gradient(135deg, var(--rjc-album-blue), var(--rjc-album-blue-deep));
  text-align: center;
  cursor: pointer;
}

.rjc-video-consent > span {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 4px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  font-size: 22px;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.rjc-video-consent strong {
  font-size: 18px;
}

.rjc-video-consent small {
  color: rgba(255, 255, 255, .72);
}

.rjc-video-consent:hover > span,
.rjc-video-consent:focus-visible > span {
  color: var(--rjc-album-blue);
  background: #fff;
  transform: scale(1.06);
}

.rjc-single-review {
  max-width: 820px;
  margin: 44px auto;
  font-size: 18px;
  line-height: 1.78;
}

.rjc-single-review > :first-child {
  margin-top: 0;
}

.rjc-single-review > :last-child {
  margin-bottom: 0;
}

.rjc-album-credits {
  max-width: 820px;
  margin: 0 auto;
  padding: 26px;
  border-radius: 7px;
  background: var(--rjc-album-soft);
}

.rjc-album-credits h2 {
  margin: 0 0 12px;
  color: var(--rjc-album-blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
}

.rjc-album-credits p {
  margin: 0;
  line-height: 1.65;
}

@media (max-width: 1000px) {
  .rjc-album-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rjc-discotheque-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rjc-filter-actions {
    grid-column: 1 / -1;
  }
}

@media (max-width: 800px) {
  .rjc-single-album-shell {
    padding-right: 14px;
    padding-left: 14px;
  }

  .rjc-single-album-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 22px;
  }

  .rjc-single-cover {
    width: 100%;
    max-width: 460px;
  }

  .rjc-single-album-info dl div {
    grid-template-columns: 110px 1fr;
  }
}

@media (max-width: 720px) {
  .rjc-discotheque-page {
    padding: 28px 14px 56px;
  }

  .rjc-discotheque-hero {
    padding: 34px 24px;
  }

  .rjc-discotheque-hero p {
    font-size: 16px;
  }

  .rjc-discotheque-filters {
    grid-template-columns: 1fr;
  }

  .rjc-filter-actions {
    grid-column: auto;
  }

  .rjc-album-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 14px;
  }

  .rjc-album-card h2 {
    font-size: 16px;
  }

  .rjc-album-artist {
    font-size: 13px;
  }

  .rjc-album-card-body > p,
  .rjc-album-meta {
    display: none;
  }

  .rjc-card-play {
    bottom: 9px;
    min-height: 34px;
    padding: 0 12px;
    font-size: 11px;
  }

  .rjc-album-video,
  .rjc-album-media {
    margin: 32px auto;
  }
}

@media (max-width: 430px) {
  .rjc-album-grid {
    grid-template-columns: 1fr;
  }

  .rjc-album-card-body > p,
  .rjc-album-meta {
    display: block;
  }
}
