:root {
  --red: #d63b22;
  --red-dark: #b62d19;
  --black: #111111;
  --black-2: #191919;
  --ink: #2b2b2b;
  --muted: #6e6e6e;
  --line: #e4e4e4;
  --soft: #f5f5f5;
  --white: #ffffff;
  --green: #2fa66a;
  --orange: #f39a2f;
  --blue: #2f7fd8;
  --radius: 4px;
  font-family: Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 0;
  background: #efefef;
  color: var(--ink);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.text-link {
  color: var(--red);
  font-weight: 900;
}

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

button,
input,
select {
  font: inherit;
}

.utility {
  background: var(--red);
  color: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, .18);
}

.utility-inner,
.mainnav-inner,
.page {
  width: min(1260px, 100%);
  margin: 0 auto;
}

.utility-inner {
  display: flex;
  align-items: center;
  min-height: 42px;
}

.mybase {
  display: flex;
  align-items: center;
  align-self: stretch;
  padding: 0 18px;
  background: rgba(0, 0, 0, .18);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 0;
}

.mybase span:first-child {
  color: #fff;
}

.mybase span:last-child {
  color: #ffdf4d;
}

.utility-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, .18);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
}

.utility-link:hover {
  background: rgba(0, 0, 0, .14);
}

.join {
  margin-left: auto;
  min-height: 32px;
  padding: 5px 14px;
  border: 0;
  border-radius: 18px;
  background: #1b1b1b;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}

.account-status {
  margin-left: auto;
  padding: 0 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.logout {
  min-height: 32px;
  margin-right: 10px;
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 18px;
  background: rgba(0, 0, 0, .18);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}

.logout:hover {
  background: rgba(0, 0, 0, .28);
}

.mainnav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--black);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
}

.mainnav-inner {
  display: flex;
  align-items: center;
  min-height: 72px;
}

.site-logo {
  display: flex;
  align-items: center;
  align-self: stretch;
  padding: 0 18px;
  background: #0b0b0b;
  font-size: 38px;
  font-weight: 950;
  letter-spacing: 0;
}

.site-logo span:last-child {
  color: var(--red);
}

.nav-pill {
  display: flex;
  align-items: center;
  align-self: stretch;
  min-width: 110px;
  padding: 0 20px;
  border: 0;
  border-left: 1px solid #252525;
  background: transparent;
  color: #d8d8d8;
  cursor: pointer;
  font-weight: 800;
  font-size: 16px;
}

.nav-pill.active {
  background: var(--red);
  color: #fff;
}

.nav-pill:hover {
  background: #202020;
}

.nav-pill.active:hover {
  background: var(--red-dark);
}

.search-icon {
  margin-left: auto;
  width: 72px;
  align-self: stretch;
  display: grid;
  place-items: center;
  border-left: 1px solid #252525;
  font-size: 28px;
}

.anchor-target,
.article h2 {
  scroll-margin-top: 88px;
}

.page {
  display: grid;
  grid-template-columns: 210px minmax(0, 690px) 300px;
  align-items: start;
  background: var(--white);
  min-height: 100vh;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.side-nav {
  position: sticky;
  top: 72px;
  min-height: calc(100vh - 72px);
  background: #151515;
  color: #e8e8e8;
}

.game-logo {
  display: grid;
  place-items: center;
  height: 92px;
  border-bottom: 1px solid #282828;
}

.game-logo-box {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 2px solid rgba(255, 255, 255, .16);
  border-radius: 6px;
  background: linear-gradient(135deg, #ffb545, #ff5c8a 55%, #49d7c9);
  color: #111;
  font-size: 30px;
  font-weight: 950;
}

.side-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border-bottom: 1px solid #242424;
  color: #e8e8e8;
  font-size: 15px;
}

.side-nav a:hover {
  background: #222;
}

.side-nav a.current {
  background: #fff;
  color: #111;
  font-weight: 800;
}

.side-nav .ico {
  width: 18px;
  color: #a8a8a8;
  text-align: center;
}

.article {
  padding: 28px 22px 46px;
  border-right: 1px solid var(--line);
}

.simple-page {
  width: min(960px, calc(100% - 28px));
  margin: 28px auto;
  border: 1px solid var(--line);
  background: #fff;
}

.simple-page .article {
  border-right: 0;
}

.simple-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 24px;
}

.simple-nav a {
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: #fafafa;
  color: var(--red);
  font-weight: 800;
}

.article h1 {
  margin: 0 0 12px;
  color: #2b2b2b;
  font-size: 38px;
  line-height: 1.14;
  letter-spacing: 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  color: var(--red);
  font-size: 15px;
}

.article hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 24px 0;
}

.cover {
  margin: 0 0 22px;
  border: 1px solid #d2d2d2;
  background: #151515;
}

.cover img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.4;
  object-fit: cover;
  object-position: center bottom;
}

.section-hero {
  overflow: hidden;
  margin: 0 0 22px;
  border: 1px solid #d2d2d2;
  background: #111;
}

.section-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7.5;
  object-fit: cover;
}

.section-hero-body {
  padding: 14px 16px;
  border-top: 4px solid var(--red);
  background: #fff;
}

.section-hero-body h2 {
  margin: 0 0 6px;
  padding: 0;
  border: 0;
  font-size: 24px;
}

.section-hero-body p {
  margin: 0;
}

.caption {
  padding: 9px 12px;
  color: #777;
  background: #fafafa;
  font-size: 13px;
}

.article p {
  margin: 0 0 16px;
  color: #444;
  font-size: 16px;
}

.article h2 {
  margin: 34px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #222;
  color: #222;
  font-size: 26px;
  line-height: 1.22;
  letter-spacing: 0;
}

.article h3 {
  margin: 28px 0 10px;
  color: #222;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: 0;
}

.article ul {
  margin: 0 0 18px 22px;
  padding: 0;
}

.article li {
  margin: 6px 0;
  color: #444;
}

.notice {
  padding: 14px 16px;
  margin: 18px 0;
  border-left: 4px solid var(--orange);
  background: #fff7eb;
  color: #4d3a1f;
  font-weight: 700;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 22px;
}

.media-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.media-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #151515;
}

.media-card b,
.media-card span {
  display: block;
  padding: 0 10px;
}

.media-card b {
  padding-top: 9px;
  color: #222;
  font-size: 14px;
  line-height: 1.25;
}

.media-card span {
  padding-bottom: 10px;
  color: #666;
  font-size: 12px;
  line-height: 1.35;
}

.database-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0 24px;
}

.database-card {
  border: 1px solid var(--line);
  background: #fff;
}

.database-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #151515;
}

.database-card-body {
  padding: 13px;
}

.database-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.database-card p {
  margin-bottom: 10px;
}

.evidence-tag {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 3px 8px;
  border-radius: var(--radius);
  background: #f0f0f0;
  color: #555;
  font-size: 12px;
  font-weight: 900;
}

.evidence-tag.confirmed {
  background: #e8f6ef;
  color: #1e7a4b;
}

.evidence-tag.expected {
  background: #fff2df;
  color: #925a14;
}

.evidence-tag.pending {
  background: #eaf2fb;
  color: #28669f;
}

.evidence-tag.trailer {
  background: #f4eafc;
  color: #6b3a93;
}

.evidence-tag.watchlist {
  background: #ededed;
  color: #555;
}

.guide-table {
  width: 100%;
  margin: 14px 0 22px;
  border-collapse: collapse;
  border: 1px solid var(--line);
  font-size: 15px;
}

.guide-table th,
.guide-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
}

.guide-table th {
  background: #222;
  color: #fff;
}

.guide-table tr:nth-child(even) td {
  background: #f8f8f8;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}

.filter-bar button,
.filter-bar a {
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: #333;
  cursor: pointer;
  font-weight: 800;
}

.filter-bar button.is-active,
.filter-bar a.is-active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.news-grid,
.status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0 22px;
}

.news-card,
.status-card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 14px;
}

.news-card time {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 2px 7px;
  border-radius: var(--radius);
  background: #222;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.news-card h3,
.status-card h3 {
  margin: 10px 0 8px;
  font-size: 19px;
}

.news-card p,
.status-card p {
  margin-bottom: 10px;
}

.news-card a,
.status-card a {
  color: var(--red);
  font-weight: 900;
}

.setup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0 24px;
}

.setup-card,
.qa-card,
.chat-panel,
.community-form {
  border: 1px solid var(--line);
  background: #fff;
  padding: 14px;
}

.setup-card h3,
.qa-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.setup-card p,
.qa-card p {
  margin-bottom: 10px;
}

.step-list {
  counter-reset: setup;
  display: grid;
  gap: 10px;
  margin: 16px 0 24px;
}

.step-item {
  counter-increment: setup;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--line);
  background: #fafafa;
}

.step-item::before {
  content: counter(setup, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  background: var(--red);
  color: #fff;
  font-weight: 900;
}

.step-item b {
  display: block;
  color: #222;
}

.controller-table {
  width: 100%;
  margin: 14px 0 22px;
  border-collapse: collapse;
  border: 1px solid var(--line);
  font-size: 15px;
}

.controller-table th,
.controller-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.controller-table th {
  background: #222;
  color: #fff;
}

.controller-table tr:nth-child(even) td {
  background: #f8f8f8;
}

.chat-panel {
  display: grid;
  gap: 10px;
  margin: 16px 0 20px;
}

.chat-message {
  padding: 10px 12px;
  border-left: 4px solid var(--red);
  background: #fafafa;
}

.chat-message b {
  display: block;
  margin-bottom: 3px;
  color: #222;
}

.community-form {
  display: grid;
  gap: 10px;
  margin: 16px 0 22px;
}

.community-form label {
  display: grid;
  gap: 6px;
  color: #222;
  font-weight: 800;
}

.community-form input,
.community-form textarea {
  width: 100%;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid #c9c9c9;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 400;
}

.community-form textarea {
  min-height: 96px;
  resize: vertical;
}

.community-form button {
  justify-self: start;
  min-height: 40px;
  padding: 8px 13px;
  border: 0;
  border-radius: var(--radius);
  background: var(--red);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}

.form-confirmation {
  padding: 10px 12px;
  border-left: 4px solid var(--green);
  background: #e8f6ef;
  color: #1e7a4b;
  font-weight: 800;
}

.queue-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 22px;
}

.queue-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: #fafafa;
}

.queue-item b {
  color: #222;
}

.source-note {
  margin-top: 8px;
  color: #777;
  font-size: 13px;
  line-height: 1.35;
}

.policy-list {
  margin: 0 0 18px 22px;
  padding: 0;
}

.policy-list li {
  margin: 7px 0;
}

.setup-step {
  padding: 14px 16px;
  margin: 14px 0;
  border: 1px solid var(--line);
  background: #fafafa;
}

.setup-step strong {
  display: block;
  margin-bottom: 4px;
  color: #222;
}

.tracker {
  margin: 22px 0;
  border: 1px solid #d6d6d6;
  background: #fafafa;
}

.tracker-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  background: #222;
  color: #fff;
}

.article .tracker-title {
  margin: 0;
  padding: 0;
  border: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
}

.tracker-count {
  min-width: 92px;
  padding: 8px 12px;
  border-radius: var(--radius);
  background: var(--red);
  text-align: center;
  font-weight: 900;
}

.progress-shell {
  grid-column: 1 / -1;
  overflow: hidden;
  height: 14px;
  border-radius: 999px;
  background: #3d3d3d;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--orange));
  transition: width .2s ease;
}

.tracker-tools {
  display: grid;
  grid-template-columns: 1fr 160px 115px;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: #f3f3f3;
}

.tracker-tools input,
.tracker-tools select,
.tracker-tools button {
  min-height: 38px;
  border: 1px solid #cacaca;
  border-radius: var(--radius);
  background: #fff;
}

.tracker-tools input,
.tracker-tools select {
  padding: 0 10px;
}

.tracker-tools button {
  cursor: pointer;
  font-weight: 800;
}

.check-section {
  border-bottom: 1px solid var(--line);
}

.check-section:last-child {
  border-bottom: 0;
}

.check-section h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
  padding: 13px 16px;
  background: #efefef;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
}

.section-percent {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.task {
  display: grid;
  grid-template-columns: 32px 1fr 78px;
  gap: 10px;
  align-items: start;
  min-height: 58px;
  padding: 12px 16px;
  border-bottom: 1px solid #ececec;
  background: #fff;
}

.task:last-child {
  border-bottom: 0;
}

.task.is-hidden {
  display: none;
}

.task input {
  width: 20px;
  height: 20px;
  margin-top: 4px;
  accent-color: var(--red);
}

.task-title {
  display: block;
  color: #222;
  font-weight: 800;
  line-height: 1.32;
}

.task-note {
  display: block;
  margin-top: 3px;
  color: #777;
  font-size: 14px;
  line-height: 1.35;
}

.tag {
  justify-self: end;
  padding: 5px 7px;
  border-radius: var(--radius);
  background: #f0f0f0;
  color: #555;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.tag.confirmed {
  background: #e8f6ef;
  color: #1e7a4b;
}

.tag.expected {
  background: #fff2df;
  color: #925a14;
}

.tag.pending {
  background: #eaf2fb;
  color: #28669f;
}

.time-table {
  width: 100%;
  margin: 14px 0 22px;
  border-collapse: collapse;
  border: 1px solid var(--line);
  font-size: 15px;
}

.time-table th,
.time-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.time-table th {
  background: #222;
  color: #fff;
}

.time-table tr:nth-child(even) td {
  background: #f8f8f8;
}

.related {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.related a {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: #fafafa;
  color: var(--red);
  font-weight: 800;
}

.rightbar {
  padding: 20px 18px;
  background: #fff;
}

.box {
  margin-bottom: 16px;
  border: 1px solid var(--line);
  background: #fafafa;
}

.box h3 {
  margin: 0;
  padding: 11px 12px;
  background: #222;
  color: #fff;
  font-size: 16px;
  line-height: 1.25;
}

.box-content {
  padding: 12px;
}

.meta-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #ececec;
  font-size: 14px;
}

.meta-row:last-child {
  border-bottom: 0;
}

.meta-row b {
  color: #222;
}

.meta-row span {
  color: #666;
}

.toc {
  display: grid;
  gap: 8px;
}

.toc a {
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
}

.ad {
  display: grid;
  place-items: center;
  min-height: 250px;
  border: 1px dashed #c8c8c8;
  background: #f2f2f2;
  color: #8a8a8a;
  text-align: center;
  font-weight: 800;
}

.ad-leaderboard {
  min-height: 90px;
  margin: 0 0 22px;
}

.ad-inline {
  width: min(336px, 100%);
  min-height: 280px;
  margin: 18px auto 22px;
}

.footer-ad-wrap {
  width: min(1260px, 100%);
  margin: 0 auto;
  padding: 18px 22px 0;
}

.ad-footer {
  min-height: 90px;
  background: #1a1a1a;
  color: #777;
  border-color: #333;
}

.demand-list {
  display: grid;
  gap: 10px;
}

.demand-item {
  padding-bottom: 10px;
  border-bottom: 1px solid #e6e6e6;
}

.demand-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.demand-item b {
  display: block;
  color: #222;
}

.demand-item span {
  color: #666;
  font-size: 14px;
}

.footer {
  background: #111;
  color: #bbb;
  border-top: 5px solid var(--red);
}

.footer-inner {
  width: min(1260px, 100%);
  margin: 0 auto;
  padding: 28px 22px;
  font-size: 14px;
}

.footer-inner p {
  margin: 12px 0 0;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #fff;
  font-weight: 800;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, .62);
}

.auth-modal[hidden] {
  display: none;
}

.auth-dialog {
  width: min(430px, 100%);
  border: 1px solid #d0d0d0;
  background: #fff;
  box-shadow: 0 18px 55px rgba(0, 0, 0, .36);
}

.auth-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  padding: 0 14px;
  background: #202020;
  color: #fff;
}

.auth-head h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.auth-close {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
  background: #f2f2f2;
}

.auth-tab {
  min-height: 42px;
  border: 0;
  border-right: 1px solid var(--line);
  background: #f2f2f2;
  cursor: pointer;
  font-weight: 800;
}

.auth-tab:last-child {
  border-right: 0;
}

.auth-tab[aria-selected="true"] {
  background: #fff;
  color: var(--red);
}

.auth-panel {
  padding: 18px;
}

.info-body {
  margin: 0;
  color: #444;
}

.auth-panel[hidden] {
  display: none;
}

.auth-field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  color: #222;
  font-weight: 800;
}

.auth-field input {
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid #c9c9c9;
  border-radius: var(--radius);
  background: #fff;
  color: #222;
  font-weight: 400;
}

.auth-submit {
  width: 100%;
  min-height: 42px;
  margin-top: 6px;
  border: 0;
  border-radius: var(--radius);
  background: var(--red);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}

.auth-submit:hover {
  background: var(--red-dark);
}

.signup-popup {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 30px;
  gap: 12px;
  align-items: center;
  width: min(390px, calc(100vw - 28px));
  padding: 14px;
  border: 1px solid #f2c061;
  border-radius: 8px;
  background: #fff8e8;
  color: #2d2414;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .24);
  opacity: 0;
  transform: translateY(18px) scale(.96);
  pointer-events: none;
  transition: opacity .24s ease, transform .24s ease;
}

.signup-popup[hidden] {
  display: none;
}

.signup-popup.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  animation: signup-pop .58s ease both;
}

.signup-sparkle {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #d63b22;
  color: #fff;
  font-size: 22px;
  animation: sparkle-spin 1.4s ease-in-out infinite;
}

.signup-popup strong,
.signup-popup span {
  display: block;
}

.signup-popup strong {
  color: #191919;
  font-size: 17px;
  line-height: 1.25;
}

.signup-popup span {
  margin-top: 3px;
  color: #6a5323;
  font-size: 14px;
  line-height: 1.35;
}

.signup-popup button {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .58);
  color: #332719;
  cursor: pointer;
  font-weight: 900;
}

@keyframes signup-pop {
  0% {
    transform: translateY(22px) scale(.9);
  }
  55% {
    transform: translateY(-5px) scale(1.02);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes sparkle-spin {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(12deg) scale(1.08);
  }
}

@media (max-width: 1100px) {
  .page {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .rightbar {
    display: none;
  }

  .article {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  .utility-inner {
    flex-wrap: wrap;
  }

  .mybase {
    min-height: 42px;
  }

  .join {
    margin: 5px 10px 5px auto;
  }

  .mainnav-inner {
    overflow-x: auto;
    max-width: 100vw;
  }

  .site-logo {
    font-size: 30px;
  }

  .nav-pill {
    min-width: auto;
    white-space: nowrap;
  }

  .page {
    grid-template-columns: 1fr;
    max-width: 100vw;
    border-left: 0;
    border-right: 0;
    overflow-x: hidden;
  }

  .side-nav {
    position: static;
    width: 100%;
    max-width: 100vw;
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .game-logo {
    grid-column: 1 / -1;
  }

  .article {
    padding: 22px 16px 38px;
  }

  .article h1 {
    font-size: 30px;
  }

  .tracker-head,
  .tracker-tools {
    grid-template-columns: 1fr;
  }

  .task {
    grid-template-columns: 28px 1fr;
  }

  .tag {
    grid-column: 2;
    justify-self: start;
  }

  .media-grid,
  .database-grid,
  .news-grid,
  .status-grid,
  .setup-grid {
    grid-template-columns: 1fr;
  }

  .queue-item {
    grid-template-columns: 1fr;
  }

  .step-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .utility-link:nth-of-type(3) {
    display: none;
  }

  .side-nav {
    grid-template-columns: 1fr;
  }

  .article h1 {
    font-size: 27px;
  }
}
