
:root {
  --epk23h-text: #eef8ff;
  --epk23h-muted: rgba(238,248,255,.78);
  --epk23h-line: rgba(0,190,255,.70);
  --epk23h-accent: #20b7ff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.epk23h-page {
  margin: 0;
  color: var(--epk23h-text);
  background: #00040a;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.epk23h-top {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99999;
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(0,185,255,.42);
  border-radius: 999px;
  background: rgba(0,0,0,.56);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 52px rgba(0,0,0,.38);
  pointer-events: auto;
}

.epk23h-top a {
  color: #eef8ff;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  pointer-events: auto;
  cursor: pointer;
}

.epk23h-top a:hover {
  background: rgba(0,165,255,.24);
}

.epk23h-screen {
  min-height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(88px, 8vw, 132px) clamp(18px, 5vw, 80px) clamp(38px, 5vw, 72px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #020812;
}

.epk23h-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 0%, rgba(0,175,255,.15), transparent 42%),
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.28));
  pointer-events: none;
}

.epk23h-stage {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: clamp(16px, 2.4vw, 30px);
}

.epk23h-align-bottom {
  align-self: end;
}

.epk23h-align-center {
  align-self: center;
}

.epk23h-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.epk23h-four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.epk23h-card {
  position: relative;
  z-index: 3;
  border: 1px solid var(--epk23h-line);
  border-radius: clamp(20px, 2.4vw, 34px);
  background:
    radial-gradient(circle at 10% 0%, rgba(0,185,255,.15), transparent 34%),
    linear-gradient(180deg, rgba(1,12,28,.58), rgba(0,5,14,.80));
  box-shadow:
    0 0 0 1px rgba(125,215,255,.10) inset,
    0 0 30px rgba(0,165,255,.25),
    0 26px 86px rgba(0,0,0,.52);
  backdrop-filter: blur(9px);
  padding: clamp(22px, 3vw, 42px);
}

.epk23h-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(125,215,255,.10);
  border-radius: inherit;
  pointer-events: none;
}

.epk23h-pos-left-bottom {
  align-self: end;
  justify-self: start;
}

.epk23h-hero-card {
  width: min(920px, 100%);
}

.epk23h-wide {
  width: min(1120px, 100%);
}

.epk23h-center {
  text-align: center;
}

.epk23h-label,
.epk23h-kicker {
  display: inline-flex;
  color: var(--epk23h-accent);
  font-weight: 1000;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: .82rem;
}

.epk23h-card h1,
.epk23h-card h2 {
  margin: 0 0 16px;
  line-height: .88;
  letter-spacing: -.065em;
  text-shadow:
    0 0 18px rgba(125,215,255,.44),
    0 0 40px rgba(0,95,255,.22);
}

.epk23h-card h1 {
  font-size: clamp(3.8rem, 9vw, 8.8rem);
}

.epk23h-card h2 {
  font-size: clamp(2.1rem, 4.8vw, 4.8rem);
}

.epk23h-card h3 {
  margin: 0 0 8px;
  font-size: 1.22rem;
}

.epk23h-card p,
.epk23h-card li {
  color: var(--epk23h-muted);
  line-height: 1.55;
  font-size: clamp(1rem, 1.25vw, 1.13rem);
}

.epk23h-card strong {
  display: block;
  color: var(--epk23h-accent);
  font-size: clamp(1.35rem, 3.4vw, 3.2rem);
  line-height: .95;
  text-shadow: 0 0 24px rgba(0,165,255,.34);
}

.epk23h-albums {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.epk23h-mini {
  border: 1px solid rgba(0,165,255,.30);
  border-radius: 18px;
  padding: 16px;
  background: rgba(0,0,0,.34);
}

.epk23h-mini span {
  display: block;
  color: var(--epk23h-accent);
  font-weight: 950;
  margin-bottom: 6px;
}

.epk23h-mini p {
  margin: 0 0 6px;
}

.epk23h-count {
  color: var(--epk23h-accent) !important;
  font-weight: 900;
}

.epk23h-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.epk23h-downloads span,
.epk23h-downloads a {
  display: inline-flex;
  color: var(--epk23h-muted);
  text-decoration: none;
  border: 1px solid rgba(0,165,255,.34);
  background: rgba(0,0,0,.32);
  border-radius: 999px;
  padding: 10px 13px;
  font-weight: 850;
}

.epk23h-final .epk23h-card strong {
  font-size: clamp(1.8rem, 5vw, 4.8rem);
}


.epk23h-bg-01 {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.58), rgba(0,0,0,.16), rgba(0,0,0,.58)),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.38)),
    url("../assets/epk/clean_backgrounds/epk-clean-bg-01.png");
}


.epk23h-bg-02 {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.58), rgba(0,0,0,.16), rgba(0,0,0,.58)),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.38)),
    url("../assets/epk/clean_backgrounds/epk-clean-bg-02.png");
}


.epk23h-bg-03 {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.58), rgba(0,0,0,.16), rgba(0,0,0,.58)),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.38)),
    url("../assets/epk/clean_backgrounds/epk-clean-bg-03.png");
}


.epk23h-bg-04 {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.58), rgba(0,0,0,.16), rgba(0,0,0,.58)),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.38)),
    url("../assets/epk/clean_backgrounds/epk-clean-bg-04.png");
}


.epk23h-bg-05 {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.58), rgba(0,0,0,.16), rgba(0,0,0,.58)),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.38)),
    url("../assets/epk/clean_backgrounds/epk-clean-bg-05.png");
}


.epk23h-bg-06 {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.58), rgba(0,0,0,.16), rgba(0,0,0,.58)),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.38)),
    url("../assets/epk/clean_backgrounds/epk-clean-bg-06.png");
}


.epk23h-bg-07 {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.58), rgba(0,0,0,.16), rgba(0,0,0,.58)),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.38)),
    url("../assets/epk/clean_backgrounds/epk-clean-bg-07.png");
}


.epk23h-bg-08 {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.58), rgba(0,0,0,.16), rgba(0,0,0,.58)),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.38)),
    url("../assets/epk/clean_backgrounds/epk-clean-bg-08.png");
}


.epk23h-bg-09 {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.58), rgba(0,0,0,.16), rgba(0,0,0,.58)),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.38)),
    url("../assets/epk/clean_backgrounds/epk-clean-bg-09.png");
}


@media (max-width: 900px) {
  .epk23h-top {
    left: 10px;
    right: 10px;
    transform: none;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .epk23h-two,
  .epk23h-four {
    grid-template-columns: 1fr;
  }

  .epk23h-screen {
    min-height: auto;
    padding-top: 96px;
  }

  .epk23h-card h1 {
    font-size: clamp(3.1rem, 18vw, 5.2rem);
  }
}
