:root {
  --bg: #05070e;
  --bg-alt: #0b0f1e;
  --card: rgba(255, 255, 255, 0.04);
  --card-strong: rgba(255, 255, 255, 0.08);
  --stroke: rgba(255, 255, 255, 0.08);
  --accent: #7c3aed;
  --accent-2: #22d3ee;
  --accent-3: #f472b6;
  --text: #f8fafc;
  --muted: #9aa4b2;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --shadow: 0 25px 60px rgba(8, 11, 25, 0.5);
  --glow: 0 0 35px rgba(124, 58, 237, 0.35);
  --bg-image: url("/static/los-santos.jpg");
--city-downtown: url("/static/miasto1.jpg");
--city-vinewood: url("/static/miasto2.jpg");
--city-port: url("/static/miasto3.jpg");
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
}

.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.bg__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.2), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(34, 211, 238, 0.15), transparent 35%),
    radial-gradient(circle at 70% 80%, rgba(244, 114, 182, 0.12), transparent 40%);
  opacity: 0.9;
}

.bg__photo {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(5, 7, 14, 0.6), rgba(5, 7, 14, 0.9)), var(--bg-image);
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  filter: saturate(1.1) contrast(1.05);
}

.bg__orb {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.7;
}

.bg__orb--a { top: -120px; left: -80px; background: rgba(124, 58, 237, 0.4); }
.bg__orb--b { top: 30%; right: -180px; background: rgba(34, 211, 238, 0.35); }
.bg__orb--c { bottom: -160px; left: 30%; background: rgba(244, 114, 182, 0.3); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { line-height: 1.1; font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.8rem, 4vw, 4rem); margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 3vw, 3rem); margin-bottom: 16px; }
p { color: var(--muted); margin-bottom: 24px; font-size: 1.05rem; }
a { text-decoration: none; color: inherit; transition: 0.2s; }

.title-gradient {
  background: linear-gradient(120deg, #fff, #c4b5fd, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
}

.btn--primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: white;
  background-size: 200% 200%;
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.35);
  animation: gradientShift 6s ease infinite;
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(124, 58, 237, 0.45); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); }

.btn--wide { width: 100%; }
.btn--small { padding: 8px 16px; font-size: 0.85rem; }

.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(6, 9, 19, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 14px 0;
}

.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: block;
  object-fit: contain;
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.35);
}
.brand__text { display: flex; flex-direction: column; }
.brand__text span { font-weight: 700; font-size: 1.1rem; }
.brand__text small { color: var(--muted); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; }

.nav { display: flex; gap: 16px; flex-wrap: nowrap; }
.nav a { color: var(--muted); font-weight: 500; font-size: 0.82rem; white-space: nowrap; }
.nav a:hover { color: white; }

.topbar__actions { display: flex; gap: 12px; }

.hero { padding-top: 160px; padding-bottom: 80px; min-height: 100vh; display: flex; align-items: center; }
.hero__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }

.pill {
  display: inline-flex;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.12);
  color: #d9c6ff;
  border: 1px solid rgba(124, 58, 237, 0.25);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 22px;
}
.pill--alt {
  background: rgba(34, 211, 238, 0.14);
  border-color: rgba(34, 211, 238, 0.35);
  color: #b6f3ff;
  margin-bottom: 0;
}

.hero__actions { display: flex; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.hero__lead { font-size: 1.15rem; }

.hero__meta { display: flex; gap: 12px; flex-wrap: wrap; }
.meta-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  min-width: 110px;
}
.meta-pill__value { font-weight: 700; font-size: 1.1rem; }
.meta-pill__label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

.hero__panel { display: flex; flex-direction: column; gap: 18px; }
.hero__strip {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}
.hero__strip-tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(244, 114, 182, 0.2);
  color: #fbcfe8;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero__strip-link {
  color: #c4b5fd;
  font-weight: 600;
}

.hero__kpi {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 8px;
}
.kpi-card {
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.kpi-card__value { font-weight: 700; font-size: 1.05rem; }
.kpi-card__label { display: block; color: var(--muted); font-size: 0.75rem; }

.hero__stack {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}
.stack-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.stack-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(124, 58, 237, 0.2);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
}
.stack-item__icon--bolt {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M13 2L3 14h7l-1 8 12-14h-7l-1-6z'/%3E%3C/svg%3E");
}
.stack-item__icon--lab {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 2h6v2h-1v4.17l4.95 7.42A3 3 0 0 1 16.45 20H7.55a3 3 0 0 1-2.5-4.41L10 8.17V4H9V2z'/%3E%3C/svg%3E");
}
.stack-item__icon--city {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M3 21V9l6-4v4l6-4v4l6-4v16H3z'/%3E%3C/svg%3E");
}
.stack-item strong { display: block; font-size: 0.95rem; }
.stack-item span { display: block; font-size: 0.85rem; color: var(--muted); }

.panel-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.panel-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.ghost-chip {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.75rem;
  color: var(--muted);
  cursor: pointer;
}

.panel-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.badge-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.badge-card__title { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.badge-card__value { font-weight: 600; }

.section { padding: 100px 0; }
.section--alt { background: linear-gradient(180deg, rgba(6, 9, 19, 0.7), rgba(8, 11, 25, 0.9)); }
.section--cta { text-align: center; background: linear-gradient(180deg, rgba(124, 58, 237, 0.05), rgba(34, 211, 238, 0.05)); }
.section--glow { background: linear-gradient(180deg, rgba(124, 58, 237, 0.08), rgba(34, 211, 238, 0.04)); }
.section__header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section__header p { font-size: 1.1rem; }
.eyebrow {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.12);
  color: #b6f3ff;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.spotlight {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
}
.spotlight__main {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.spotlight__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 22px;
}
.spotlight__stats div {
  text-align: center;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.spotlight__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.scene-card {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s ease;
}
.scene-card:hover { transform: translateY(-4px); }
.scene-card--accent {
  background: linear-gradient(140deg, rgba(124, 58, 237, 0.18), rgba(34, 211, 238, 0.14));
  border-color: rgba(124, 58, 237, 0.4);
}
.scene-card__tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #c4b5fd;
}
.scene-card__meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--muted);
}

.cityline {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
}
.cityline__intro {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.cityline__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cityline__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.cityline__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
}
.cityline__card--main { grid-column: span 2; }
.cityline__media {
  height: 160px;
  display: grid;
  place-items: end start;
  padding: 16px;
  background: linear-gradient(160deg, rgba(6, 8, 18, 0.25), rgba(6, 8, 18, 0.75)), var(--city-photo);
  background-size: cover;
  background-position: center;
  font-weight: 700;
}
.cityline__media--downtown { --city-photo: var(--city-downtown); background-position: center; }
.cityline__media--vinewood { --city-photo: var(--city-vinewood); background-position: center top; }
.cityline__media--port { --city-photo: var(--city-port); background-position: center bottom; }
.cityline__content { padding: 18px; }
.cityline__content p { margin: 0; }

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.story-card {
  padding: 26px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--glow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.story-card--primary {
  background: linear-gradient(140deg, rgba(124, 58, 237, 0.2), rgba(34, 211, 238, 0.18));
  border-color: rgba(124, 58, 237, 0.4);
}
.story-card__index {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.story-card p { margin: 0; }
.story-card__footer {
  display: flex;
  justify-content: space-between;
  color: #d8b4fe;
  font-weight: 600;
  font-size: 0.85rem;
}

.devlog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.devlog-empty {
  margin-top: 18px;
  text-align: center;
  color: var(--muted);
  display: none;
}
.devlog-empty__logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  opacity: 0.8;
  filter: drop-shadow(0 14px 30px rgba(124, 58, 237, 0.35));
}
.devlog-card {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow);
}
.devlog-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.devlog-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.devlog-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
}
.devlog-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.devlog-card__name { font-weight: 700; }
.devlog-card__date { font-size: 0.8rem; color: var(--muted); }
.devlog-card__content {
  color: #e2e8f0;
  font-size: 0.98rem;
  line-height: 1.55;
  white-space: pre-wrap;
}
.devlog-card__image {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.devlog-card__link {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.35);
  font-size: 0.75rem;
  color: #d8b4fe;
}

.experience {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.experience__content p { font-size: 1.08rem; }
.experience__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 18px; }

.feature-list { display: grid; gap: 14px; margin-bottom: 24px; }
.feature-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.feature-card h3 { margin-bottom: 6px; font-size: 1rem; }
.feature-card p { margin: 0; font-size: 0.95rem; }
.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(124, 58, 237, 0.18);
  font-size: 1.4rem;
}

.experience__showcase { display: grid; gap: 18px; }

.trailer-card {
  position: relative;
  padding: 28px;
  border-radius: 24px;
  background: rgba(8, 11, 25, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.trailer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(124, 58, 237, 0.2), rgba(34, 211, 238, 0.2), rgba(244, 114, 182, 0.2));
  opacity: 0.5;
  pointer-events: none;
  mix-blend-mode: screen;
}
.trailer-card > * { position: relative; }
.trailer-card__top { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 18px; }
.chip--ghost {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  color: var(--muted);
}

.play-button {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: white;
  font-size: 1.6rem;
  display: grid;
  place-items: center;
  margin: 18px 0 24px;
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.45);
  cursor: pointer;
  transition: transform 0.2s ease;
  position: relative;
}
.play-button:hover { transform: scale(1.05); }
.play-button::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(124, 58, 237, 0.6);
  box-shadow: 0 0 35px rgba(34, 211, 238, 0.6);
  animation: pulse 2s infinite;
  opacity: 0.7;
}

.signal-list { display: grid; gap: 10px; margin-bottom: 22px; }
.signal {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}
.signal strong { color: #e9d5ff; font-weight: 600; }
.signal__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22d3ee;
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.8);
  animation: pulse 2s infinite;
}

.trailer-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.trailer-stats div {
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}
.stat__value { display: block; font-weight: 700; font-size: 1.05rem; }
.stat__label { display: block; color: var(--muted); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; }

.marquee {
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}
.marquee__track {
  display: flex;
  gap: 28px;
  padding: 14px 24px;
  width: max-content;
  animation: marquee 18s linear infinite;
}
.marquee__track span {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.trailer-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
}
.trailer-modal.is-open { display: flex; }
.trailer-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 9, 19, 0.75);
  backdrop-filter: blur(10px);
}
.trailer-modal__content {
  position: relative;
  z-index: 1;
  width: min(960px, 92vw);
  background: rgba(8, 11, 25, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.trailer-modal__frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
}
.trailer-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.trailer-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  cursor: pointer;
}

.split__cards { display: grid; gap: 18px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
}

.glass-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  padding: 26px;
  border-radius: 20px;
  transition: all 0.25s ease;
}
.glass-card:hover { transform: translateY(-4px); background: var(--card-strong); border-color: rgba(255,255,255,0.18); }
.glass-card__icon { font-size: 1.8rem; margin-bottom: 12px; }
.glass-card__title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.glass-card__text { font-size: 0.95rem; color: var(--muted); margin: 0; }

.factions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.faction-card { background: var(--card); padding: 26px; border-radius: 20px; border: 1px solid var(--stroke); text-align: left; transition: 0.3s; }
.faction-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.18); }
.faction-card__icon { font-size: 2.4rem; margin-bottom: 16px; }
.faction-card h3 { margin-bottom: 10px; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, 240px); gap: 20px; justify-content: center; }
.team-card { background: var(--card); padding: 22px; border-radius: 18px; border: 1px solid var(--stroke); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; transition: 0.2s; }
.team-card:hover { transform: translateY(-4px); background: var(--card-strong); }
.team-card__avatar { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: rgba(255,255,255,0.08); font-size: 1.8rem; }
.team-card__role { color: var(--muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; }

.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.faq-item { background: var(--card); padding: 22px; border-radius: 18px; border: 1px solid var(--stroke); }
.faq-item h3 { font-size: 1rem; margin-bottom: 8px; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-bottom: 32px; }
.step-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.step-card__index { font-weight: 700; color: #c4b5fd; letter-spacing: 0.08em; }
.step-card__title { font-weight: 700; }
.step-card__text { color: var(--muted); font-size: 0.95rem; }

.whitelist-cta { text-align: center; display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

.cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cta__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.footer { padding: 48px 0; border-top: 1px solid rgba(255,255,255,0.08); color: var(--muted); font-size: 0.9rem; }
.footer__inner { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer__links { display: flex; gap: 20px; }
.footer__links a:hover { color: white; }

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  color: #4ade80;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 10px #4ade80;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
  70% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.server-info-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; font-size: 0.9rem; }
.text-muted { color: var(--muted); font-weight: 400; }

.progress-bar {
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 20px;
}
.progress-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.4);
}
.server-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.info-item { background: rgba(255,255,255,0.06); padding: 10px; border-radius: 12px; text-align: center; border: 1px solid rgba(255,255,255,0.08); }
.info-item__label { display: block; font-size: 11px; color: var(--muted); text-transform: uppercase; margin-bottom: 4px; }
.info-item__value { font-weight: 600; font-size: 13px; color: var(--text); }

@media (max-width: 960px) {
  .hero__grid, .split, .experience, .spotlight, .cityline { grid-template-columns: 1fr; }
  .hero__kpi { grid-template-columns: 1fr; }
  .hero { padding-top: 140px; }
  .nav { display: none; }
  .cta { flex-direction: column; text-align: center; }
}
