/* JL Games Studio — vitrine pro, pleine largeur */

:root {
  --bg: #05070c;
  --bg-2: #0a0f18;
  --surface: #101826;
  --surface-2: #141e30;
  --text: #f3f6fc;
  --muted: #9aa8c0;
  --line: rgba(154, 168, 192, 0.14);
  --cyan: #3ec6f0;
  --blue: #5b8cff;
  --violet: #9b6dff;
  --gold: #e8b84a;
  --ok: #3dd68c;
  --max: 1280px;
  --wide: 1440px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --display: "Manrope", "Inter", system-ui, sans-serif;
  --radius: 18px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(1100px 520px at 8% -5%, rgba(62, 198, 240, 0.12), transparent 55%),
    radial-gradient(900px 480px at 100% 0%, rgba(155, 109, 255, 0.1), transparent 50%),
    linear-gradient(180deg, #060910 0%, var(--bg) 35%, #070b12 100%);
}

/* ========== TOPBAR full width ========== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(5, 7, 12, 0.78);
  backdrop-filter: blur(16px);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.topbar.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(5, 7, 12, 0.92);
}

.topbar__inner {
  width: min(100% - 3rem, var(--wide));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand__logo,
.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand__meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand__meta strong {
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand__meta small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
}

/* Vrai drapeau suisse (SVG) — discret, un peu plus petit que le texte */
.flag-img {
  display: inline-block;
  width: 0.85em;
  height: 0.85em;
  vertical-align: -0.05em;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14);
  object-fit: cover;
  flex-shrink: 0;
}

.brand__meta .flag-img {
  width: 11px;
  height: 11px;
}

.kicker .flag-img {
  width: 12px;
  height: 12px;
}

.footer__copy .flag-img {
  width: 11px;
  height: 11px;
}

.loc {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  white-space: nowrap;
}

.kicker .flag-img {
  margin: 0 0.05em;
}

.nav {
  display: flex;
  gap: 1.35rem;
  flex: 1;
  justify-content: center;
}

.nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

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

.topbar__cta {
  display: flex;
  gap: 0.55rem;
  flex-shrink: 0;
  align-items: center;
}

/* Sélecteur de langue */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-right: 0.15rem;
}

.lang-switch__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.lang-switch__select {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.04)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239aa8c0' d='M1 1l5 5 5-5'/%3E%3C/svg%3E")
    no-repeat right 0.65rem center;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 1.75rem 0.45rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  min-width: 7.5rem;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.lang-switch__select:hover,
.lang-switch__select:focus {
  border-color: rgba(62, 198, 240, 0.45);
  outline: none;
  background-color: rgba(62, 198, 240, 0.06);
}

.lang-switch__select option {
  background: #101826;
  color: var(--text);
}

.brand-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.72rem 1.15rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }

.btn--sm {
  padding: 0.55rem 0.95rem;
  font-size: 0.84rem;
}

.btn--lg {
  padding: 0.95rem 1.4rem;
  font-size: 1rem;
}

.btn--primary {
  color: #061018;
  background: linear-gradient(115deg, var(--cyan), #7dd3fc 42%, #b8a4ff);
  box-shadow: 0 12px 32px rgba(62, 198, 240, 0.2);
}

.btn--outline {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.btn--outline:hover {
  border-color: rgba(62, 198, 240, 0.45);
  background: rgba(62, 198, 240, 0.08);
}

.btn--ghost {
  color: var(--muted);
  border-color: var(--line);
  background: transparent;
}

.btn--ghost:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn--muted {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  pointer-events: none;
}

/* ========== HERO wide ========== */
.hero {
  width: min(100% - 3rem, var(--wide));
  margin: 0 auto;
  padding: 4.5rem 0 3.5rem;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.kicker {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}

.hero h1 {
  margin: 0 0 1.15rem;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.hero h1 span {
  background: linear-gradient(100deg, #fff 10%, var(--cyan) 48%, var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  margin: 0 0 1.75rem;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__panel {
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 30% 20%, rgba(62, 198, 240, 0.12), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(155, 109, 255, 0.1), transparent 45%),
    linear-gradient(160deg, #0d1524, #0a101c);
  box-shadow: var(--shadow);
  /* Cadré sur le contenu : pas de grand vide */
  width: fit-content;
  max-width: 100%;
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding: 1.15rem 1.25rem 1.05rem;
}

.hero__logo {
  width: clamp(160px, 22vw, 220px);
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.4));
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
  max-width: 240px;
}

.hero__chips span {
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

/* ========== BANDS full width content ========== */
.band {
  width: min(100% - 3rem, var(--wide));
  margin: 0 auto;
  padding: 2.5rem 0 3.5rem;
}

.band--soft {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 3.5rem 0;
  background: linear-gradient(180deg, transparent, rgba(16, 24, 38, 0.65), transparent);
}

.band--soft .studio {
  width: min(100% - 3rem, var(--wide));
  margin: 0 auto;
}

.band--end {
  padding-bottom: 4.5rem;
}

.band__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.band__head h2,
.studio__copy h2,
.test-panel h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.6vw, 2.15rem);
  letter-spacing: -0.02em;
  font-weight: 800;
}

.band__intro {
  margin: 0;
  color: var(--muted);
  max-width: 28rem;
  text-align: right;
}

/* Games — horizontal cards, full width */
.games-list {
  display: grid;
  gap: 1.25rem;
}

.game {
  display: grid;
  grid-template-columns: minmax(300px, 42%) 1fr;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(20, 28, 44, 0.95), rgba(12, 17, 28, 0.98));
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.game:hover {
  border-color: rgba(62, 198, 240, 0.28);
  transform: translateY(-2px);
}

.game__media {
  position: relative;
  background: #080c14;
  overflow: hidden;
  /* Cadre fixe 16:9 pour un recadrage propre */
  aspect-ratio: 16 / 10;
  min-height: 220px;
  max-height: 320px;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem;
}

.game__frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.35),
    0 12px 28px rgba(0, 0, 0, 0.35);
  background: #0b101a;
}

.game__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Neural still souvent vertical / carré : on cadre un peu plus haut */
.game__frame--neural img {
  object-position: center 28%;
  transform: scale(1.02);
}

.game__frame.is-empty {
  display: none;
}

.game__media--neural {
  background:
    radial-gradient(circle at 60% 40%, rgba(62, 198, 240, 0.2), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(155, 109, 255, 0.18), transparent 45%),
    #0a1220;
}

.game__media-fallback {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--muted);
  z-index: 0;
}

.game__frame.is-empty + .game__media-fallback,
.game__media--neural:not(:has(img[src])) .game__media-fallback {
  display: flex;
}

/* Si l’image est absente (onerror ajoute is-empty) */
.game__media:has(.game__frame.is-empty) .game__media-fallback {
  display: flex;
}

.game__media-fallback span { font-size: 3rem; }
.game__media-fallback strong {
  font-family: var(--display);
  color: var(--text);
  letter-spacing: 0.04em;
}

.game__media--soon {
  background:
    linear-gradient(145deg, #121826, #0d1320 55%, #15101c);
  display: grid;
  place-items: center;
  padding: 0.85rem;
}

.soon-mark {
  text-align: center;
  z-index: 1;
}

.soon-letter {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 0.85rem;
  border-radius: 20px;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
  color: #0a1018;
  background: linear-gradient(135deg, var(--gold), #f0d48a);
  box-shadow: 0 12px 30px rgba(232, 184, 74, 0.25);
}

.soon-mark strong {
  display: block;
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.soon-mark em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.85rem;
}

.pill {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pill--live {
  color: #042016;
  background: linear-gradient(90deg, var(--ok), #8ef0c0);
}

.pill--dev {
  color: #1a1200;
  background: linear-gradient(90deg, var(--gold), #f5d98a);
}

.pill--soon {
  color: var(--text);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--line);
}

.game__body {
  padding: 1.6rem 1.75rem 1.7rem;
  display: flex;
  flex-direction: column;
}

.game__meta {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.game__body h3 {
  margin: 0 0 0.7rem;
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.game__body > p {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 46rem;
}

.tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1.25rem;
  padding: 0;
}

.tags li {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.78rem;
  font-weight: 500;
}

.game__actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

/* Studio */
.studio {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.studio__copy p {
  color: var(--muted);
  margin: 0 0 1rem;
  max-width: 44rem;
}

.studio__copy strong { color: var(--text); }

.tool-list {
  margin: 0 0 1.1rem;
  padding: 0 0 0 1.15rem;
  color: var(--muted);
}

.tool-list li { margin-bottom: 0.45rem; }
.tool-list strong { color: var(--cyan); }

.note {
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px dashed rgba(232, 184, 74, 0.35);
  background: rgba(232, 184, 74, 0.06);
  color: var(--muted) !important;
  font-size: 0.92rem;
}

.studio__card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(10, 14, 22, 0.95);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.studio__logo {
  width: 88px;
  height: auto;
  margin: 0 auto 0.85rem;
  object-fit: contain;
}

.studio__card h3 {
  margin: 0 0 0.35rem;
  text-align: center;
  font-family: var(--display);
  font-size: 1.1rem;
}

.studio__slogan {
  margin: 0 0 1.15rem;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: var(--gold);
}

.studio__card dl {
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.studio__card dl div {
  display: grid;
  gap: 0.15rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
}

.studio__card dl div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.studio__card dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.studio__card dd {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Test panel */
.test-panel {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(62, 198, 240, 0.22);
  background:
    radial-gradient(700px 280px at 0% 0%, rgba(62, 198, 240, 0.12), transparent 55%),
    linear-gradient(145deg, #0e1626, #0a101c);
  padding: 2rem 2rem;
  box-shadow: var(--shadow);
}

.test-panel p {
  color: var(--muted);
  margin: 0.75rem 0 1rem;
  max-width: 40rem;
}

.steps {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.steps li { margin-bottom: 0.4rem; }

.test-panel__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1.25rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.22);
}

.hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.hint strong { color: var(--text); }

.link-discord {
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.92rem;
}

.link-discord:hover { text-decoration: underline; }

/* Contact */
.contact {
  text-align: center;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--line);
  background:
    radial-gradient(600px 240px at 50% 0%, rgba(155, 109, 255, 0.1), transparent 55%),
    rgba(12, 17, 28, 0.95);
  padding: 2.75rem 1.5rem;
}

.contact p {
  color: var(--muted);
  margin: 0.75rem auto 1.4rem;
  max-width: 32rem;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

/* Footer — une seule ligne propre */
.footer {
  border-top: 1px solid var(--line);
  padding: 1.15rem 0 1.5rem;
}

.footer__inner {
  width: min(100% - 3rem, var(--wide));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
}

.brand--foot {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand--foot img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.brand--foot-text {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.footer__copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.45rem;
  line-height: 1.3;
}

.footer__sep {
  opacity: 0.55;
  margin: 0 0.1rem;
}

/* Responsive */
@media (max-width: 980px) {
  .topbar__inner {
    width: min(100% - 1.5rem, var(--wide));
    flex-wrap: wrap;
    min-height: auto;
    padding: 0.85rem 0;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.15rem;
  }

  .hero,
  .band {
    width: min(100% - 1.5rem, var(--wide));
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 2.5rem;
    gap: 1.5rem;
  }

  .hero__panel {
    justify-self: start;
    width: auto;
  }

  .hero__logo {
    width: min(180px, 52vw);
  }

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

  .game__media {
    max-height: none;
    min-height: 0;
    aspect-ratio: 16 / 9;
    padding: 0.75rem;
  }

  .studio,
  .test-panel {
    grid-template-columns: 1fr;
  }

  .band__intro { text-align: left; }

  .band--soft .studio {
    width: min(100% - 1.5rem, var(--wide));
  }

  .footer__inner {
    width: min(100% - 1.5rem, var(--wide));
  }

  .topbar__cta .btn--primary span,
  .topbar__cta { }
}

@media (max-width: 640px) {
  .topbar__cta {
    width: 100%;
    flex-wrap: wrap;
  }

  .topbar__cta .btn {
    flex: 1;
  }

  .lang-switch {
    width: 100%;
    justify-content: flex-start;
  }

  .lang-switch__label {
    display: none;
  }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .game { transition: none; }
}

/* ========== Neural Clicker — mises à jour ========== */
.page-updates {
  width: min(100% - 3rem, 820px);
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
}

.page-updates__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  margin-bottom: 1.75rem;
}

.page-updates__nav a {
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.92rem;
}

.page-updates__nav a:hover {
  text-decoration: underline;
}

.page-updates .kicker {
  margin: 0 0 0.5rem;
}

.page-updates h1 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.page-updates__lede {
  color: var(--muted);
  margin: 0 0 2rem;
  max-width: 40rem;
}

.updates-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.updates-card {
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(500px 180px at 0% 0%, rgba(62, 198, 240, 0.08), transparent 55%),
    rgba(12, 17, 28, 0.96);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

a.updates-card:hover {
  border-color: rgba(62, 198, 240, 0.4);
  transform: translateY(-2px);
}

.updates-card__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.45rem;
}

.updates-card__ver {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text);
}

.updates-card__date {
  color: var(--muted);
  font-size: 0.88rem;
}

.updates-card__build {
  margin-left: auto;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(232, 184, 74, 0.35);
  background: rgba(232, 184, 74, 0.08);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
}

.updates-card__summary {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.updates-card__cta {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.9rem;
}

.updates-note {
  margin-top: 2rem;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.22);
  color: var(--muted);
  font-size: 0.9rem;
}

.changelog {
  margin-top: 1.5rem;
}

.changelog h2 {
  font-family: var(--display);
  font-size: 1.15rem;
  margin: 1.75rem 0 0.65rem;
  color: var(--text);
}

.changelog h2:first-child {
  margin-top: 0;
}

.changelog ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.changelog li {
  margin-bottom: 0.4rem;
  line-height: 1.5;
}

.changelog li strong {
  color: var(--text);
}

.changelog__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.changelog__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ok);
  border: 1px solid rgba(61, 214, 140, 0.35);
  background: rgba(61, 214, 140, 0.1);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
}

.changelog__badge--old {
  color: var(--gold);
  border-color: rgba(232, 184, 74, 0.35);
  background: rgba(232, 184, 74, 0.08);
}

