@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&display=swap');

:root {
  --black: #000;
  --bone: #e8f1ff;
  --muted: #9fb5d1;
  --ash: #5f779c;
  --blue: #1f7cff;
  --blue-bright: #59a6ff;
  --teal: #00f0ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #000;
  color: var(--bone);
  font-family: "Courier New", Courier, monospace;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  top: 0;
  height: 100vh;
  width: 38vw;
  pointer-events: none;
  z-index: 0;
  background-image: url("https://i.ibb.co/0jWnDqgr/REDACTED-4.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.22;
  filter: brightness(0.65) contrast(1.2) saturate(1.1);
}

body::before {
  left: 0;
  -webkit-mask-image: linear-gradient(to right, black 0%, black 42%, transparent 100%);
  mask-image: linear-gradient(to right, black 0%, black 42%, transparent 100%);
}

body::after {
  right: 0;
  transform: scaleX(-1);
  -webkit-mask-image: linear-gradient(to left, black 0%, black 42%, transparent 100%);
  mask-image: linear-gradient(to left, black 0%, black 42%, transparent 100%);
}

body::selection {
  background: var(--teal);
  color: #000;
}

.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  opacity: 0.06;
  background-image: repeating-radial-gradient(
    circle at 15% 20%,
    rgba(255,255,255,0.25) 0 1px,
    transparent 1px 4px
  );
  animation: noiseMove 0.5s steps(2) infinite;
}

@keyframes noiseMove {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-2%, 1%); }
  100% { transform: translate(1%, -1%); }
}

.light-beam {
  position: fixed;
  top: -20%;
  left: 48%;
  width: 260px;
  height: 120vh;
  background: linear-gradient(
    180deg,
    rgba(89,166,255,0.14),
    rgba(31,124,255,0.03),
    transparent
  );
  transform: rotate(12deg);
  filter: blur(22px);
  pointer-events: none;
  z-index: 1;
}

.page {
  position: relative;
  z-index: 2;
  width: min(1100px, 92%);
  margin: auto;
  padding: 55px 0 35px;
}

.page::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 6;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(0,240,255,0.035) 0px,
      rgba(0,240,255,0.035) 1px,
      transparent 1px,
      transparent 4px
    );
  animation: scanlineJitter 0.25s steps(2) infinite;
}

@keyframes scanlineJitter {
  0% { transform: translateY(0); opacity: 0.18; }
  50% { transform: translateY(2px); opacity: 0.28; }
  100% { transform: translateY(-1px); opacity: 0.2; }
}

.hero {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 70px 24px;
  border: 1px solid rgba(89,166,255,0.22);
  background:
    radial-gradient(circle at center, rgba(31,124,255,0.18), transparent 36%),
    linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.82));
  box-shadow:
    0 30px 90px rgba(0,0,0,0.75),
    0 0 70px rgba(31,124,255,0.16),
    inset 0 0 100px rgba(0,0,0,0.9);
}

h1,
h2,
.kicker,
.section-label,
.link-card span {
  font-family: "Cinzel", serif;
}

h1 {
  margin: 0;
  font-size: clamp(3.8rem, 12vw, 8.5rem);
  line-height: 0.9;
  color: var(--bone);
  letter-spacing: 0;
  text-shadow:
    0 0 20px rgba(0,0,0,0.95),
    0 0 42px rgba(89,166,255,0.22);
  animation: azFlicker 3.6s infinite;
}

@keyframes azFlicker {
  0%, 78%, 100% {
    opacity: 1;
    transform: none;
    letter-spacing: 0;
    filter: none;
  }

  80% {
    opacity: 0.25;
    filter: blur(0.4px);
  }

  81% {
    opacity: 1;
  }

  82% {
    opacity: 0.55;
    text-shadow:
      2px 0 rgba(0,240,255,0.8),
      -2px 0 rgba(255,255,255,0.35);
  }

  83% {
    opacity: 0.12;
  }

  84%, 86% {
    opacity: 1;
  }

  85% {
    opacity: 0.4;
  }
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  color: var(--bone);
  animation: sectionGlitch 5.2s infinite;
}

@keyframes sectionGlitch {
  0%, 88%, 100% {
    transform: none;
    filter: none;
    text-shadow:
      0 0 20px rgba(0,0,0,0.95),
      0 0 42px rgba(89,166,255,0.22);
  }

  90% {
    transform: translate(-2px, 1px);
    filter: blur(0.3px);
    text-shadow:
      2px 0 rgba(0,240,255,0.7),
      -2px 0 rgba(255,255,255,0.3);
  }

  91% {
    transform: translate(2px, -1px);
  }

  92% {
    transform: none;
    filter: none;
  }
}

.kicker,
.section-label {
  color: var(--blue-bright);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 0.78rem;
  animation: signalFlicker 6s infinite;
}

@keyframes signalFlicker {
  0%, 84%, 100% { opacity: 1; }
  85% { opacity: 0.3; }
  88% { opacity: 0.6; }
}

.subtitle {
  max-width: 680px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  animation: textCorrupt 7s infinite;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions a,
.feature a {
  color: var(--bone);
  text-decoration: none;
  padding: 13px 20px;
  border: 1px solid var(--teal);
  background: rgba(0,0,0,0.45);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  font-weight: 800;
  transition: 0.25s ease;
}

.hero-actions a:hover,
.feature a:hover {
  background: var(--bone);
  color: var(--black);
  box-shadow: 0 0 25px rgba(0,240,255,0.35);
}

.bio,
.feature,
.links-section,
.qa,
.merch {
  margin-top: 34px;
  padding: 38px;
  border: 1px solid rgba(0,240,255,0.35);
  background:
    linear-gradient(180deg, rgba(89,166,255,0.06), rgba(255,255,255,0.015)),
    rgba(0,0,0,0.72);
  box-shadow:
    0 25px 60px rgba(0,0,0,0.45),
    inset 0 0 45px rgba(0,240,255,0.03);
}

.bio p,
.feature p,
.qa p,
.merch p {
  max-width: 780px;
  color: var(--muted);
  line-height: 1.9;
  font-size: 1rem;
  animation: textCorrupt 15s infinite;
}

@keyframes textCorrupt {
  0%, 96%, 100% {
    opacity: 1;
    filter: none;
    transform: none;
  }

  97% {
    opacity: 0.6;
    filter: blur(0.4px);
  }

  98% {
    opacity: 1;
  }
}

.feature {
  border-left: 4px solid var(--teal);
}

.feature a {
  display: inline-block;
  margin-top: 10px;
}

.link-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.link-card {
  position: relative;
  min-height: 120px;
  padding: 22px;
  overflow: hidden;
  color: var(--bone);
  text-decoration: none;
  border: 1px solid var(--teal);
  background:
    radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(0,240,255,0.25), transparent 28%),
    linear-gradient(145deg, rgba(17,26,40,0.82), rgba(0,0,0,0.92));
  transition: 0.25s ease;
  animation: cardGlitch 15s infinite;
}

.link-card:nth-child(2n) {
  animation-delay: 1.2s;
}

.link-card:nth-child(3n) {
  animation-delay: 1.4s;
}

.link-card:nth-child(5n) {
  animation-delay: 2.1s;
}

@keyframes cardGlitch {
  0%, 86%, 100% {
    transform: translate(0);
    filter: none;
  }

  87% {
    transform: translate(-2px, 1px);
    filter: brightness(1.3);
  }

  88% {
    transform: translate(2px, -1px);
  }

  89% {
    transform: translate(-1px, 0);
    filter: contrast(1.4);
  }

  90% {
    transform: translate(0);
    filter: none;
  }
}

.link-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(232,241,255,0.12), transparent);
  transform: translateX(-120%);
  transition: 0.45s ease;
}

.link-card:hover::before {
  transform: translateX(120%);
}

.link-card:hover {
  transform: translateY(-6px);
  border-color: var(--teal);
  box-shadow:
    0 0 12px rgba(0,240,255,0.5),
    0 0 28px rgba(0,240,255,0.25),
    0 18px 35px rgba(0,0,0,0.5);
}

.link-card span {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.link-card small {
  display: block;
  margin-top: 12px;
  color: var(--ash);
  line-height: 1.5;
  animation: textCorrupt 15s infinite;
}

.link-card.support,
.link-card.contact,
.link-card.special {
  border-color: var(--teal);
}

.email-text {
  word-break: break-word;
  overflow-wrap: anywhere;
  font-size: 0.72rem;
}

button.link-card {
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.qa h2 {
  margin: 0 0 22px;
}

.qa details {
  border-top: 1px solid rgba(0,240,255,0.25);
  padding: 18px 0;
}

.qa details:last-child {
  border-bottom: 1px solid rgba(0,240,255,0.25);
}

.qa summary {
  cursor: pointer;
  color: var(--bone);
  font-weight: 800;
  letter-spacing: 1px;
}

.qa summary:hover {
  color: var(--teal);
}

.qa p {
  margin: 12px 0 0;
}

.qa details[open] p {
  animation: answerReveal 0.35s ease;
}

@keyframes answerReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.merch {
  text-align: center;
}

.merch p {
  margin-left: auto;
  margin-right: auto;
}

footer {
  margin-top: 36px;
  padding: 28px 0;
  text-align: center;
  color: var(--ash);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

@media (max-width: 800px) {
  body::before,
  body::after {
    width: 55vw;
    opacity: 0.12;
  }

  .page {
    width: 94%;
    padding-top: 24px;
  }

  .hero {
    min-height: 460px;
    padding: 55px 18px;
  }

  .bio,
  .feature,
  .links-section,
  .qa,
  .merch {
    padding: 28px 20px;
  }

  .link-grid {
    grid-template-columns: 1fr;
  }
}
/* MOBILE OPTIMISATION */

@media (max-width: 800px) {
  body::before,
  body::after {
    width: 80vw;
    opacity: 0.08;
    background-position: center top;
  }

  .page {
    width: 94%;
    padding: 22px 0 28px;
  }

  .hero {
    min-height: 420px;
    padding: 48px 18px;
  }

  h1 {
    font-size: clamp(3.1rem, 18vw, 5.5rem);
  }

  h2 {
    font-size: clamp(1.6rem, 9vw, 2.6rem);
  }

  .subtitle {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions a {
    width: 100%;
    text-align: center;
  }

  .bio,
  .feature,
  .links-section,
  .qa,
  .merch {
    padding: 26px 18px;
    margin-top: 24px;
  }

  .link-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .link-card {
    min-height: 105px;
    padding: 20px;
  }

  .link-card span {
    font-size: 1rem;
    letter-spacing: 1.5px;
  }

  .link-card small {
    font-size: 0.78rem;
  }

  .qa summary {
    line-height: 1.5;
  }
}

@media (max-width: 430px) {
  .kicker,
  .section-label {
    letter-spacing: 3px;
    font-size: 0.68rem;
  }

  h1 {
    font-size: 3.25rem;
  }

  .hero {
    min-height: 380px;
  }

  .page::after {
    opacity: 0.45;
  }

  .bio p,
  .feature p,
  .qa p,
  .merch p {
    font-size: 0.92rem;
  }

  footer {
    font-size: 0.75rem;
    line-height: 1.6;
  }
}