:root {
  --bg1: #160305;
  --bg2: #5e0a12;
  --red: #b10b12;
  --red2: #7f0910;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--white);
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #000;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  text-decoration: none;
  font-family: Anton, Montserrat, system-ui, sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

.site-header__logo-img {
  display: block;
  height: 24px;
  width: auto;
  object-fit: contain;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  justify-content: center;
}

.site-header__link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 11px;
  text-transform: uppercase;
}

.site-header__link.is-active {
  color: var(--white);
}

.site-header__link:hover {
  color: var(--white);
}

.site-header__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header__social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.icon-link:hover {
  color: var(--white);
}

.site-header__support {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 14px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--red), var(--red2));
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 11px;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.site-header__support:hover {
  filter: brightness(1.07);
}

.site-header__menu {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  padding: 6px 6px;
}

.site-header__menu-label {
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 11px;
  text-transform: uppercase;
}

.site-header__menu-bars {
  width: 22px;
  height: 14px;
  display: inline-block;
  position: relative;
}

.site-header__menu-bars::before,
.site-header__menu-bars::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.92);
}

.site-header__menu-bars::before {
  top: 2px;
}

.site-header__menu-bars::after {
  bottom: 2px;
}

.menu {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 180ms ease;
}

.menu__panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(420px, 92vw);
  background: rgba(0, 0, 0, 0.92);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 22px 18px;
  transform: translateX(12px);
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
  display: flex;
  flex-direction: column;
}

.menu__close {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.menu__links {
  display: grid;
  gap: 16px;
  padding: 20px 0 18px;
}

.menu__link {
  color: var(--white);
  text-decoration: none;
  font-family: Anton, Montserrat, system-ui, sans-serif;
  font-size: 42px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

.menu__link.is-active {
  text-decoration: underline;
  text-underline-offset: 10px;
}

.site-footer {
  padding: 46px 20px 22px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.82));
}

.site-footer__inner {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 18px;
  align-items: start;
}

.site-footer__brand {
  display: grid;
  gap: 10px;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-footer__logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.site-footer__tag {
  opacity: 0.8;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  justify-items: start;
}

.site-footer__link {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 11px;
}

.site-footer__link.is-active {
  color: var(--white);
}

.site-footer__link:hover {
  color: var(--white);
}

.site-footer__social {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.site-footer__bottom {
  width: min(1100px, 100%);
  margin: 18px auto 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.72;
  font-size: 12px;
}

.menu__link:hover {
  opacity: 0.92;
}

.menu__support {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 12px;
  text-transform: uppercase;
}

.menu--open .menu__backdrop {
  opacity: 1;
}

.menu--open .menu__panel {
  transform: translateX(0);
  opacity: 1;
}

.page {
  min-height: 100vh;
  padding: 140px 20px 80px;
  background:
    radial-gradient(1200px 900px at 70% 50%, rgba(255, 0, 40, 0.18), transparent 60%),
    radial-gradient(900px 700px at 20% 20%, rgba(255, 0, 0, 0.14), transparent 55%),
    linear-gradient(120deg, rgba(22, 3, 5, 0.95), rgba(0, 0, 0, 0.95));
}

.container {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.page__title {
  margin: 0 0 18px;
  font-family: Anton, Montserrat, system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1;
}

.page__sub {
  margin: 0 0 26px;
  max-width: 72ch;
  opacity: 0.9;
  line-height: 1.6;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.embed {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.45);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 0 18px;
}

.embed__frame {
  display: block;
  border: 0;
}

.card {
  display: block;
  text-decoration: none;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.45);
  border-radius: 10px;
  padding: 14px;
}

.card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.55);
}

.card__title {
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.card__meta {
  margin: 0;
  opacity: 0.85;
  font-size: 13px;
  line-height: 1.5;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 18px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn--primary {
  border-color: rgba(0, 0, 0, 0.2);
  background: linear-gradient(180deg, var(--red), var(--red2));
}

.btn--primary:hover {
  filter: brightness(1.07);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  justify-items: start;
  padding: 140px 20px 120px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 900px at 70% 50%, rgba(255, 0, 40, 0.22), transparent 60%),
    radial-gradient(900px 700px at 20% 20%, rgba(255, 0, 0, 0.18), transparent 55%),
    linear-gradient(120deg, rgba(22, 3, 5, 0.88), rgba(94, 10, 18, 0.82)),
    url("https://wordpress-1206942-5703965.cloudwaysapps.com/wp-content/uploads/2025/07/elementor/thumbs/Servant-Zero-Hero-Website-scaled-r95iavznzjf7zbbog48tdt0rdmhhy95i2brt8a0a4s.jpg");
  background-size: cover;
  background-position: 70% 50%, 20% 20%, 0 0, 85% 50%;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.06) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.05) 0 2px, transparent 3px),
    radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.04) 0 2px, transparent 3px);
  background-size: 180px 180px, 240px 240px, 210px 210px;
  filter: blur(0.2px);
  opacity: 0.9;
  pointer-events: none;
}

.hero__content {
  position: relative;
  width: min(920px, 100%);
  text-align: left;
}

.pill {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 18px;
}

.title {
  margin: 0;
  font-family: Anton, Montserrat, system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.92;
  font-size: clamp(56px, 11vw, 140px);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.title span {
  display: block;
}

.stores {
  display: flex;
  justify-content: flex-start;
  gap: 24px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.store {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 700;
  position: relative;
  padding-left: 18px;
}

.store::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.store:hover {
  color: var(--white);
}

.cta {
  margin-top: 24px;
  padding: 16px 28px;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: linear-gradient(180deg, var(--red), var(--red2));
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  min-width: min(420px, 100%);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.32);
}

.cta:hover {
  filter: brightness(1.07);
}

.player {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  grid-template-columns: auto 1fr 2fr;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.player__controls {
  display: flex;
  gap: 8px;
  align-items: center;
}

.player__btn {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
}

.player__meta {
  min-width: 0;
}

.player__title {
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player__artist {
  font-size: 12px;
  opacity: 0.85;
}

.player__progress {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
}

.player__time {
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  opacity: 0.9;
}

.player__range {
  width: 100%;
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 14px;
  }

  .site-header__nav {
    display: none;
  }

  .site-header__social {
    display: none;
  }

  .site-header__logo-img {
    height: 24px;
  }

  .hero {
    justify-items: center;
  }

  .page {
    padding: 120px 14px 64px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 38px 14px 18px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .site-footer__social {
    justify-content: flex-start;
  }

  .hero__content {
    text-align: center;
  }

  .stores {
    justify-content: center;
  }

  .menu__link {
    font-size: 34px;
  }

  .player {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .player__controls {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .player__progress {
    grid-column: 1 / -1;
  }

  .cta {
    min-width: 100%;
  }
}
