:root {
  --black: #050704;
  --ink: #0b1009;
  --panel: #11170d;
  --panel-soft: #171e12;
  --bone: #d5cab1;
  --bone-bright: #f0ead7;
  --smoke: #9b9b86;
  --acid: #54b80e;
  --acid-hot: #83ff1f;
  --line: rgba(131, 255, 31, 0.28);
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: transparent;
  color: var(--bone);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Roboto Condensed", Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.45;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
}

.site-video-bg,
.site-video-wash {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.site-video-bg {
  z-index: 0;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.18) brightness(0.78) hue-rotate(28deg);
}

.site-video-wash {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 22%, rgba(131, 255, 31, 0.18), transparent 18rem),
    radial-gradient(circle at 78% 8%, rgba(84, 184, 14, 0.15), transparent 32rem),
    linear-gradient(90deg, rgba(5, 7, 4, 0.62), rgba(5, 7, 4, 0.4) 46%, rgba(5, 7, 4, 0.58)),
    linear-gradient(180deg, rgba(5, 7, 4, 0.06), rgba(5, 7, 4, 0.78));
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 2;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  background: linear-gradient(180deg, rgba(5, 7, 4, 0.9), rgba(5, 7, 4, 0));
}

.brand {
  color: var(--bone-bright);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(131, 255, 31, 0.45);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(10px, 2vw, 24px);
  color: var(--smoke);
  font-family: Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--acid-hot);
}

.platform-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-right: clamp(4px, 1vw, 10px);
}

.platform-links a {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  opacity: 0.86;
}

.platform-links img {
  width: 18px;
  height: 18px;
}

.platform-links a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.74fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  overflow: hidden;
  padding: 118px clamp(20px, 5vw, 72px) 64px;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -15%;
  background:
    linear-gradient(90deg, rgba(131, 255, 31, 0.05) 50%, transparent 50%),
    radial-gradient(circle at 73% 36%, rgba(131, 255, 31, 0.34), transparent 19rem);
  background-size: 8px 8px, auto;
  opacity: 0.75;
}

.scanline {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--acid-hot);
  box-shadow: 0 0 22px var(--acid-hot), 0 0 58px var(--acid);
  opacity: 0.75;
}

.hero-copy,
.cover-wrap {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-label,
.date,
.tour-date time {
  margin: 0;
  color: var(--acid-hot);
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.94;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  color: var(--bone-bright);
  font-size: clamp(4rem, 12vw, 10.6rem);
  text-shadow: 0 6px 0 #000, 0 0 26px rgba(131, 255, 31, 0.2);
}

h2 {
  color: var(--bone-bright);
  font-size: clamp(2.25rem, 6vw, 5rem);
}

h3 {
  color: var(--bone-bright);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.hero-title {
  margin: 10px 0 0;
  color: var(--acid);
  font-size: clamp(2.7rem, 8vw, 7rem);
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 0 5px 0 #000;
}

.hero-text,
.music-layout p,
.contact-panel p,
.news-card p,
.tour-date p {
  font-family: Arial, sans-serif;
  letter-spacing: 0;
}

.hero-text {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--bone);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
}

.cover-wrap {
  margin: 0;
}

.cover-wrap img {
  width: min(520px, 100%);
  margin-left: auto;
  border: 1px solid rgba(213, 202, 177, 0.28);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.7), 0 0 90px rgba(84, 184, 14, 0.22);
}

.hero-actions,
.contact-actions,
.music-actions,
.share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-player {
  width: min(560px, 100%);
  margin-top: 30px;
}

.button,
.share-row a,
.share-row button,
.tour-date a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid var(--acid);
  background: rgba(84, 184, 14, 0.1);
  color: var(--bone-bright);
  font-family: Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.share-row button {
  cursor: pointer;
}

.button.primary {
  background: var(--acid);
  color: #071000;
  box-shadow: 0 0 24px rgba(131, 255, 31, 0.24);
}

.button:hover,
.share-row a:hover,
.tour-date a:hover {
  background: var(--acid-hot);
  color: #071000;
}

.section,
.contact-section {
  padding: clamp(66px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.section-heading,
.music-layout,
.tour-layout,
.contact-panel,
.podcast-embed,
.album-embed,
.video-feature,
.channel-feature,
.youtube-carousel {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 30px;
}

.news-grid,
.video-grid {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.news-card,
.video-card,
.embed-shell,
.tour-date,
.contact-panel {
  border: 1px solid rgba(213, 202, 177, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    rgba(17, 23, 13, 0.86);
  backdrop-filter: blur(3px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.news-card,
.video-card {
  min-height: 250px;
  padding: 24px;
}

.news-card p:not(.date) {
  color: var(--smoke);
}

.share-row {
  margin-top: 22px;
}

.share-row a {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 0.76rem;
}

.news-archive {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.news-archive h3 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.archive-row {
  padding: 12px 0;
  border-bottom: 1px solid rgba(213, 202, 177, 0.14);
}

.archive-row summary {
  display: grid;
  grid-template-columns: minmax(120px, 0.22fr) minmax(180px, 0.48fr) minmax(180px, 0.3fr);
  gap: 14px;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

.archive-row summary::-webkit-details-marker {
  display: none;
}

.archive-title {
  color: var(--bone-bright);
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.archive-title::before {
  content: "+";
  display: inline-block;
  width: 1.1em;
  color: var(--acid-hot);
}

.archive-row[open] .archive-title::before {
  content: "-";
}

.archive-text {
  max-width: 760px;
  margin: 12px 0 0;
  padding-left: calc(22% + 14px);
  color: var(--smoke);
  font-family: Arial, sans-serif;
  font-weight: 700;
}

.archive-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.archive-links a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border: 1px solid var(--acid);
  background: rgba(84, 184, 14, 0.1);
  color: var(--bone-bright);
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.archive-links a:hover {
  background: var(--acid-hot);
  color: #071000;
}

.music-section,
.youtube-section,
.podcast-section,
.album-section,
.tour-section {
  background:
    linear-gradient(90deg, rgba(84, 184, 14, 0.08), transparent 42%),
    rgba(11, 16, 9, 0.84);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.music-layout,
.tour-layout,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1.15fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: start;
}

.music-layout p,
.contact-panel p {
  max-width: 520px;
  color: var(--smoke);
  font-weight: 700;
}

.music-actions {
  margin-top: 22px;
}

.release-embeds {
  display: grid;
  gap: 18px;
}

.embed-shell {
  padding: 10px;
}

iframe {
  display: block;
  width: 100%;
  border: 0;
}

.clips-section {
  background:
    radial-gradient(circle at 16% 12%, rgba(84, 184, 14, 0.14), transparent 26rem),
    rgba(8, 11, 6, 0.82);
}

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

.video-feature {
  display: grid;
}

.channel-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  border: 1px solid rgba(213, 202, 177, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    rgba(17, 23, 13, 0.86);
  padding: clamp(24px, 4vw, 44px);
  backdrop-filter: blur(3px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.channel-feature p:not(.section-label) {
  max-width: 620px;
  color: var(--smoke);
  font-family: Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

.youtube-carousel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.youtube-video-card {
  display: flex;
  flex-direction: column;
}

.youtube-video-card h3 {
  margin-top: 12px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.youtube-video-card .share-row {
  margin-top: auto;
  padding-top: 18px;
}

.youtube-thumb {
  display: block;
  aspect-ratio: 16 / 9;
  margin: -4px -4px 18px;
  overflow: hidden;
  border: 1px solid rgba(131, 255, 31, 0.24);
  background: #000;
}

.youtube-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease, filter 180ms ease;
}

.youtube-thumb:hover img {
  transform: scale(1.035);
  filter: brightness(1.08);
}

.video-card h3 {
  margin-top: 18px;
}

.video-card .video-fallback {
  margin: 10px 0 0;
  color: var(--smoke);
  font-family: Arial, sans-serif;
  font-weight: 800;
}

.video-card .video-fallback a {
  color: var(--acid-hot);
  text-decoration: none;
}

.video-card .video-fallback a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid rgba(131, 255, 31, 0.24);
}

.video-frame iframe {
  height: 100%;
}

.tour-list {
  display: grid;
  gap: 12px;
}

.tour-date {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
}

.tour-date p {
  margin: 6px 0 0;
  color: var(--smoke);
}

.tour-date.muted {
  opacity: 0.78;
}

.contact-section {
  background:
    linear-gradient(rgba(5, 7, 4, 0.84), rgba(5, 7, 4, 0.9)),
    url("assets/i-didnt-know-cover.jpg") center 34% / cover;
}

.contact-panel {
  padding: clamp(24px, 4vw, 44px);
  backdrop-filter: blur(3px);
}

.contact-actions {
  margin-top: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 72px);
  background: #030402;
  color: var(--smoke);
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  text-decoration: none;
}

.admin-page {
  min-height: 100vh;
  color: var(--bone);
  font-family: Arial, sans-serif;
}

.admin-page h1,
.admin-page h2,
.admin-page h3,
.admin-page p,
.admin-page label,
.admin-page input,
.admin-page textarea,
.admin-page button {
  font-family: Arial, sans-serif;
  letter-spacing: 0;
}

.admin-page h1,
.admin-page h2 {
  line-height: 1.05;
  text-transform: none;
}

.admin-shell {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
}

.admin-login,
.admin-workspace,
.admin-help,
.admin-post {
  border: 1px solid rgba(213, 202, 177, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    rgba(17, 23, 13, 0.93);
  backdrop-filter: blur(3px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.admin-login,
.admin-workspace {
  padding: clamp(22px, 4vw, 34px);
}

.admin-login {
  max-width: 560px;
}

.admin-login h1,
.admin-topbar h1 {
  margin-top: 4px;
  color: var(--bone-bright);
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.admin-login p,
.admin-topbar p,
.admin-help,
.admin-status {
  color: var(--smoke);
  font-size: 0.96rem;
  font-weight: 700;
}

.admin-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.admin-form label,
.admin-fields label {
  display: grid;
  gap: 7px;
  color: var(--bone);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-form input,
.admin-fields input,
.admin-fields textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(131, 255, 31, 0.28);
  background: rgba(5, 7, 4, 0.88);
  color: var(--bone-bright);
  font: 700 1rem/1.45 Arial, sans-serif;
  padding: 10px 12px;
}

.admin-fields textarea {
  resize: vertical;
}

.admin-topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: 24px;
  align-items: start;
}

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

.admin-actions .button {
  width: 100%;
}

.admin-help {
  margin: 22px 0;
  padding: 16px;
}

.admin-help p {
  margin: 0;
}

.admin-help p + p {
  margin-top: 8px;
}

.admin-help code {
  color: var(--bone-bright);
  font-weight: 900;
}

.admin-editor {
  display: grid;
  gap: 16px;
}

.admin-post {
  padding: 18px;
}

.admin-post-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}

.admin-post-head h2 {
  margin-top: 4px;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
}

.admin-fields {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(260px, 0.66fr);
  gap: 14px;
}

.wide-field {
  grid-column: 1 / -1;
}

.admin-status {
  min-height: 1.4em;
  margin: 14px 0 0;
  color: var(--acid-hot);
}

.button.danger {
  border-color: rgba(213, 202, 177, 0.35);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

@media (max-width: 880px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .platform-links {
    order: -1;
    width: 100%;
  }

  .hero,
  .music-layout,
  .tour-layout,
  .channel-feature,
  .contact-panel,
  .news-grid,
  .video-grid,
  .archive-row summary {
    grid-template-columns: 1fr;
  }

  .archive-links {
    justify-content: flex-start;
  }

  .archive-text {
    padding-left: 0;
  }

  .youtube-carousel {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 86vw);
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .youtube-video-card {
    scroll-snap-align: start;
  }

  .hero {
    min-height: auto;
    padding-top: 150px;
  }

  .cover-wrap img {
    width: min(440px, 100%);
    margin: 0;
  }

  .tour-date {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .admin-topbar,
  .admin-post-head,
  .admin-fields {
    grid-template-columns: 1fr;
  }

  .admin-actions {
    justify-content: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-video-bg {
    display: none;
  }

  body {
    background:
      radial-gradient(circle at 68% 0%, rgba(84, 184, 14, 0.23), transparent 30rem),
      linear-gradient(180deg, var(--black), #0b0d08 45%, #060805);
  }
}

@media (max-width: 540px) {
  .hero-actions,
  .contact-actions,
  .button {
    width: 100%;
  }

  .scanline {
    left: 72%;
  }

  .news-card,
  .video-card {
    padding: 20px;
  }
}
