/* ============================================================
   SHOOTER GAME WEBSITE — PvP / Co-op
   Aesthetic: Dark tactical + neon-acid combat UI
   ============================================================ */

/* ── Imports ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,900;1,700&family=Share+Tech+Mono&family=Exo+2:wght@300;400;600&display=swap');

/* ── Design Tokens ───────────────────────────────────────── */
:root {
  --clr-void:      #090b0e;
  --clr-abyss:     #0e1117;
  --clr-surface:   #131820;
  --clr-raised:    #1a2230;
  --clr-muted:     #242e3d;

  --clr-acid:      #b6ff2e;
  --clr-acid-dim:  #7fb820;
  --clr-blood:     #ff2e2e;
  --clr-plasma:    #00e5ff;
  --clr-gold:      #ffb700;

  --clr-text:      #d8dfe8;
  --clr-text-muted:#7a8fa8;
  --clr-text-faint:#3c4e62;

  --font-display:  'Barlow Condensed', sans-serif;
  --font-mono:     'Share Tech Mono', monospace;
  --font-body:     'Exo 2', sans-serif;

  --clip-corner:   polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  --clip-badge:    polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);

  --radius-sm:     4px;
  --radius-md:     6px;

  --shadow-acid:   0 0 20px rgba(182, 255, 46, 0.18);
  --shadow-blood:  0 0 20px rgba(255, 46, 46, 0.22);
  --shadow-plasma: 0 0 20px rgba(0, 229, 255, 0.18);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Base ────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  background-color: var(--clr-void);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  cursor: crosshair;
}

/* Background texture — scanlines */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0,0,0,0.07) 2px,
      rgba(0,0,0,0.07) 4px
    );
  pointer-events: none;
  z-index: 9999;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.05;
}

h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.1rem; letter-spacing: 0.12em; }

p { font-size: 1rem; color: var(--clr-text-muted); max-width: 68ch; }

.mono {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--clr-acid);
  letter-spacing: 0.05em;
}

/* Acid highlight text */
.text--acid   { color: var(--clr-acid); }
.text--blood  { color: var(--clr-blood); }
.text--plasma { color: var(--clr-plasma); }
.text--gold   { color: var(--clr-gold); }
.text--muted  { color: var(--clr-text-muted); }

/* ── Layout ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

.section {
  padding: clamp(4rem, 10vw, 9rem) 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: linear-gradient(to bottom, rgba(9,11,14,0.98), transparent);
  border-bottom: 1px solid rgba(182, 255, 46, 0.08);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-acid);
  text-shadow: var(--shadow-acid);
}

.nav__links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav__links a {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  transition: color 0.2s, text-shadow 0.2s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-acid);
  transition: width 0.25s ease;
}

.nav__links a:hover {
  color: var(--clr-acid);
  text-shadow: var(--shadow-acid);
}

.nav__links a:hover::after { width: 100%; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(182,255,46,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(255,46,46,0.05) 0%, transparent 65%),
    var(--clr-void);
  z-index: 0;
}

/* Diagonal grid lines */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(182,255,46,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(182,255,46,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.6), transparent 80%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 clamp(1rem, 5vw, 5rem);
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--clr-acid);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--clr-acid);
}

.hero__title {
  margin-bottom: 1.5rem;
}

.hero__title span {
  display: block;
  color: var(--clr-blood);
  text-shadow: var(--shadow-blood);
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--clr-text-muted);
  margin-bottom: 2.5rem;
  max-width: 52ch;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  clip-path: var(--clip-corner);
  border: none;
  cursor: crosshair;
  transition: all 0.18s ease;
  position: relative;
}

.btn--primary {
  background: var(--clr-acid);
  color: var(--clr-void);
}

.btn--primary:hover {
  background: #ceff55;
  box-shadow: var(--shadow-acid), 0 0 40px rgba(182,255,46,0.25);
  transform: translateY(-2px);
}

.btn--danger {
  background: var(--clr-blood);
  color: #fff;
}

.btn--danger:hover {
  background: #ff4d4d;
  box-shadow: var(--shadow-blood), 0 0 40px rgba(255,46,46,0.3);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--clr-text);
  border: 1px solid rgba(255,255,255,0.12);
}

.btn--ghost:hover {
  background: var(--clr-raised);
  border-color: rgba(182,255,46,0.4);
  color: var(--clr-acid);
}

.btn--plasma {
  background: transparent;
  color: var(--clr-plasma);
  border: 1px solid var(--clr-plasma);
}

.btn--plasma:hover {
  background: rgba(0,229,255,0.1);
  box-shadow: var(--shadow-plasma);
}

/* ── Mode Badges ─────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  clip-path: var(--clip-badge);
}

.badge--pvp {
  background: rgba(255, 46, 46, 0.15);
  color: var(--clr-blood);
  border: 1px solid rgba(255,46,46,0.3);
}

.badge--coop {
  background: rgba(0, 229, 255, 0.1);
  color: var(--clr-plasma);
  border: 1px solid rgba(0,229,255,0.25);
}

.badge--new {
  background: rgba(182, 255, 46, 0.12);
  color: var(--clr-acid);
  border: 1px solid rgba(182,255,46,0.3);
}

.badge--rank {
  background: rgba(255,183,0,0.1);
  color: var(--clr-gold);
  border: 1px solid rgba(255,183,0,0.25);
}

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--clr-surface);
  border: 1px solid rgba(255,255,255,0.06);
  clip-path: var(--clip-corner);
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-acid), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover {
  border-color: rgba(182,255,46,0.2);
  transform: translateY(-4px);
}

.card:hover::before { opacity: 1; }

.card--blood:hover    { border-color: rgba(255,46,46,0.3); }
.card--plasma:hover   { border-color: rgba(0,229,255,0.3); }
.card--raised {
  background: var(--clr-raised);
}

.card__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-text-faint);
  margin-bottom: 0.6rem;
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.card__body {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* ── Game Mode Cards ─────────────────────────────────────── */
.mode-card {
  position: relative;
  overflow: hidden;
  background: var(--clr-surface);
  clip-path: var(--clip-corner);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 2rem 1.75rem;
  transition: all 0.25s ease;
}

.mode-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  display: block;
  line-height: 1;
}

.mode-card__number {
  position: absolute;
  bottom: -0.5rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}

.mode-card--pvp {
  border-top: 2px solid var(--clr-blood);
}

.mode-card--pvp:hover {
  background: linear-gradient(135deg, rgba(255,46,46,0.06), var(--clr-surface));
  box-shadow: var(--shadow-blood);
}

.mode-card--coop {
  border-top: 2px solid var(--clr-plasma);
}

.mode-card--coop:hover {
  background: linear-gradient(135deg, rgba(0,229,255,0.06), var(--clr-surface));
  box-shadow: var(--shadow-plasma);
}

/* ── Stats Bar ───────────────────────────────────────────── */
.stats-bar {
  background: var(--clr-surface);
  border-top: 1px solid rgba(182,255,46,0.12);
  border-bottom: 1px solid rgba(182,255,46,0.12);
  padding: 1.5rem 0;
}

.stats-bar__inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.stat-item {
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--clr-acid);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-item__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-text-faint);
  margin-top: 0.3rem;
}

/* ── Player / Leaderboard ────────────────────────────────── */
.leaderboard {
  background: var(--clr-abyss);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

.leaderboard__header {
  display: grid;
  grid-template-columns: 40px 1fr auto auto auto;
  gap: 1rem;
  padding: 0.6rem 1.5rem;
  background: var(--clr-muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-faint);
}

.leaderboard__row {
  display: grid;
  grid-template-columns: 40px 1fr auto auto auto;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  align-items: center;
  transition: background 0.15s;
}

.leaderboard__row:hover {
  background: var(--clr-surface);
}

.leaderboard__row:first-child .rank {
  color: var(--clr-gold);
}

.rank {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-text-faint);
  text-align: center;
}

.player-name {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.player-avatar {
  width: 32px;
  height: 32px;
  border-radius: 2px;
  background: var(--clr-muted);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--clr-acid);
}

.kd-ratio {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--clr-acid);
}

/* ── Progress / XP Bar ───────────────────────────────────── */
.xp-bar {
  width: 100%;
  height: 6px;
  background: var(--clr-muted);
  position: relative;
  overflow: hidden;
}

.xp-bar__fill {
  height: 100%;
  background: var(--clr-acid);
  position: relative;
  transition: width 0.6s ease;
}

.xp-bar__fill::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 20px;
  background: rgba(255,255,255,0.4);
  filter: blur(6px);
}

/* ── Section Divider ─────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.divider__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(182,255,46,0.3), transparent);
}

.divider__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--clr-acid);
  text-transform: uppercase;
  flex-shrink: 0;
}

.section__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-acid);
  margin-bottom: 0.8rem;
  display: block;
}

/* ── Map Picker (horizontal scroll) ─────────────────────── */
.map-list {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--clr-acid) var(--clr-muted);
}

.map-list::-webkit-scrollbar        { height: 4px; }
.map-list::-webkit-scrollbar-track  { background: var(--clr-muted); }
.map-list::-webkit-scrollbar-thumb  { background: var(--clr-acid); }

.map-thumb {
  flex-shrink: 0;
  width: 200px;
  background: var(--clr-surface);
  border: 1px solid rgba(255,255,255,0.06);
  clip-path: var(--clip-corner);
  cursor: crosshair;
  transition: all 0.2s;
}

.map-thumb__img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  filter: grayscale(40%) brightness(0.7);
  transition: filter 0.2s;
}

.map-thumb__info {
  padding: 0.75rem;
}

.map-thumb__name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.map-thumb__meta {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--clr-text-faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-thumb:hover .map-thumb__img {
  filter: grayscale(0%) brightness(0.9);
}

.map-thumb:hover {
  border-color: rgba(182,255,46,0.3);
  box-shadow: var(--shadow-acid);
}

.map-thumb--active {
  border-color: var(--clr-acid);
}

.map-thumb--active .map-thumb__img {
  filter: grayscale(0%) brightness(1);
}

/* ── Weapon Stat Bars ────────────────────────────────────── */
.weapon-stats {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stat-row {
  display: grid;
  grid-template-columns: 90px 1fr 32px;
  align-items: center;
  gap: 0.75rem;
}

.stat-row__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-faint);
}

.stat-row__bar {
  height: 4px;
  background: var(--clr-muted);
  position: relative;
  overflow: hidden;
}

.stat-row__fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--clr-acid);
  transition: width 0.5s ease;
}

.stat-row__fill--danger { background: var(--clr-blood); }
.stat-row__fill--plasma { background: var(--clr-plasma); }

.stat-row__value {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  text-align: right;
}

/* ── Notification Toast ──────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--clr-raised);
  border: 1px solid rgba(182,255,46,0.25);
  border-left: 3px solid var(--clr-acid);
  padding: 1rem 1.25rem;
  min-width: 280px;
  clip-path: var(--clip-corner);
  z-index: 9000;
  animation: slideIn 0.3s ease;
}

.toast--kill { border-left-color: var(--clr-blood); }
.toast--squad { border-left-color: var(--clr-plasma); }

.toast__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.toast__body {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}

@keyframes slideIn {
  from { transform: translateX(110%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

/* ── Crosshair cursor element ────────────────────────────── */
.crosshair-decor {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
}

.crosshair-decor::before,
.crosshair-decor::after {
  content: '';
  position: absolute;
  background: var(--clr-acid);
}

.crosshair-decor::before {
  width: 100%; height: 1px;
  top: 50%; left: 0;
}

.crosshair-decor::after {
  width: 1px; height: 100%;
  left: 50%; top: 0;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--clr-abyss);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 3rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 2rem;
}

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

.footer__heading {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-acid);
  margin-bottom: 1rem;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  font-size: 0.875rem;
  color: var(--clr-text-faint);
  transition: color 0.15s;
}

.footer__links a:hover { color: var(--clr-text); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--clr-text-faint);
  letter-spacing: 0.08em;
}

/* ── Utility ─────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: 0.5rem; }
.gap-md { gap: 1rem; }
.gap-lg { gap: 2rem; }
.mt-sm { margin-top: 0.5rem; }
.mt-md { margin-top: 1rem; }
.mt-lg { margin-top: 2rem; }
.mb-sm { margin-bottom: 0.5rem; }
.mb-md { margin-bottom: 1rem; }
.mb-lg { margin-bottom: 2rem; }


/* ============================================================
   CLOUD BREACH — Public Game Website Extensions
   ============================================================ */

/* ── Page load fade-in ───────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.fade-up--d1 { animation-delay: 0.1s; }
.fade-up--d2 { animation-delay: 0.25s; }
.fade-up--d3 { animation-delay: 0.4s; }
.fade-up--d4 { animation-delay: 0.55s; }

/* ── Nav CTA button ──────────────────────────────────────── */
.nav__cta {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  background: var(--clr-acid);
  color: var(--clr-void);
  clip-path: var(--clip-corner);
  transition: all 0.18s;
  cursor: crosshair;
  border: none;
}
.nav__cta:hover {
  background: #ceff55;
  box-shadow: var(--shadow-acid);
}

/* ── Hero layout ─────────────────────────────────────────── */
.hero__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  width: 100%;
}
@media (max-width: 900px) {
  .hero__layout { grid-template-columns: 1fr; }
  .hero__right  { display: none; }
}

/* animated cloud breach logo art */
.hero__art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
}

.hero__art-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(182,255,46,0.12);
  animation: ringPulse 4s ease-in-out infinite;
}
.hero__art-ring:nth-child(1) { width: 300px; height: 300px; animation-delay: 0s; }
.hero__art-ring:nth-child(2) { width: 220px; height: 220px; border-color: rgba(0,229,255,0.1); animation-delay: 0.8s; }
.hero__art-ring:nth-child(3) { width: 140px; height: 140px; border-color: rgba(182,255,46,0.2); animation-delay: 1.6s; }

@keyframes ringPulse {
  0%, 100% { transform: scale(1);    opacity: 0.5; }
  50%       { transform: scale(1.04); opacity: 1;   }
}

.hero__art-core {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--clr-acid);
  text-shadow: var(--shadow-acid), 0 0 60px rgba(182,255,46,0.4);
}

.hero__art-label {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--clr-text-faint);
  text-transform: uppercase;
}
.hero__art-label--top    { top: 60px; }
.hero__art-label--bottom { bottom: 60px; }
.hero__art-label--left   { left: 20px;  writing-mode: vertical-rl; transform: rotate(180deg); }
.hero__art-label--right  { right: 20px; writing-mode: vertical-rl; }

/* ── Feature grid ────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr; }
}

.feature-card {
  background: var(--clr-surface);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 2rem 1.8rem;
  clip-path: var(--clip-corner);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-acid), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(182,255,46,0.15); }
.feature-card:hover::before { opacity: 1; }

.feature-card--plasma::before { background: linear-gradient(90deg, var(--clr-plasma), transparent); }
.feature-card--plasma:hover   { border-color: rgba(0,229,255,0.2); }
.feature-card--blood::before  { background: linear-gradient(90deg, var(--clr-blood), transparent); }
.feature-card--blood:hover    { border-color: rgba(255,46,46,0.2); }

.feature-card__icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  display: block;
}
.feature-card__bg-num {
  position: absolute;
  bottom: -1rem; right: 0.5rem;
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 900;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
}

/* ── Steam Player Section ────────────────────────────────── */
.player-section {
  background: var(--clr-abyss);
  border-top: 1px solid rgba(182,255,46,0.08);
  border-bottom: 1px solid rgba(182,255,46,0.08);
}

.steam-lookup {
  max-width: 560px;
  margin: 0 auto 3rem;
  text-align: center;
}

.steam-lookup__input-row {
  display: flex;
  gap: 0;
  margin-top: 1.5rem;
  clip-path: var(--clip-corner);
}

.steam-lookup__input {
  flex: 1;
  background: var(--clr-raised);
  border: 1px solid rgba(182,255,46,0.2);
  border-right: none;
  color: var(--clr-text);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  padding: 0.85rem 1.2rem;
  outline: none;
  letter-spacing: 0.04em;
  transition: border-color 0.2s;
}
.steam-lookup__input::placeholder { color: var(--clr-text-faint); }
.steam-lookup__input:focus { border-color: rgba(182,255,46,0.5); }

.steam-lookup__btn {
  background: var(--clr-acid);
  color: var(--clr-void);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.6rem;
  border: none;
  cursor: crosshair;
  transition: background 0.15s;
  white-space: nowrap;
}
.steam-lookup__btn:hover { background: #ceff55; }

.steam-lookup__hint {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--clr-text-faint);
  margin-top: 0.6rem;
  letter-spacing: 0.08em;
}

/* Player result card */
.player-result {
  max-width: 720px;
  margin: 0 auto;
  display: none;
}
.player-result.visible { display: block; }

.player-card-main {
  background: var(--clr-surface);
  border: 1px solid rgba(182,255,46,0.15);
  clip-path: var(--clip-corner);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.player-card-main::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-acid), transparent 60%);
}

.player-card__header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}

.player-card__avatar {
  width: 72px;
  height: 72px;
  border: 2px solid rgba(182,255,46,0.3);
  flex-shrink: 0;
  object-fit: cover;
  background: var(--clr-muted);
}

.player-card__name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--clr-text);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.player-card__steamid {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--clr-text-faint);
  letter-spacing: 0.1em;
}

.player-card__banned {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,46,46,0.12);
  color: var(--clr-blood);
  border: 1px solid rgba(255,46,46,0.3);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  margin-top: 0.5rem;
  clip-path: var(--clip-badge);
}

.player-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.player-stat {
  background: var(--clr-raised);
  padding: 1rem;
  text-align: center;
  clip-path: var(--clip-corner);
}
.player-stat__value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--clr-acid);
  letter-spacing: -0.02em;
  line-height: 1;
}
.player-stat__label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-text-faint);
  margin-top: 0.3rem;
}

.player-xp-section { margin-bottom: 1.5rem; }
.player-xp-section__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}
.player-xp-section__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}
.player-xp-section__val {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--clr-acid);
}

.player-loadout {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.2rem;
}
.player-loadout__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-text-faint);
  margin-bottom: 0.6rem;
}
.player-loadout__items {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.loadout-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--clr-raised);
  border: 1px solid rgba(0,229,255,0.2);
  color: var(--clr-plasma);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.7rem;
  clip-path: var(--clip-badge);
}

/* Lookup states */
.player-result__loading,
.player-result__error,
.player-result__not-found {
  text-align: center;
  padding: 3rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--clr-text-faint);
  letter-spacing: 0.1em;
}
.player-result__error   { color: var(--clr-blood); }

@keyframes spin { to { transform: rotate(360deg); } }
.spinner {
  display: inline-block;
  width: 22px; height: 22px;
  border: 2px solid rgba(182,255,46,0.15);
  border-top-color: var(--clr-acid);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-bottom: 0.8rem;
}

/* ── Game modes section ──────────────────────────────────── */
.modes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 768px) { .modes-grid { grid-template-columns: 1fr; } }

.mode-block {
  background: var(--clr-surface);
  border: 1px solid rgba(255,255,255,0.06);
  clip-path: var(--clip-corner);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.25s;
}
.mode-block--pvp  { border-top: 2px solid var(--clr-blood); }
.mode-block--coop { border-top: 2px solid var(--clr-plasma); }

.mode-block:hover { transform: translateY(-4px); }
.mode-block--pvp:hover  { box-shadow: 0 8px 40px rgba(255,46,46,0.1); }
.mode-block--coop:hover { box-shadow: 0 8px 40px rgba(0,229,255,0.1); }

.mode-block__bg {
  position: absolute;
  bottom: -2rem; right: -1rem;
  font-family: var(--font-display);
  font-size: 11rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
}
.mode-block__tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mode-block--pvp  .mode-block__tag { color: var(--clr-blood); }
.mode-block--coop .mode-block__tag { color: var(--clr-plasma); }
.mode-block__tag::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1px;
  background: currentColor;
}

.mode-block__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.mode-block__desc {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 38ch;
}

.mode-block__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mode-block__list li {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.mode-block__list li::before {
  content: '';
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--clr-acid);
  flex-shrink: 0;
}

/* ── Section accent line ─────────────────────────────────── */
.section-tag {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.section-tag__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-acid);
  white-space: nowrap;
}
.section-tag__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(182,255,46,0.25), transparent);
}

/* ── Steam note ──────────────────────────────────────────── */
.steam-note {
  background: var(--clr-raised);
  border: 1px solid rgba(182,255,46,0.1);
  border-left: 3px solid var(--clr-acid);
  padding: 1rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--clr-text-muted);
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.steam-note strong { color: var(--clr-acid); }