:root {
  --bg1: #0b0520;
  --bg2: #090a3a;

  --ink: #07070a;
  --paper: #f7f3ff;

  --neon1: #00f5ff;
  --neon2: #ff2bd6;
  --neon3: #ffe347;
  --neon4: #7cff6b;

  --border: 5px solid rgba(0, 0, 0, 0.8);
  --radius: 18px;

  --shadow: 0 18px 0 rgba(0, 0, 0, 0.25);
  --shadowSoft: 0 18px 40px rgba(0, 0, 0, 0.35);

  --maxw: 980px;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  color: var(--paper);
  background: linear-gradient(135deg, var(--bg1), var(--bg2));
  overflow-x: hidden;
  font-family: "Oxanium", system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial;
  position: relative;
}

/* Gradient layer 1 */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
      1100px 700px at 20% 10%,
      rgba(255, 43, 214, 0.35),
      transparent 55%
    ),
    radial-gradient(
      900px 600px at 80% 15%,
      rgba(0, 245, 255, 0.3),
      transparent 55%
    ),
    radial-gradient(
      900px 700px at 60% 85%,
      rgba(255, 227, 71, 0.26),
      transparent 60%
    );
  animation: bgLayer1 60s ease-in-out infinite;
}

@keyframes bgLayer1 {
  0%,
  100% {
    opacity: 1;
  }
  33%,
  66% {
    opacity: 0;
  }
}

/* Gradient layer 2 */
.bg-layer-2 {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
      1100px 700px at 25% 15%,
      rgba(0, 245, 255, 0.32),
      transparent 55%
    ),
    radial-gradient(
      900px 600px at 75% 20%,
      rgba(124, 255, 107, 0.28),
      transparent 55%
    ),
    radial-gradient(
      900px 700px at 55% 80%,
      rgba(255, 43, 214, 0.24),
      transparent 60%
    );
  animation: bgLayer2 60s ease-in-out infinite;
}

@keyframes bgLayer2 {
  0%,
  100% {
    opacity: 0;
  }
  16%,
  50% {
    opacity: 1;
  }
  66% {
    opacity: 0;
  }
}

/* Gradient layer 3 */
.bg-layer-3 {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
      1100px 700px at 18% 12%,
      rgba(124, 255, 107, 0.3),
      transparent 55%
    ),
    radial-gradient(
      900px 600px at 82% 18%,
      rgba(255, 227, 71, 0.28),
      transparent 55%
    ),
    radial-gradient(
      900px 700px at 62% 88%,
      rgba(0, 245, 255, 0.25),
      transparent 60%
    );
  animation: bgLayer3 60s ease-in-out infinite;
}

@keyframes bgLayer3 {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 0;
  }
  50%,
  83% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Gradient layer 4 */
.bg-layer-4 {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
      1100px 700px at 22% 8%,
      rgba(255, 227, 71, 0.33),
      transparent 55%
    ),
    radial-gradient(
      900px 600px at 78% 12%,
      rgba(255, 43, 214, 0.29),
      transparent 55%
    ),
    radial-gradient(
      900px 700px at 58% 82%,
      rgba(124, 255, 107, 0.27),
      transparent 60%
    );
  animation: bgLayer4 60s ease-in-out infinite;
}

@keyframes bgLayer4 {
  0%,
  16% {
    opacity: 0;
  }
  33% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  66%,
  100% {
    opacity: 1;
  }
}

/* faint scanline vibe */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.035),
    rgba(255, 255, 255, 0.035) 1px,
    rgba(0, 0, 0, 0) 3px,
    rgba(0, 0, 0, 0) 7px
  );
  mix-blend-mode: overlay;
  opacity: 0.65;
}

.wrap {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 54px 20px 44px;
  display: grid;
  gap: 18px;
  min-height: 100%;
}

/* top-right sticker kept; top-left removed per request */
.sticker {
  position: fixed;
  z-index: 1;
  transform: rotate(var(--rot));
  border: var(--border);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.35);
  color: rgba(0, 0, 0, 0.9);
  background: linear-gradient(135deg, var(--neon1), var(--neon4));
  font-family: "Bungee", system-ui, sans-serif;
  font-size: 12px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.sticker:hover {
  filter: brightness(1.15) saturate(1.1);
  transform: rotate(calc(var(--rot) - 2deg)) scale(1.05);
  box-shadow: 0 14px 0 rgba(0, 0, 0, 0.4);
}
.sticker:active {
  transform: rotate(calc(var(--rot) + 1deg)) scale(0.98) translateY(6px);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
  filter: brightness(1);
}
.sticker.two {
  top: 22px;
  right: 18px;
  --rot: 8deg;
}

header {
  display: grid;
  gap: 14px;
  justify-items: start;
  padding-top: 12px;
}

.brandRow {
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.mark {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  border: 4px solid rgba(0, 0, 0, 0.85);
  background: conic-gradient(
    from 180deg,
    var(--neon2),
    var(--neon1),
    var(--neon3),
    var(--neon4),
    var(--neon2)
  );
  position: relative;
  box-shadow: 0 12px 0 rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.mark:hover {
  filter: brightness(1.15) saturate(1.1);
  transform: translateY(-2px) rotate(-3deg);
  box-shadow: 0 16px 0 rgba(0, 0, 0, 0.3);
}
.mark:active {
  transform: translateY(8px) rotate(2deg);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.15);
  filter: brightness(0.95);
}
.mark::after {
  content: "?";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 30px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.88);
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.3);
  font-family: "Bungee", system-ui, sans-serif;
}

h1 {
  margin: 0;
  font-family: "Bungee", system-ui, sans-serif;
  font-size: clamp(42px, 6vw, 72px); /* larger title */
  line-height: 1;
  letter-spacing: 0.02em;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.6), 0 18px 42px rgba(0, 0, 0, 0.35);
}

/* Prominent tagline callout */
.taglineCallout {
  display: inline-block;
  margin: 0 auto;
  padding: 12px 14px;
  border-radius: 999px;
  border: 4px solid rgba(0, 0, 0, 0.8);
  background: linear-gradient(
    135deg,
    rgba(255, 227, 71, 0.26),
    rgba(0, 245, 255, 0.18)
  );
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.22);
  font-weight: 800;
  font-size: clamp(15px, 1.8vw, 20px);
  letter-spacing: 0.01em;
  backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.55);
  max-height: 3em;
}

.grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1.1fr 0.9fr;
  margin-top: 8px;
}
@media (max-width: 860px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .wrap {
    padding-top: 32px;
  }
  .sticker {
    display: none;
  }
  .taglineCallout {
    max-height: 5em;
  }
}

/* Remove white card backgrounds: use translucent dark panels */
.panel {
  border-radius: var(--radius);
  border: var(--border);
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.38),
    rgba(255, 255, 255, 0.06)
  );
  box-shadow: var(--shadowSoft);
  padding: 18px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.panel::before {
  content: "";
  position: absolute;
  inset: -40px -40px auto auto;
  width: 280px;
  height: 280px;
  transform: rotate(18deg);
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.1) 10px,
    rgba(255, 255, 255, 0) 10px,
    rgba(255, 255, 255, 0) 20px
  );
  border: 5px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  opacity: 0.55;
  pointer-events: none;
  animation: panelFloat 20s ease-in-out infinite;
}

@keyframes panelFloat {
  0%,
  100% {
    transform: rotate(18deg) translate(0, 0);
  }
  25% {
    transform: rotate(22deg) translate(8px, -6px);
  }
  50% {
    transform: rotate(14deg) translate(-6px, 8px);
  }
  75% {
    transform: rotate(20deg) translate(6px, 6px);
  }
}

.status {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 4px solid rgba(0, 0, 0, 0.85);
  background: linear-gradient(135deg, var(--neon1), var(--neon3));
  font-family: "Bungee", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.25);
  color: rgba(0, 0, 0, 0.92);
  font-size: 12px;
  cursor: default;
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}
.badge:hover {
  filter: brightness(1.15) saturate(1.1);
  transform: translateY(-1px);
  box-shadow: 0 12px 0 rgba(0, 0, 0, 0.28);
}
.badge:active {
  transform: translateY(6px);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.15);
  filter: brightness(1.05);
}

.subbadge {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(
    135deg,
    rgba(255, 43, 214, 0.18),
    rgba(0, 245, 255, 0.16)
  );
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.55);
  cursor: default;
  transition: background 0.12s ease, border-color 0.12s ease,
    transform 0.12s ease;
}
.subbadge:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 43, 214, 0.28),
    rgba(0, 245, 255, 0.26)
  );
  border-color: rgba(255, 255, 255, 0.45);
  transform: scale(1.02);
}
.subbadge:active {
  background: linear-gradient(
    135deg,
    rgba(255, 43, 214, 0.15),
    rgba(0, 245, 255, 0.13)
  );
  transform: scale(0.98);
}

.big {
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
  max-width: 70ch;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.55);
}

/* Social badge grid */
.socialGrid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 10px;
}
@media (max-width: 520px) {
  .socialGrid {
    grid-template-columns: 1fr;
  }
}

.socialBadge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 999px;
  border: 4px solid rgba(0, 0, 0, 0.85);
  text-decoration: none;
  color: rgba(0, 0, 0, 0.9);
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.25);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease,
    border-color 0.12s ease;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.92),
    rgba(255, 255, 255, 0.74)
  );
}
.socialBadge:hover {
  filter: brightness(1.08) saturate(1.15) contrast(1.05);
  transform: translateY(-2px);
  box-shadow: 0 14px 0 rgba(0, 0, 0, 0.28);
  border-color: rgba(0, 0, 0, 0.95);
}
.socialBadge:active {
  transform: translateY(8px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.15);
  filter: brightness(0.95) saturate(1.2);
}

.socialLeft {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.socialName {
  font-family: "Bungee", system-ui, sans-serif;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hint {
  display:none;
  font-weight: 900;
  opacity: 0.72;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 11px;
  font-family: "Oxanium", system-ui, sans-serif;
}

/* Icon puck */
.iconPuck {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 4px solid rgba(0, 0, 0, 0.85);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.18);
  background: conic-gradient(
    from 180deg,
    var(--neon2),
    var(--neon1),
    var(--neon3),
    var(--neon4),
    var(--neon2)
  );
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}
.socialBadge:hover .iconPuck {
  filter: brightness(1.12) saturate(1.2);
  transform: scale(1.05);
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.22);
}
.socialBadge:active .iconPuck {
  transform: scale(0.98);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
}
.iconPuck svg {
  width: 18px;
  height: 18px;
  fill: rgba(0, 0, 0, 0.9);
  transition: fill 0.12s ease;
}

/* Per-network accent tints (kept subtle so text stays readable) */
.x {
  background: linear-gradient(
    135deg,
    rgba(0, 245, 255, 0.92),
    rgba(255, 255, 255, 0.86)
  );
}
.fb {
  background: linear-gradient(
    135deg,
    rgba(124, 255, 107, 0.86),
    rgba(255, 255, 255, 0.86)
  );
}
.ig {
  background: linear-gradient(
    135deg,
    rgba(255, 43, 214, 0.7),
    rgba(255, 227, 71, 0.8)
  );
}
.li {
  background: linear-gradient(
    135deg,
    rgba(0, 245, 255, 0.7),
    rgba(255, 43, 214, 0.55)
  );
}
.bsky {
  background: linear-gradient(
    135deg,
    rgba(255, 227, 71, 0.86),
    rgba(124, 255, 107, 0.72)
  );
}
.threads {
  background: linear-gradient(
    135deg,
    rgba(160, 96, 240, 0.85),
    rgba(124, 255, 107, 0.65)
  );
}

footer {
  margin-top: auto;
  padding-top: 18px;
  opacity: 0.92;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.55);
}
footer a {
  color: var(--paper);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color 0.12s ease, text-shadow 0.12s ease,
    text-decoration-color 0.12s ease;
}
footer a:hover {
  color: var(--neon1);
  text-shadow: 0 0 12px rgba(0, 245, 255, 0.6), 0 2px 0 rgba(0, 0, 0, 0.55);
  text-decoration-color: var(--neon1);
}
footer a:active {
  color: var(--neon2);
  text-shadow: 0 0 8px rgba(255, 43, 214, 0.5), 0 1px 0 rgba(0, 0, 0, 0.55);
  text-decoration-color: var(--neon2);
}

a:focus-visible {
  outline: 4px solid var(--neon3);
  outline-offset: 3px;
  border-radius: 999px;
}
