:root {
  --background: #0a0a0f;
  --foreground: #f6f7f8;
  --card: #0f1118;
  --card-soft: #121625;
  --muted: #9aa0af;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #d51b19;
  --accent-soft: rgba(213, 27, 25, 0.16);
  --white-panel: #ffffff;
  --radius: 16px;
  --hero-height: 100svh;
  --scroll-fade: 0;
  --rd-decor-opacity: 0;
  --rd-decor-shift: 64px;
  --rd-panel-shift: 144px;
  --rd-panel-opacity: 0.85;
  --rd-target-opacity: 0;
  --rd-target-scale: 1;
  --rd-target-speed: 3.8s;
  --rd-grain-image: url("../releases/grain.png");
  --rd-fine-noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.95' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.1'/%3E%3C/svg%3E");
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  font-family: "Geist", "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(78, 62, 68, 0.12) 42%, rgba(26, 20, 24, 0.48) 100%),
    linear-gradient(180deg, #f5f1ee 0%, #e3d8d4 32%, #b9a9ae 64%, #5f5860 100%);
  color: #0f1013;
}

a {
  color: inherit;
}

.rd-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  transition: background-color 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}

.rd-header.is-scrolled {
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(10px);
  border-color: rgba(255, 255, 255, 0.12);
}

.rd-header-inner {
  width: min(1280px, 94vw);
  margin: 0 auto;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

.rd-logo img {
  display: block;
  width: auto;
  height: clamp(26px, 2.2vw, 34px);
  filter:
    brightness(0)
    saturate(100%)
    opacity(0.9)
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.26));
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.rd-header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.rd-header-nav a {
  color: rgba(20, 24, 35, 0.78);
  text-decoration: none;
  font-size: 0.84rem;
  transition: color 0.2s ease;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.28);
}

.rd-header-nav a:hover {
  color: #8f230f;
}

.rd-header.is-scrolled .rd-logo img {
  filter:
    brightness(0) invert(1)
    opacity(0.96)
    drop-shadow(0 1px 10px rgba(0, 0, 0, 0.22));
}

.rd-header.is-scrolled .rd-header-nav a {
  color: rgba(255, 255, 255, 0.72);
  text-shadow: none;
}

.rd-header.is-scrolled .rd-header-nav a:hover {
  color: #e1be71;
}

.rd-hero {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.rd-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--rd-hero-base, #f3f1ec);
  overflow: hidden;
}

.rd-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image: var(--rd-grain-image);
  background-repeat: repeat;
  background-size: 44px 44px;
  background-position: 0 0;
  mix-blend-mode: overlay;
}

.rd-red-box {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 6;
  width: var(--rd-red-diameter, 180vmax);
  height: var(--rd-red-diameter, 180vmax);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  overflow: hidden;
  isolation: isolate;
  background: var(
    --rd-hero-next,
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(88, 70, 76, 0.16) 42%, rgba(31, 24, 28, 0.56) 100%),
    linear-gradient(180deg, #f3eeeb 0%, #ded2ce 34%, #ab9ca2 62%, #58525b 100%)
  );
}

.rd-red-box::before,
.rd-red-box::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.rd-red-box::before {
  opacity: 0.14;
  background-image: var(--rd-grain-image);
  background-repeat: repeat;
  background-size: 42px 42px;
  background-position: 0 0;
  mix-blend-mode: overlay;
}

.rd-red-box::after {
  opacity: 0.07;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 36%, rgba(16, 12, 16, 0.1) 100%);
  mix-blend-mode: soft-light;
}

.rd-mod-target {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: visible;
  opacity: var(--rd-target-opacity);
  transition: opacity 0.24s linear;
}

.rd-target-ring,
.rd-target-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}

.rd-target-ring {
  width: min(154vmax, 2280px);
  height: min(154vmax, 2280px);
  border: max(3px, 0.22vw) solid rgba(242, 236, 225, 0.56);
  opacity: 0;
  mix-blend-mode: soft-light;
  animation: rd-target-pulse var(--rd-target-speed) cubic-bezier(0.2, 0.64, 0.26, 0.99) infinite;
}

.rd-target-ring-a {
  border-color: rgba(245, 240, 232, 0.66);
  animation-delay: 0s;
}

.rd-target-ring-b {
  border-color: rgba(36, 86, 210, 0.58);
  border-width: max(4px, 0.28vw);
  animation-delay: calc(var(--rd-target-speed) * -0.33);
}

.rd-target-ring-c {
  border-color: rgba(242, 194, 29, 0.58);
  border-width: max(5px, 0.32vw);
  animation-delay: calc(var(--rd-target-speed) * -0.67);
}

.rd-target-core {
  width: clamp(56px, 8.2vmin, 148px);
  height: clamp(56px, 8.2vmin, 148px);
  transform: translate(-50%, -50%) scale(var(--rd-target-scale));
  border: max(4px, 0.3vw) solid rgba(243, 239, 232, 0.74);
  background:
    radial-gradient(circle at center, rgba(18, 31, 72, 0.48) 0 38%, rgba(18, 31, 72, 0) 42%),
    radial-gradient(circle at center, rgba(245, 243, 235, 0.92) 0 7%, rgba(245, 243, 235, 0) 10%);
  box-shadow:
    0 0 0 max(4px, 0.36vw) rgba(36, 86, 210, 0.2),
    0 0 0 max(10px, 0.66vw) rgba(242, 194, 29, 0.17);
}

@keyframes rd-target-pulse {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(calc(0.1 * var(--rd-target-scale)));
  }
  16% {
    opacity: 0.72;
  }
  70% {
    opacity: 0.24;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(calc(1.28 * var(--rd-target-scale)));
  }
}

.rd-hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(92, 74, 80, 0.006) 54%, rgba(26, 19, 22, 0.05) 100%),
    var(--rd-grain-image);
  background-repeat: no-repeat, repeat;
  background-size: 100% 100%, 48px 48px;
  background-position: center, 0 0;
  mix-blend-mode: overlay;
}

.rd-hero-scene {
  position: absolute;
  inset: 0;
  z-index: 10;
  overflow: visible;
  isolation: isolate;
  perspective: var(--rd-hero-perspective, 1850px);
  perspective-origin: 50% 44%;
  opacity: 1;
}

.rd-hero-scene.is-ready {
  opacity: 1;
}

.rd-hero-scene.is-loading::before {
  content: none;
}

.rd-hero-scene-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 200vw;
  max-width: 2300px;
  height: 155vh;
  transform: translate(-50%, -50%);
  overflow: visible;
  transform-style: preserve-3d;
}

.art-card-wrap {
  --size: 220px;
  --card-ground-shadow: 0.34;
  --card-ground-scale: 1;
  --card-img-scale: 1.01;
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--size);
  height: var(--size);
  margin-left: calc(var(--size) * -0.5);
  margin-top: calc(var(--size) * -0.5);
  overflow: visible;
  transform-origin: 50% 50%;
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.art-card-face {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  transform-style: preserve-3d;
}

.art-card-face::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: -11%;
  height: 22%;
  background: radial-gradient(closest-side, rgba(0, 0, 0, var(--card-ground-shadow)), rgba(0, 0, 0, 0));
  pointer-events: none;
  z-index: -1;
  transform: scale(var(--card-ground-scale));
  transform-origin: center;
}

.art-card-media {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
  background: #6f0d10;
  transform: translateZ(0);
  transform-style: preserve-3d;
  box-shadow:
    0 28px 56px -8px rgba(0, 0, 0, 0.45),
    0 12px 24px rgba(0, 0, 0, 0.28),
    0 4px 10px rgba(0, 0, 0, 0.18);
  will-change: box-shadow;
}

.art-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: none;
  transform: scale(var(--card-img-scale));
  will-change: transform, filter;
}

.rd-hero-title {
  position: absolute;
  inset-inline: 0;
  top: 62px;
  z-index: 50;
  text-align: center;
  pointer-events: none;
}

.rd-hero-title h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.6rem, 7.2vw, 5.3rem);
  font-weight: 300;
  letter-spacing: 0.03em;
  color: #17202f;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35), 0 18px 48px rgba(0, 0, 0, 0.24);
}

.rd-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}

.rd-scroll-indicator span {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(70, 79, 97, 0.82);
}

.rd-scroll-mouse {
  width: 26px;
  height: 48px;
  border-radius: 99px;
  border: 2px solid rgba(108, 118, 140, 0.6);
  display: grid;
  place-items: start center;
  padding-top: 8px;
}

.rd-scroll-mouse i {
  width: 4px;
  height: 9px;
  border-radius: 99px;
  background: rgba(69, 81, 102, 0.9);
  animation: rd-scroll-dot 1.6s ease-in-out infinite;
}

.rd-scroll-indicator svg {
  width: 20px;
  height: 20px;
  color: rgba(88, 97, 118, 0.7);
}

@keyframes rd-scroll-dot {
  0% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(17px); opacity: 1; }
  100% { transform: translateY(0); opacity: 0.3; }
}

.rd-hero-spacer {
  height: var(--hero-height);
}

.rd-fade-overlay {
  position: fixed;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: var(--scroll-fade);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 10%, rgba(120, 98, 104, 0.1) 58%, rgba(46, 34, 40, 0.56) 100%),
    var(--rd-grain-image);
  background-repeat: no-repeat, repeat;
  background-size: 100% 100%, 52px 52px;
  background-position: center, 0 0;
  mix-blend-mode: overlay;
}

.rd-scroll-motifs {
  display: none;
}

.rd-ring {
  position: absolute;
  inset: 0;
  opacity: 0;
  mix-blend-mode: normal;
  background: var(--rd-wipe-bg);
  clip-path: circle(0px at 50% 50%);
  will-change: clip-path, opacity;
}

.rd-ring-1 {
  --rd-wipe-bg: #d51b19;
}

.rd-ring-2 {
  --rd-wipe-bg: #f3f1ec;
}

.rd-ring-3 {
  --rd-wipe-bg: #2456d2;
}

.rd-ring-4 {
  --rd-wipe-bg: #f3f1ec;
}

.rd-ring-5 {
  --rd-wipe-bg: #f2c21d;
}

.rd-ring-6 {
  --rd-wipe-bg: #7bc1c8;
}

.rd-ring-7 {
  --rd-wipe-bg: #f3f1ec;
}

.rd-ring-8 {
  --rd-wipe-bg: #d51b19;
}

.rd-main-shell {
  position: relative;
  z-index: 10;
  margin-top: -10px;
}

.rd-main-panel {
  position: relative;
  width: min(1280px, 94vw);
  margin: 0 auto 28px;
  border-radius: 28px 28px 0 0;
  background: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  padding: 30px 24px 44px;
  opacity: var(--rd-panel-opacity);
  transform: translate3d(0, var(--rd-panel-shift), 0);
  overflow: hidden;
  will-change: transform, opacity;
}

.rd-main-panel::before {
  display: none;
}

.rd-mobile-tools {
  display: none;
}

.rd-layout {
  display: block;
}

.rd-sidebar {
  display: none;
}

.rd-filter-panel {
  position: relative;
  top: auto;
  border-radius: 12px;
  background: var(--card);
  color: var(--foreground);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-height: calc(100vh - 112px);
  overflow: auto;
}

.rd-toolbar-shell {
  position: relative;
  z-index: 12;
  margin-bottom: 22px;
}

.rd-grid-tools {
  position: sticky;
  top: 64px;
  z-index: 35;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.rd-filter-panel-desktop {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: end;
  max-height: none;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  padding: 12px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(17, 19, 26, 0.07);
  background: #0b0d14;
  box-shadow: none;
}

.rd-filter-panel-desktop::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    radial-gradient(100% 120% at 20% 24%, rgba(42, 73, 142, 0.24) 0%, rgba(42, 73, 142, 0) 48%),
    radial-gradient(110% 120% at 82% 78%, rgba(116, 60, 22, 0.16) 0%, rgba(116, 60, 22, 0) 44%),
    var(--rd-fine-noise);
  background-repeat: no-repeat, no-repeat, repeat;
  background-size: 100% 100%, 100% 100%, 132px 132px;
  background-position: center, center, 0 0;
  mix-blend-mode: overlay;
}

.rd-filter-panel-desktop > * {
  position: relative;
  z-index: 1;
}

.rd-filter-panel-desktop .rd-filter-group {
  margin: 0;
  min-width: 0;
  flex: 1 1 140px;
}

.rd-filter-panel-desktop .rd-filter-group:first-child {
  flex: 1.2 1 230px;
}

.rd-filter-panel-desktop .rd-filter-group:nth-child(2) {
  flex: 1.05 1 200px;
}

.rd-filter-panel-desktop .rd-filter-group:nth-child(5) {
  flex: 0.8 1 118px;
}

.rd-filter-panel-desktop .rd-filter-group:nth-child(6) {
  flex: 0.95 1 150px;
}

.rd-filter-panel-desktop .rd-filter-group:last-child {
  flex: 0 0 132px;
}

.rd-filter-panel-desktop .rd-filter-title {
  margin-bottom: 5px;
  font-size: 0.58rem;
}

.rd-filter-panel-desktop input,
.rd-filter-panel-desktop select,
.rd-filter-panel-desktop button {
  min-height: 38px;
  font-size: 0.92rem;
  padding-inline: 12px;
}

.rd-filter-panel-desktop button {
  white-space: nowrap;
}

.rd-filter-group {
  margin-bottom: 14px;
}

.rd-filter-group:last-child {
  margin-bottom: 0;
}

.rd-filter-title {
  margin: 0 0 8px;
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
}

.rd-filter-panel input,
.rd-filter-panel select {
  width: 100%;
  min-height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font: inherit;
  padding: 0 10px;
}

.rd-filter-panel input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.rd-filter-panel select option {
  color: #10131b;
}

.rd-filter-panel button {
  width: 100%;
  min-height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
}

.rd-grid-column {
  min-width: 0;
  width: 100%;
}

.rd-grid-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin: 0;
  padding: 18px 22px 16px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #f7f5f2;
  border: 1px solid rgba(17, 19, 26, 0.08);
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
}

.rd-grid-head::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.026;
  background-image: var(--rd-fine-noise);
  background-repeat: repeat;
  background-size: 132px 132px;
  mix-blend-mode: multiply;
}

.rd-grid-head > * {
  position: relative;
  z-index: 1;
}

.rd-grid-head h2 {
  margin: 0;
  font-size: 1.48rem;
  color: #11131a;
}

.rd-grid-head p,
.rd-mobile-tools p {
  margin: 0;
  color: #5e6574;
  font-size: 0.85rem;
}

.rd-release-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

@media (min-width: 768px) {
  .rd-release-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .rd-release-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.rd-release-card-link {
  display: block;
  text-decoration: none;
}

.rd-release-card {
  border-radius: 10px;
  overflow: hidden;
  background: rgba(15, 17, 24, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.rd-release-card-link:hover .rd-release-card {
  background: rgba(213, 27, 25, 0.1);
  box-shadow: 0 8px 24px rgba(213, 27, 25, 0.3);
}

.rd-release-art {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #1a2433;
}

.rd-release-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: scale(1.02);
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.rd-release-art.is-loaded img {
  opacity: 1;
  transform: scale(1);
}

.rd-release-card-link:hover .rd-release-art.is-loaded img {
  transform: scale(1.05);
}

.rd-release-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(0, 0, 0, 0.62));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.rd-release-card-link:hover .rd-release-art::after {
  opacity: 1;
}

.rd-variant-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  padding: 3px 8px;
  font-size: 10px;
  letter-spacing: 0.02em;
}

.rd-card-cta {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(6, 8, 14, 0.44);
  color: #fff;
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.28s ease, transform 0.28s ease, background-color 0.28s ease, border-color 0.28s ease;
}

.rd-release-card-link:hover .rd-card-cta {
  opacity: 1;
  transform: translateY(0);
  background: rgba(213, 27, 25, 0.86);
  border-color: rgba(255, 255, 255, 0.92);
}

.rd-release-art-loader {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
  background-size: 220% 100%;
  animation: rd-loader-shimmer 1.2s linear infinite;
  opacity: 0.58;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.rd-release-art.is-loaded .rd-release-art-loader {
  opacity: 0;
}

@keyframes rd-loader-shimmer {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -40% 0;
  }
}

.rd-release-info {
  background: #334155;
  padding: 12px;
  transition: background-color 0.3s ease;
}

.rd-release-card-link:hover .rd-release-info {
  background: var(--accent);
}

.rd-release-title {
  margin: 0;
  color: #fff;
  font-size: 0.88rem;
  line-height: 1.24;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rd-release-artist {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.75rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rd-release-meta {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
}

.rd-release-catalog {
  font-family: "Geist Mono", monospace;
  font-weight: 600;
}

.rd-release-tags {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.rd-release-tag {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  padding: 1px 6px;
  font-size: 9px;
}

@media (hover: none) {
  .rd-card-cta {
    opacity: 1;
    transform: translateY(0);
  }
}

.rd-empty-state,
.rd-error-state,
.rd-noscript {
  grid-column: 1 / -1;
  border-radius: 10px;
  border: 1px solid rgba(15, 15, 15, 0.16);
  background: rgba(255, 255, 255, 0.74);
  padding: 14px;
}

.rd-empty-state h3,
.rd-error-state h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.rd-empty-state p,
.rd-error-state p {
  margin: 0;
  font-size: 0.86rem;
  color: #495061;
}

.rd-empty-state a {
  color: var(--accent);
}

.rd-mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.rd-mobile-drawer.is-open {
  display: block;
}

.rd-mobile-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
}

.rd-mobile-drawer-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(340px, 88vw);
  height: 100%;
  background: #0f121a;
  color: #fff;
  padding: 14px;
  transform: translateX(-102%);
  transition: transform 0.22s ease;
  overflow-y: auto;
}

.rd-mobile-drawer.is-open .rd-mobile-drawer-panel {
  transform: translateX(0);
}

.rd-mobile-drawer-panel header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.rd-mobile-drawer-panel h3 {
  margin: 0;
  font-size: 1rem;
}

.rd-filter-close,
.rd-filter-open {
  border: 1px solid rgba(15, 17, 24, 0.18);
  border-radius: 8px;
  min-height: 34px;
  padding: 0 12px;
  background: #fff;
  color: #10131b;
  font: inherit;
  font-size: 0.84rem;
  cursor: pointer;
}

.rd-filter-close {
  border-color: rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  width: 34px;
  padding: 0;
}

.rd-noscript {
  position: fixed;
  right: 12px;
  bottom: 12px;
  z-index: 200;
  max-width: 340px;
}

@media (max-width: 1199px) {
  .rd-header-nav {
    gap: 14px;
  }

  .rd-hero-scene-inner {
    width: 220vw;
    height: 150vh;
  }
}

@media (max-width: 1023px) {
  .rd-main-panel {
    width: min(100%, 100vw);
    border-radius: 24px 24px 0 0;
    padding: 18px 14px 32px;
  }

  .rd-mobile-tools {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
  }

  .rd-layout {
    display: block;
  }

  .rd-toolbar-shell {
    position: static;
    margin-bottom: 12px;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
  }

  .rd-grid-tools {
    display: none;
  }

  .rd-grid-head {
    margin-bottom: 12px;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
  }
}

@media (max-width: 1320px) {
  .rd-filter-panel-desktop .rd-filter-group {
    flex-basis: 128px;
  }

  .rd-filter-panel-desktop .rd-filter-group:first-child {
    flex-basis: 200px;
  }

  .rd-filter-panel-desktop .rd-filter-group:nth-child(2) {
    flex-basis: 182px;
  }

  .rd-filter-panel-desktop .rd-filter-group:nth-child(6) {
    flex-basis: 138px;
  }
}

@media (max-width: 900px) {
  .rd-header-nav a:last-child {
    display: none;
  }

  .rd-hero-title {
    top: 70px;
  }

  .rd-hero-scene-inner {
    width: 240vw;
    height: 135vh;
  }

  .rd-target-ring {
    width: min(176vmax, 1980px);
    height: min(176vmax, 1980px);
  }
}

@media (max-width: 1024px) and (orientation: landscape) {
  .rd-header-nav {
    gap: 12px;
  }

  .rd-header-nav a {
    font-size: 0.76rem;
  }

  .rd-hero-title {
    top: 58px;
  }

  .rd-hero-title h1 {
    font-size: clamp(2.8rem, 6vw, 4.7rem);
  }
}

@media (max-width: 1024px) and (orientation: portrait) {
  .rd-header-inner {
    min-height: 60px;
  }

  .rd-header-nav {
    gap: 10px;
  }

  .rd-header-nav a {
    font-size: 0.74rem;
  }

  .rd-hero-title {
    top: 86px;
  }

  .rd-hero-title h1 {
    font-size: clamp(2.7rem, 7.6vw, 4.5rem);
  }

  .rd-scroll-indicator {
    bottom: 22px;
  }
}

@media (max-width: 640px) {
  .rd-header-inner {
    min-height: 56px;
  }

  .rd-logo {
    max-width: min(48vw, 210px);
  }

  .rd-logo img {
    height: clamp(22px, 5.2vw, 28px);
    max-width: 100%;
  }

  .rd-header-nav {
    display: none;
  }

  .rd-hero-title h1 {
    font-size: clamp(2.05rem, 10.5vw, 3rem);
  }

  .rd-scroll-indicator {
    bottom: 28px;
  }

  .rd-scroll-indicator span {
    font-size: 0.59rem;
  }

  .rd-hero-scene-inner {
    width: 270vw;
    height: 125vh;
  }

  .rd-target-core {
    width: clamp(52px, 14vw, 112px);
    height: clamp(52px, 14vw, 112px);
  }

  .rd-grid-head h2 {
    font-size: 1.28rem;
  }

  .rd-release-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

@media (max-width: 640px) and (orientation: portrait) {
  .rd-header-inner {
    min-height: 52px;
  }

  .rd-hero-title {
    top: 76px;
  }

  .rd-hero-title h1 {
    font-size: clamp(1.9rem, 12vw, 2.7rem);
  }

  .rd-scroll-indicator {
    bottom: 18px;
  }
}

@media (max-width: 460px) {
  .rd-release-grid {
    grid-template-columns: 1fr;
  }
}
