:root {
  --bg: #07070b;
  --card: rgba(12, 12, 18, 0.72);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.65);
  --muter: rgba(255, 255, 255, 0.45);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  --radius: 22px;
  --accent1: rgba(99, 102, 241, 1);
  --accent2: rgba(34, 197, 94, 1);
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* Background FX */
.bg { position: fixed; inset: 0; z-index: -2; }
.noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  opacity: .14;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.scanlines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.04) 0px,
    rgba(255,255,255,0.04) 1px,
    rgba(0,0,0,0) 3px,
    rgba(0,0,0,0) 6px
  );
  opacity: .08;
  pointer-events: none;
}
.glow-orb {
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 999px;
  filter: blur(60px);
  opacity: .20;
  transform: translate3d(0,0,0);
}
.orb-1 { left: -220px; top: -260px; background: radial-gradient(circle, var(--accent1), transparent 60%); }
.orb-2 { right: -260px; bottom: -320px; background: radial-gradient(circle, var(--accent2), transparent 60%); }

/* Layout */
.top {
  max-width: 1100px;
  margin: 0 auto;
  padding: 34px 18px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px 44px;
}

/* Brand */
.brand { display: flex; align-items: center; gap: 18px; }
.logoHero {
  height: 110px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,0.55));
}
.brand-title { font-weight: 950; letter-spacing: .2px; font-size: 24px; line-height: 1.05; }
.brand-sub { font-size: 14px; color: var(--muted); margin-top: 6px; line-height: 1.15; }

@media (min-width: 900px) {
  .top { padding: 40px 18px 14px; }
  .logoHero { height: 150px; }
  .brand-title { font-size: 30px; }
  .brand-sub { font-size: 16px; }
}

/* Pills */
.pill-row { display: flex; gap: 10px; align-items: center; }
.pill {
  font-size: 11px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  white-space: nowrap;
}
.pill-live { color: rgba(52,211,153,.95); border-color: rgba(52,211,153,.20); background: rgba(52,211,153,.10); }
.pill-soon { color: rgba(251,191,36,.95); border-color: rgba(251,191,36,.20); background: rgba(251,191,36,.10); }

/* DTC pill (clickable) */
.pill-dtc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(255,255,255,0.90);
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.045);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, filter .18s ease;
}
.pill-dtc:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  filter: saturate(1.05);
}
.pill-icon {
  width: 16px;
  height: 16px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.35));
}

/* Hero */
.hero { padding: 16px 0 14px; }
.headline { font-size: clamp(34px, 5.2vw, 62px); line-height: 1.03; margin: 10px 0 10px; letter-spacing: -0.7px; }
.accent {
  background: linear-gradient(90deg, rgba(34,197,94,1), rgba(99,102,241,1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.subhead { margin: 0; max-width: 820px; color: var(--muted); font-size: 16px; line-height: 1.6; }

/* Section */
.section { margin-top: 18px; }
.section-head { margin: 18px 0 10px; }
.section-title { margin: 0; font-size: 16px; letter-spacing: .2px; font-weight: 950; }
.section-sub { margin: 6px 0 0; color: rgba(255,255,255,0.60); font-size: 13px; line-height: 1.45; }

/* Grid */
.grid { margin-top: 14px; display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }

/* Cards */
.card {
  grid-column: span 12;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.03) inset;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  position: relative;
  transform: translateZ(0);
  transition: transform .20s ease, border-color .20s ease, box-shadow .20s ease, filter .20s ease;
}
button.card { width: 100%; padding: 0; text-align: left; font: inherit; cursor: pointer; }
.card:focus-visible { outline: none; box-shadow: 0 0 0 2px rgba(99,102,241,.5), 0 0 0 1px rgba(255,255,255,0.03) inset; }
.card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.10), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(99,102,241,.18), transparent 55%),
    radial-gradient(circle at 30% 90%, rgba(34,197,94,.14), transparent 60%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.card:hover::before { opacity: 1; }
.card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: var(--border-strong);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,0.04) inset;
  filter: saturate(1.05);
}

/* Posters */
.card-top { padding: 14px 14px 0; }
.poster {
  height: 220px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.35) inset;
}
.poster-media {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,0.22);
}
.poster-video,
.poster-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  padding: 0;
  transform: none;
  filter: saturate(1.06) contrast(1.03) brightness(0.98);
  transition: filter .25s ease;
}
.card:hover .poster-video,
.card:hover .poster-img { filter: saturate(1.12) contrast(1.05) brightness(1.04); }

/* Shine sweep */
.poster::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.10) 45%, transparent 55%);
  transform: translateX(-35%) rotate(10deg);
  opacity: 0;
  transition: opacity .25s ease, transform .45s ease;
  pointer-events: none;
}
.card:hover .poster::before { opacity: 1; transform: translateX(35%) rotate(10deg); }

.poster-overlay {
  position: absolute;
  inset: 0;
  padding: 12px 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  background: linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,.20), rgba(0,0,0,0));
}

.poster-badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .6px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
}
.poster-badge.live { border-color: rgba(52,211,153,.25); background: rgba(52,211,153,.12); color: rgba(52,211,153,.95); }
.poster-badge.soon { border-color: rgba(251,191,36,.25); background: rgba(251,191,36,.12); color: rgba(251,191,36,.95); }
.poster-badge.pvp  { border-color: rgba(96,165,250,.25); background: rgba(96,165,250,.12); color: rgba(96,165,250,.95); }

.poster-titleRow { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.poster-title { font-size: 20px; font-weight: 950; letter-spacing: .2px; text-shadow: 0 8px 22px rgba(0,0,0,.55); }
.poster-tagline { font-size: 12px; color: rgba(255,255,255,.84); }

/* Chain icons */
.chainIcons { display: inline-flex; align-items: center; gap: 6px; }
.chainIcon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 3px;
  object-fit: contain;
  box-shadow: 0 10px 22px rgba(0,0,0,.35);
  transition: transform .25s ease;
}
.card:hover .chainIcon { transform: translateY(-1px); }

/* Coming soon = real posters but hidden with fog */
.poster-mist .poster-img {
  filter: saturate(0.70) contrast(0.92) brightness(0.62) blur(1.4px);
  opacity: 0.78;
}
.card-soon:hover .poster-mist .poster-img {
  filter: saturate(0.85) contrast(0.98) brightness(0.72) blur(1.0px);
  opacity: 0.82;
}

/* Mist layer (animated, subtle) */
.mist {
  position: absolute;
  inset: -30%;
  pointer-events: none;
  opacity: 0.95;
  mix-blend-mode: screen;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.12), transparent 55%),
    radial-gradient(circle at 70% 35%, rgba(99,102,241,0.12), transparent 60%),
    radial-gradient(circle at 45% 70%, rgba(34,197,94,0.10), transparent 62%),
    linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.08), rgba(0,0,0,0));
  filter: blur(10px);
  transform: translate3d(-6%, 0, 0);
  animation: mistDrift 10.5s ease-in-out infinite;
}
.card-soon:hover .mist { opacity: 0.98; filter: blur(9px); }

@keyframes mistDrift {
  0%   { transform: translate3d(-7%, 1%, 0) scale(1.02); }
  50%  { transform: translate3d(7%, -1%, 0) scale(1.05); }
  100% { transform: translate3d(-7%, 1%, 0) scale(1.02); }
}

/* Tiny grain over coming soon posters */
.poster-mist::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

/* Soon cards feel "locked" */
.card-soon:hover { filter: saturate(1.02) brightness(1.02); }
.card-soon .poster { border-color: rgba(251,191,36,.12); }
.card-soon .cta { background: rgba(251,191,36,.06); border-color: rgba(251,191,36,.12); }

/* Body / meta / CTA */
.card-body { padding: 14px 16px 16px; }
.desc { margin: 0 0 12px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.meta {
  display: grid;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.22);
}
.meta-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.k { font-size: 11px; color: var(--muter); letter-spacing: .4px; }
.v { font-size: 12px; color: rgba(255,255,255,0.88); font-weight: 800; }
.cta {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
}
.cta-text { font-weight: 950; letter-spacing: .2px; }
.cta-arrow { opacity: .9; transition: transform .2s ease; }
.card:hover .cta-arrow { transform: translateX(4px); }
.cta.muted { opacity: .70; }

/* Responsive columns */
@media (min-width: 680px) { .card { grid-column: span 6; } }
@media (min-width: 980px) { .card { grid-column: span 4; } }

/* PVP feature card + poster 2x bigger */
.pvp-grid .card { grid-column: span 12; }
.poster-pvp { height: 440px; }
@media (min-width: 980px) { .poster-pvp { height: 520px; } }

/* Footer */
.footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 18px; color: rgba(255,255,255,0.55); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; gap: 12px; font-size: 12px; }

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  background: rgba(10,10,16,0.78);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 16px 50px rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
  font-size: 13px;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .card, .cta-arrow, .toast, .poster-img, .poster-video, .chainIcon, .mist { transition: none !important; animation: none !important; }
  .scanlines { display: none; }
}