:root {
  --card: #0f0f0e;
  --card-border: #ffffff21;
  --muted: #9aa4ad;
  --accent: #d4a017;
  --accent-dim: #d4a0171f;
  --radius: 1px;
  --text: #e6eef6;
  --text-body: #ccd3da;
}

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

body {
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  background-color: #1d1a1a;
  background-image: url("triangles-bg-small.5adf034d.png");
  background-repeat: repeat;
  background-size: auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Arial;
  line-height: 1.5;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

main {
  max-width: 820px;
  margin: 0 auto;
  padding: 30px 20px;
}

nav {
  z-index: 1000;
  background: #000c;
  justify-content: center;
  gap: 24px;
  padding: 12px 20px;
  display: flex;
  position: sticky;
  top: 0;
}

nav a {
  color: var(--text);
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}

nav a:hover, nav a.active {
  color: var(--accent);
}

header {
  text-align: center;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px 0;
  display: flex;
}

.logo {
  justify-content: center;
  align-items: center;
  width: 640px;
  max-width: 100%;
  display: flex;
}

.logo img {
  max-width: 100%;
  display: block;
}

.page-title {
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 1.1rem;
  font-weight: 600;
}

.page-subtitle {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 14px;
}

.card, .release-card {
  background-color: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  scroll-margin-top: 60px;
  transition: border-color .2s;
  position: relative;
  overflow: hidden;
}

.card:before, .release-card:before {
  content: "";
  opacity: .03;
  pointer-events: none;
  z-index: 0;
  background-image: url("patch-notes-bg.cf931142.jpg");
  background-repeat: repeat;
  background-size: 600px 600px;
  position: absolute;
  inset: 0;
}

.card > *, .release-card > * {
  z-index: 1;
  position: relative;
}

.card:hover, .release-card:hover {
  border-color: #d4a0174d;
}

.card.hidden {
  display: none;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  border-bottom: 1px solid #d4a01733;
  margin-bottom: 16px;
  padding-bottom: 8px;
  font-size: .72rem;
  font-weight: 700;
}

.screenshots {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  display: grid;
}

.shot {
  border-radius: var(--radius);
  aspect-ratio: 16 / 9;
  background: #0a0a0a;
  display: block;
  overflow: hidden;
}

.shot img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: opacity .2s;
  display: block;
}

.shot:hover img {
  opacity: .85;
}

.video-wrap {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.video-wrap iframe {
  border: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.change-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.change-list li {
  color: var(--text-body);
  padding: 1px 0;
  font-size: .875rem;
  line-height: 1.5;
}

.change-list li:before {
  content: "▶";
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
  padding-right: 10px;
  font-size: .75rem;
}

.release-anchor {
  background-color: var(--muted);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  line-height: 1;
  text-decoration: none;
  transition: background-color .15s;
  display: inline-block;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20height%3D%2248px%22%20viewBox%3D%220%20-960%20960%20960%22%20width%3D%2248px%22%3E%3Cpath%20d%3D%22M313-120q-81%200-137-56t-56-137q0-38%2014.5-73.5T176-449l146-146%2042%2043-146%20145q-19%2019-29%2043.5T179-313q0%2056%2039%2094.5t95%2038.5q26%200%2050.5-10t43.5-29l146-145%2042%2042-146%20146q-27%2027-62.5%2041.5T313-120Zm81-231-43-43%20215-214%2042%2042-214%20215Zm244-14-43-42%20146-146q18-18%2028-41.5t10-49.5q0-56-38.5-95.5T646-779q-26%200-50%209.5T553-741L407-595l-42-42%20146-146q27-27%2062.5-42t73.5-15q81%200%20137%2056.5T840-646q0%2038-14.5%2073.5T784-510L638-365Z%22/%3E%3C/svg%3E") center / contain no-repeat;
}

.release-anchor img {
  display: none;
}

.release-anchor:hover {
  background-color: var(--accent);
}

footer {
  text-align: center;
  color: var(--muted);
  border-top: 1px solid #ffffff0d;
  padding: 30px 20px;
  font-size: .85rem;
}

footer a {
  color: var(--accent);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

@media only screen and (width <= 1000px) {
  .logo {
    width: 100%;
  }
}

.cta {
  background: var(--accent);
  color: #0f1113;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  margin-top: 10px;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.disclaimer {
  max-width: 600px;
  color: var(--muted);
  margin-top: 14px;
  font-size: .85rem;
}

section {
  margin-bottom: 50px;
}

h1 {
  letter-spacing: .5px;
  margin-bottom: 6px;
  font-size: 2.2rem;
  font-weight: 700;
}

h2 {
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.tagline {
  color: var(--muted);
  margin-bottom: 12px;
  font-size: 1rem;
}

p {
  color: var(--text-body);
}

ul {
  color: var(--text-body);
  margin-top: 8px;
  list-style: inside square;
}

li {
  margin: 4px 0;
}

.video-container {
  aspect-ratio: 16 / 9;
  width: 960px;
  margin: 0 auto;
}

.video-container iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (width <= 1000px) {
  .video-container {
    width: 540px;
  }
}

@media only screen and (width <= 580px) {
  .video-container {
    width: 320px;
  }
}

.card-body {
  padding: 24px 28px;
}

h2 {
  color: var(--text);
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 700;
}

p {
  color: var(--text-body);
  margin-bottom: 12px;
  font-size: .925rem;
  line-height: 1.7;
}

p:last-child {
  margin-bottom: 0;
}

.two-col {
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
  display: grid;
}

.two-col .card {
  margin-bottom: 0;
}

.card {
  margin-bottom: 28px;
}

.fact-table {
  border-collapse: collapse;
  width: 100%;
  font-size: .875rem;
}

.fact-table tr {
  border-bottom: 1px solid #ffffff0d;
}

.fact-table tr:last-child {
  border-bottom: none;
}

.fact-table td {
  vertical-align: top;
  padding: 8px 0;
}

.fact-table td:first-child {
  color: var(--muted);
  white-space: nowrap;
  width: 130px;
  padding-right: 16px;
  font-weight: 600;
}

.fact-table td:last-child {
  color: var(--text-body);
}

.tag-list {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
  display: flex;
}

.tag {
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  background: #ffffff0f;
  border: 1px solid #ffffff1a;
  border-radius: 3px;
  padding: 3px 9px;
  font-size: .72rem;
  font-weight: 600;
}

.link-row {
  flex-wrap: wrap;
  gap: 12px;
  display: flex;
}

.link-btn {
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  color: var(--text);
  background: #ffffff0f;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .2s, color .2s;
  display: inline-flex;
}

.link-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.link-btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #0f0f0e;
}

.link-btn.primary:hover {
  color: #0f0f0e;
  background: #e0aa1a;
  border-color: #e0aa1a;
}

.ea-item {
  margin-bottom: 20px;
}

.ea-item:last-child {
  margin-bottom: 0;
}

.ea-question {
  color: var(--accent);
  margin-bottom: 6px;
  font-size: .85rem;
  font-weight: 700;
}

.ea-answer {
  color: var(--text-body);
  font-size: .875rem;
  line-height: 1.7;
}

.sysreq-grid {
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  display: grid;
}

.sysreq-col h3 {
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 10px;
  font-size: .8rem;
  font-weight: 700;
}

.sysreq-col ul {
  padding: 0;
  list-style: none;
}

.sysreq-col li {
  color: var(--text-body);
  border-bottom: 1px solid #ffffff0a;
  padding: 4px 0;
  font-size: .825rem;
}

.sysreq-col li:last-child {
  border-bottom: none;
}

.sysreq-col li span {
  color: var(--muted);
  margin-right: 6px;
  font-weight: 600;
}

@media only screen and (width <= 720px) {
  .two-col, .sysreq-grid {
    grid-template-columns: 1fr;
  }
}

.timeline {
  padding-left: 28px;
  position: relative;
}

.timeline:before {
  content: "";
  background: linear-gradient(to bottom, var(--accent), #d4a0171a);
  border-radius: 2px;
  width: 2px;
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
}

.release {
  margin-bottom: 32px;
  position: relative;
}

.release:before {
  content: "";
  background: var(--accent);
  border: 2px solid #0d1014;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 14px;
  left: -34px;
  box-shadow: 0 0 8px #d4a01780;
}

.release-header {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  display: flex;
}

.release-header-left {
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  display: flex;
}

.release-version {
  color: var(--accent);
  letter-spacing: .02em;
  white-space: nowrap;
  font-size: 1.05rem;
  font-weight: 700;
}

.release-name {
  color: var(--text);
  font-size: .95rem;
  font-weight: 600;
}

.release-date {
  color: var(--muted);
  white-space: nowrap;
  font-size: .8rem;
}

.release-tag {
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
  border-radius: 4px;
  padding: 3px 8px;
  font-size: .7rem;
  font-weight: 700;
}

.tag-major {
  color: var(--accent);
  background: #d4a01733;
  border: 1px solid #d4a01759;
}

.tag-minor {
  color: #7db8e8;
  background: #64a0dc26;
  border: 1px solid #64a0dc4d;
}

.tag-hotfix {
  color: #e08080;
  background: #dc5a5a26;
  border: 1px solid #dc5a5a4d;
}

.release-body {
  border-top: 1px solid var(--card-border);
  padding: 20px;
}

.release-summary {
  color: var(--text-body);
  margin-top: 14px;
  margin-bottom: 16px;
  font-size: .9rem;
}

.change-group {
  margin-bottom: 18px;
}

.change-group:last-child {
  margin-bottom: 0;
}

.change-group-label {
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  border-bottom: 1px solid var(--card-border);
  margin-bottom: 8px;
  padding-bottom: 5px;
  font-size: .72rem;
  font-weight: 700;
}

@media only screen and (width <= 600px) {
  .release-header {
    flex-wrap: wrap;
  }

  .release-header-left {
    gap: 8px;
  }
}

.search-wrap {
  margin-bottom: 1rem;
  position: relative;
}

.search-wrap svg {
  color: var(--muted);
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 11px;
  transform: translateY(-50%);
}

#search {
  background: var(--bg2);
  width: 100%;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-ui);
  outline: none;
  padding: 8px 34px;
  font-size: 14px;
  transition: border-color .15s;
}

#search::placeholder {
  color: var(--muted);
}

#search:focus {
  border-color: #44474e;
}

#search-clear {
  color: var(--muted);
  cursor: pointer;
  background: none;
  border: none;
  padding: 2px 4px;
  font-size: 16px;
  line-height: 1;
  display: none;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

#search-clear:hover {
  color: var(--text);
}

input[type="search"]::-webkit-search-cancel-button {
  appearance: none;
}
/*# sourceMappingURL=site.e41bcd1f.css.map */
