:root {
  color-scheme: dark;
  --bg: #060712;
  --bg-soft: #0c1024;
  --panel: rgba(11, 15, 34, 0.84);
  --panel-strong: rgba(17, 22, 48, 0.94);
  --text: #f6fbff;
  --muted: #b7c5d7;
  --cyan: #36e8ff;
  --cyan-soft: rgba(54, 232, 255, 0.16);
  --pink: #ff3aa7;
  --pink-soft: rgba(255, 58, 167, 0.2);
  --red: #ff315b;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 49, 91, 0.22), transparent 32rem),
    radial-gradient(circle at 80% 10%, rgba(54, 232, 255, 0.2), transparent 30rem),
    linear-gradient(180deg, #050510 0%, #0b0920 45%, #050510 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
}

.site-header {
  background: #050510;
  border-bottom: 1px solid rgba(54, 232, 255, 0.32);
  box-shadow: 0 0 42px rgba(255, 58, 167, 0.2);
}

.header-art {
  display: block;
  width: 100%;
  height: auto;
}

.top-menu {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.75rem clamp(1rem, 3vw, 2rem);
  background: rgba(5, 6, 18, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.top-menu a,
.menu-disabled {
  min-height: 2.55rem;
  padding: 0.56rem 1rem;
  border: 1px solid rgba(54, 232, 255, 0.22);
  border-radius: 6px;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.045);
}

.top-menu a:hover,
.top-menu a:focus-visible {
  border-color: var(--cyan);
  background: var(--cyan-soft);
  color: #ffffff;
  outline: none;
  box-shadow: 0 0 22px rgba(54, 232, 255, 0.25);
}

.menu-disabled {
  color: rgba(246, 251, 255, 0.46);
  border-color: rgba(255, 255, 255, 0.1);
}

main {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.intro-section,
.content-section,
.split-section {
  margin: clamp(2rem, 6vw, 5rem) 0;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(1.5rem, 5vw, 4rem);
  padding: clamp(1.5rem, 5vw, 4rem) 0;
}

.intro-copy {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  font-size: clamp(2rem, 5.2vw, 4.8rem);
  text-shadow: 0 0 28px rgba(54, 232, 255, 0.18);
}

h2 {
  font-size: clamp(1.85rem, 3.4vw, 3rem);
}

.lead {
  max-width: 680px;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.quick-links,
.link-panel {
  display: grid;
  gap: 0.75rem;
}

.social-button,
.link-panel a {
  min-width: 12rem;
  padding: 0.9rem 1rem;
  border-radius: 6px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.social-button.instagram,
.link-panel a:nth-child(2) {
  background: linear-gradient(135deg, rgba(255, 58, 167, 0.95), rgba(255, 49, 91, 0.82));
}

.social-button.twitch,
.link-panel a:nth-child(1) {
  background: linear-gradient(135deg, rgba(54, 232, 255, 0.95), rgba(90, 88, 255, 0.72));
  color: #03101a;
}

.content-section,
.split-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 58, 167, 0.08), transparent 42%),
    linear-gradient(315deg, rgba(54, 232, 255, 0.1), transparent 48%),
    var(--panel);
  box-shadow: var(--shadow);
}

.content-section {
  padding: clamp(1.4rem, 4vw, 3rem);
}

.section-heading {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.bio-text {
  display: grid;
  gap: 1rem;
  margin-top: 1.7rem;
  color: var(--muted);
  font-size: 1.03rem;
}

.bio-text p,
.split-section p,
footer p {
  margin: 0;
}

.bio-text strong,
.split-section strong {
  color: var(--text);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 24rem);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1.4rem, 4vw, 2.5rem);
}

.split-section p {
  color: var(--muted);
}

.link-panel a {
  text-transform: none;
  overflow-wrap: anywhere;
}

.release-note {
  padding: 1.25rem;
  border: 1px solid rgba(255, 58, 167, 0.28);
  border-radius: 8px;
  background: var(--panel-strong);
}

.release-note span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--pink);
  font-weight: 900;
  text-transform: uppercase;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 4rem auto 0;
  padding: 1.6rem 0 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

footer p:first-child {
  color: var(--text);
  font-weight: 900;
}

@media (max-width: 820px) {
  .intro-section,
  .split-section {
    grid-template-columns: 1fr;
  }

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

  .social-button,
  .link-panel a {
    min-width: 0;
  }
}

@media (max-width: 560px) {
  main,
  footer {
    width: min(100% - 1rem, 1120px);
  }

  .top-menu {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .top-menu a,
  .menu-disabled {
    flex: 0 0 auto;
  }

  .quick-links {
    grid-template-columns: 1fr;
  }

  .content-section,
  .split-section {
    border-radius: 6px;
  }
}
