:root {
  --bg: #020203;
  --panel: #0a0a10f2;
  --line: #ffffff16;
  --text: #f5f5f7;
  --muted: #9b9ba8;
  --faint: #656575;
  --online: #23a559;
  --idle: #f0b232;
  --dnd: #f23f43;
  --offline: #80848e;
  --display: "Archivo Black", sans-serif;
  --body: "Manrope", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  background: var(--bg);
}

body {
  font-family: var(--body);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  user-select: none;
  -webkit-user-drag: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

#fx-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 0%, #ff2a2a22, transparent 45%),
    radial-gradient(ellipse at 80% 100%, #3b82f618, transparent 40%),
    radial-gradient(ellipse at center, transparent 40%, #020203dd 100%);
}

.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  margin: -210px 0 0 -210px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(circle, #ff2a2a28, transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  mix-blend-mode: screen;
  will-change: transform;
}

body:hover .cursor-glow {
  opacity: 1;
}

.page {
  position: relative;
  z-index: 3;
  width: min(1220px, calc(100% - 1.5rem));
  margin: 0 auto;
  padding: 1.4rem 0 2.5rem;
  display: grid;
  gap: 1rem;
}

/* ——— HERO ——— */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: end;
  min-height: 280px;
  padding: 1.25rem;
  border-radius: 28px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #08080ef0;
  isolation: isolate;
  animation: in 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__banner {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.28) saturate(1.2) contrast(1.1);
  transform: scale(1.05);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, #020203f2 18%, #02020388 55%, #02020333),
    linear-gradient(transparent 30%, #020203ee);
  pointer-events: none;
}

.hero__brand {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.avatar {
  position: relative;
  width: 108px;
  height: 108px;
  flex: 0 0 auto;
}

.avatar img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #1a1a24;
  box-shadow: 0 0 0 1px #ff2a2a44, 0 20px 50px #000000aa;
}

.avatar__deco {
  position: absolute;
  inset: -16%;
  width: 132%;
  height: 132%;
  max-width: none;
  pointer-events: none;
}

.avatar__status {
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid #121218;
  background: var(--offline);
  z-index: 2;
}

.avatar[data-status="online"] .avatar__status {
  background: var(--online);
  box-shadow: 0 0 14px #23a559aa;
}
.avatar[data-status="idle"] .avatar__status {
  background: var(--idle);
}
.avatar[data-status="dnd"] .avatar__status {
  background: var(--dnd);
}

.hero__handle {
  margin: 0 0 0.25rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.4rem, 8vw, 6rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff 20%, #ff9a9a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 10px 30px #ff2a2a33);
}

.hero__activity {
  margin: 0.45rem 0 0;
  color: var(--faint);
  font-size: 0.85rem;
  font-style: italic;
}

.hero[data-status="online"] #status-text {
  color: var(--online);
}
.hero[data-status="idle"] #status-text {
  color: var(--idle);
}
.hero[data-status="dnd"] #status-text {
  color: var(--dnd);
}

.hero__side {
  display: grid;
  gap: 0.7rem;
  justify-items: end;
  align-content: end;
}

.views {
  padding: 0.7rem 0.95rem;
  border-radius: 16px;
  background: #00000066;
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  text-align: right;
}

.views strong {
  display: block;
  font-family: var(--display);
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.views span {
  color: var(--faint);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero__join {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff3b3b, #b40f0f);
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 40px #ff2a2a44;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.hero__join:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.08);
}

/* ——— PATH / LAUFGANG ——— */
.path {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  animation: in 0.9s 0.08s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.peak {
  --c: #fff;
  position: relative;
  min-height: 210px;
  padding: 1.15rem 1.2rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(16px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px #00000077;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.peak::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--c);
  opacity: 0.85;
}

.peak:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--c) 35%, transparent);
  box-shadow: 0 24px 55px #00000088;
}

.peak__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.peak__step {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--faint);
}

.peak__tag {
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--c) 30%, transparent);
  background: color-mix(in srgb, var(--c) 12%, transparent);
  color: color-mix(in srgb, var(--c) 90%, #fff);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.peak__num {
  margin-top: 0.85rem;
  font-family: var(--display);
  font-size: clamp(3.2rem, 6.5vw, 4.4rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: var(--c);
}

.peak__name {
  margin: 0.55rem 0 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.peak__name span {
  color: color-mix(in srgb, var(--c) 75%, #fff);
}

/* ——— BOARD ——— */
.board {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 0.85rem;
  animation: in 1s 0.14s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.panel {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(16px);
  overflow: hidden;
  box-shadow: 0 20px 50px #00000077;
}

.panel--video {
  grid-row: span 2;
  padding: 0.6rem;
}

.video {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: 18px;
  overflow: hidden;
  background: #050508;
}

.video__hit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(1.1);
  transition: transform 0.5s ease, filter 0.3s ease;
}

.video__hit:hover .video__thumb {
  transform: scale(1.05);
  filter: brightness(0.78) saturate(1.15);
}

.video__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 78px;
  height: 78px;
  margin: -39px 0 0 -39px;
  border-radius: 50%;
  background:
    linear-gradient(145deg, #ff4a4a, #b10f0f)
      padding-box,
    linear-gradient(145deg, #ffb0b0, #7a0000) border-box;
  border: 1px solid transparent;
  box-shadow: 0 16px 50px #ff2a2a66;
  transition: transform 0.2s ease;
}

.video__play::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-35%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent #fff;
}

.video__hit:hover .video__play {
  transform: scale(1.07);
}

.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.panel--live {
  padding: 1rem;
}

.live-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.85rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #151522, #0d0d14);
  border: 1px solid #5865f233;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.live-card:hover {
  transform: translateY(-2px);
  border-color: #5865f266;
}

.live-card img {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  object-fit: cover;
}

.live-card strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.live-card span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.live-card i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--online);
  margin-right: 0.3rem;
  box-shadow: 0 0 10px #23a559aa;
  vertical-align: middle;
}

.live-card b {
  font-weight: 800;
  color: var(--text);
}

.panel--links {
  padding: 0.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  align-content: start;
}

.panel--links a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.45rem 0.7rem;
  border-radius: 12px;
  background: #12121a;
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.panel--links a:hover {
  transform: translateY(-2px);
  border-color: #ff2a2a55;
  background: #181822;
}

.panel--links a i {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #ffffff0c;
  flex: 0 0 auto;
}

.panel--links a i::before {
  content: "";
  width: 13px;
  height: 13px;
  background: currentColor;
  mask: var(--ico) center / contain no-repeat;
  -webkit-mask: var(--ico) center / contain no-repeat;
}

[data-i="discord"] {
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M20.3 4.4A19 19 0 0 0 15.7 3l-.3.6a17.5 17.5 0 0 1 4 1.9 16.5 16.5 0 0 0-14.8 0A16 16 0 0 1 8.6 3.6L8.3 3A19.2 19.2 0 0 0 3.7 4.4C.9 9.1.2 13.7.6 18.2A19.4 19.4 0 0 0 6.4 21l1.2-1.6a12.4 12.4 0 0 1-1.9-.9l.5-.4a13.5 13.5 0 0 0 13.6 0l.5.4c-.6.4-1.2.7-1.9.9L17.6 21a19.3 19.3 0 0 0 5.8-2.8c.5-5.1-.8-9.6-3.1-13.8ZM8.5 15.3c-1.1 0-2-1-2-2.2s.9-2.2 2-2.2 2 1 2 2.2-.9 2.2-2 2.2Zm7 0c-1.1 0-2-1-2-2.2s.9-2.2 2-2.2 2 1 2 2.2-.9 2.2-2 2.2Z'/%3E%3C/svg%3E");
  color: #7289da;
}
[data-i="twitch"] {
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M4 2 2 5v15h5v3l3-3h4l7-7V2H4zm15 10-3 3h-4l-3 3v-3H6V4h13v8zM15 7h2v5h-2V7zm-5 0h2v5h-2V7z'/%3E%3C/svg%3E");
  color: #bf94ff;
}
[data-i="tiktok"] {
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M21 8.2a7.4 7.4 0 0 1-4.7-1.7v7.3a6.5 6.5 0 1 1-5.6-6.4v2.9a3.6 3.6 0 1 0 2.7 3.5V2h2.8c.3 1.8 1.6 3.4 3.3 4.2L21 8.2z'/%3E%3C/svg%3E");
}
[data-i="instagram"] {
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5zm0 2a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3H7zm5 3.5A4.5 4.5 0 1 1 7.5 12 4.5 4.5 0 0 1 12 7.5zm0 2A2.5 2.5 0 1 0 14.5 12 2.5 2.5 0 0 0 12 9.5zM17.8 6a1.2 1.2 0 1 1-1.2 1.2A1.2 1.2 0 0 1 17.8 6z'/%3E%3C/svg%3E");
  color: #f472b6;
}
[data-i="youtube"] {
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M23.5 7.2a3 3 0 0 0-2.1-2.1C19.5 4.5 12 4.5 12 4.5s-7.5 0-9.4.6A3 3 0 0 0 .5 7.2 31.5 31.5 0 0 0 0 12a31.5 31.5 0 0 0 .5 4.8 3 3 0 0 0 2.1 2.1c1.9.6 9.4.6 9.4.6s7.5 0 9.4-.6a3 3 0 0 0 2.1-2.1A31.5 31.5 0 0 0 24 12a31.5 31.5 0 0 0-.5-4.8zM9.8 15.5v-7l6.3 3.5-6.3 3.5z'/%3E%3C/svg%3E");
  color: #ff5c5c;
}
[data-i="doc"] {
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6zm1 7V3.5L19.5 9H15zM8 13h8v2H8v-2zm0 4h8v2H8v-2zm0-8h5v2H8V9z'/%3E%3C/svg%3E");
  color: #fdba74;
}

@keyframes in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .cursor-glow {
    display: none;
  }
}

@media (max-width: 980px) {
  .path {
    grid-template-columns: 1fr;
  }

  .board {
    grid-template-columns: 1fr;
  }

  .panel--video {
    grid-row: auto;
  }

  .video {
    min-height: 220px;
    aspect-ratio: 16 / 9;
    height: auto;
  }
}

@media (max-width: 640px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero__side {
    justify-items: stretch;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

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

  .cursor-glow {
    display: none;
  }
}
