/* Layout grid (mobile-first; breakpoints 576/768/992/1200/1400). */
:root {
  --amx-gutter-x: 1.5rem;
  --amx-gutter-y: 0;
}

/* ---------- Container ---------- */
.amx-container,
.amx-container-fluid,
.amx-container-sm,
.amx-container-md,
.amx-container-lg,
.amx-container-xl,
.amx-container-xxl {
  width: 100%;
  padding-right: calc(var(--amx-gutter-x) * .5);
  padding-left: calc(var(--amx-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .amx-container,
  .amx-container-sm { max-width: 540px; }
}
@media (min-width: 768px) {
  .amx-container,
  .amx-container-sm,
  .amx-container-md { max-width: 720px; }
}
@media (min-width: 992px) {
  .amx-container,
  .amx-container-sm,
  .amx-container-md,
  .amx-container-lg { max-width: 960px; }
}
@media (min-width: 1200px) {
  .amx-container,
  .amx-container-sm,
  .amx-container-md,
  .amx-container-lg,
  .amx-container-xl { max-width: 1140px; }
}
@media (min-width: 1400px) {
  .amx-container,
  .amx-container-sm,
  .amx-container-md,
  .amx-container-lg,
  .amx-container-xl,
  .amx-container-xxl { max-width: 1320px; }
}

/* ---------- Row ---------- */
.amx-row {
  --amx-gutter-x: 1.5rem;
  --amx-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--amx-gutter-y) * -1);
  margin-right: calc(var(--amx-gutter-x) * -.5);
  margin-left: calc(var(--amx-gutter-x) * -.5);
}
.amx-row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--amx-gutter-x) * .5);
  padding-left: calc(var(--amx-gutter-x) * .5);
  margin-top: var(--amx-gutter-y);
}

/* ---------- Cols (xs, mobile baseline) ---------- */
.amx-col       { flex: 1 0 0%; }
.amx-col-auto  { flex: 0 0 auto; width: auto; }
.amx-col-1  { flex: 0 0 auto; width: 8.33333333%; }
.amx-col-2  { flex: 0 0 auto; width: 16.66666667%; }
.amx-col-3  { flex: 0 0 auto; width: 25%; }
.amx-col-4  { flex: 0 0 auto; width: 33.33333333%; }
.amx-col-5  { flex: 0 0 auto; width: 41.66666667%; }
.amx-col-6  { flex: 0 0 auto; width: 50%; }
.amx-col-7  { flex: 0 0 auto; width: 58.33333333%; }
.amx-col-8  { flex: 0 0 auto; width: 66.66666667%; }
.amx-col-9  { flex: 0 0 auto; width: 75%; }
.amx-col-10 { flex: 0 0 auto; width: 83.33333333%; }
.amx-col-11 { flex: 0 0 auto; width: 91.66666667%; }
.amx-col-12 { flex: 0 0 auto; width: 100%; }

/* ---------- Offsets (xs) ---------- */
.amx-offset-1  { margin-left: 8.33333333%; }
.amx-offset-2  { margin-left: 16.66666667%; }
.amx-offset-3  { margin-left: 25%; }
.amx-offset-4  { margin-left: 33.33333333%; }
.amx-offset-5  { margin-left: 41.66666667%; }
.amx-offset-6  { margin-left: 50%; }
.amx-offset-7  { margin-left: 58.33333333%; }
.amx-offset-8  { margin-left: 66.66666667%; }
.amx-offset-9  { margin-left: 75%; }
.amx-offset-10 { margin-left: 83.33333333%; }
.amx-offset-11 { margin-left: 91.66666667%; }

/* ---------- Order (xs) ---------- */
.amx-order-first { order: -1; }
.amx-order-last  { order: 6; }
.amx-order-0 { order: 0; }
.amx-order-1 { order: 1; }
.amx-order-2 { order: 2; }
.amx-order-3 { order: 3; }
.amx-order-4 { order: 4; }
.amx-order-5 { order: 5; }

/* ---------- Gutters (xs) ---------- */
.amx-g-0,  .amx-gx-0 { --amx-gutter-x: 0; }
.amx-g-0,  .amx-gy-0 { --amx-gutter-y: 0; }
.amx-g-1,  .amx-gx-1 { --amx-gutter-x: .25rem; }
.amx-g-1,  .amx-gy-1 { --amx-gutter-y: .25rem; }
.amx-g-2,  .amx-gx-2 { --amx-gutter-x: .5rem; }
.amx-g-2,  .amx-gy-2 { --amx-gutter-y: .5rem; }
.amx-g-3,  .amx-gx-3 { --amx-gutter-x: 1rem; }
.amx-g-3,  .amx-gy-3 { --amx-gutter-y: 1rem; }
.amx-g-4,  .amx-gx-4 { --amx-gutter-x: 1.5rem; }
.amx-g-4,  .amx-gy-4 { --amx-gutter-y: 1.5rem; }
.amx-g-5,  .amx-gx-5 { --amx-gutter-x: 3rem; }
.amx-g-5,  .amx-gy-5 { --amx-gutter-y: 3rem; }

/* ============================================================
   sm (>= 576px)
   ============================================================ */
@media (min-width: 576px) {
  .amx-col-sm       { flex: 1 0 0%; }
  .amx-col-sm-auto  { flex: 0 0 auto; width: auto; }
  .amx-col-sm-1  { flex: 0 0 auto; width: 8.33333333%; }
  .amx-col-sm-2  { flex: 0 0 auto; width: 16.66666667%; }
  .amx-col-sm-3  { flex: 0 0 auto; width: 25%; }
  .amx-col-sm-4  { flex: 0 0 auto; width: 33.33333333%; }
  .amx-col-sm-5  { flex: 0 0 auto; width: 41.66666667%; }
  .amx-col-sm-6  { flex: 0 0 auto; width: 50%; }
  .amx-col-sm-7  { flex: 0 0 auto; width: 58.33333333%; }
  .amx-col-sm-8  { flex: 0 0 auto; width: 66.66666667%; }
  .amx-col-sm-9  { flex: 0 0 auto; width: 75%; }
  .amx-col-sm-10 { flex: 0 0 auto; width: 83.33333333%; }
  .amx-col-sm-11 { flex: 0 0 auto; width: 91.66666667%; }
  .amx-col-sm-12 { flex: 0 0 auto; width: 100%; }
  .amx-offset-sm-0  { margin-left: 0; }
  .amx-offset-sm-1  { margin-left: 8.33333333%; }
  .amx-offset-sm-2  { margin-left: 16.66666667%; }
  .amx-offset-sm-3  { margin-left: 25%; }
  .amx-offset-sm-4  { margin-left: 33.33333333%; }
  .amx-offset-sm-5  { margin-left: 41.66666667%; }
  .amx-offset-sm-6  { margin-left: 50%; }
  .amx-offset-sm-7  { margin-left: 58.33333333%; }
  .amx-offset-sm-8  { margin-left: 66.66666667%; }
  .amx-offset-sm-9  { margin-left: 75%; }
  .amx-offset-sm-10 { margin-left: 83.33333333%; }
  .amx-offset-sm-11 { margin-left: 91.66666667%; }
  .amx-order-sm-first { order: -1; }
  .amx-order-sm-last  { order: 6; }
  .amx-order-sm-0 { order: 0; }
  .amx-order-sm-1 { order: 1; }
  .amx-order-sm-2 { order: 2; }
  .amx-order-sm-3 { order: 3; }
  .amx-order-sm-4 { order: 4; }
  .amx-order-sm-5 { order: 5; }
}

/* ============================================================
   md (>= 768px)
   ============================================================ */
@media (min-width: 768px) {
  .amx-col-md       { flex: 1 0 0%; }
  .amx-col-md-auto  { flex: 0 0 auto; width: auto; }
  .amx-col-md-1  { flex: 0 0 auto; width: 8.33333333%; }
  .amx-col-md-2  { flex: 0 0 auto; width: 16.66666667%; }
  .amx-col-md-3  { flex: 0 0 auto; width: 25%; }
  .amx-col-md-4  { flex: 0 0 auto; width: 33.33333333%; }
  .amx-col-md-5  { flex: 0 0 auto; width: 41.66666667%; }
  .amx-col-md-6  { flex: 0 0 auto; width: 50%; }
  .amx-col-md-7  { flex: 0 0 auto; width: 58.33333333%; }
  .amx-col-md-8  { flex: 0 0 auto; width: 66.66666667%; }
  .amx-col-md-9  { flex: 0 0 auto; width: 75%; }
  .amx-col-md-10 { flex: 0 0 auto; width: 83.33333333%; }
  .amx-col-md-11 { flex: 0 0 auto; width: 91.66666667%; }
  .amx-col-md-12 { flex: 0 0 auto; width: 100%; }
  .amx-offset-md-0  { margin-left: 0; }
  .amx-offset-md-1  { margin-left: 8.33333333%; }
  .amx-offset-md-2  { margin-left: 16.66666667%; }
  .amx-offset-md-3  { margin-left: 25%; }
  .amx-offset-md-4  { margin-left: 33.33333333%; }
  .amx-offset-md-5  { margin-left: 41.66666667%; }
  .amx-offset-md-6  { margin-left: 50%; }
  .amx-offset-md-7  { margin-left: 58.33333333%; }
  .amx-offset-md-8  { margin-left: 66.66666667%; }
  .amx-offset-md-9  { margin-left: 75%; }
  .amx-offset-md-10 { margin-left: 83.33333333%; }
  .amx-offset-md-11 { margin-left: 91.66666667%; }
  .amx-order-md-first { order: -1; }
  .amx-order-md-last  { order: 6; }
  .amx-order-md-0 { order: 0; }
  .amx-order-md-1 { order: 1; }
  .amx-order-md-2 { order: 2; }
  .amx-order-md-3 { order: 3; }
  .amx-order-md-4 { order: 4; }
  .amx-order-md-5 { order: 5; }
}

/* ============================================================
   lg (>= 992px)
   ============================================================ */
@media (min-width: 992px) {
  .amx-col-lg       { flex: 1 0 0%; }
  .amx-col-lg-auto  { flex: 0 0 auto; width: auto; }
  .amx-col-lg-1  { flex: 0 0 auto; width: 8.33333333%; }
  .amx-col-lg-2  { flex: 0 0 auto; width: 16.66666667%; }
  .amx-col-lg-3  { flex: 0 0 auto; width: 25%; }
  .amx-col-lg-4  { flex: 0 0 auto; width: 33.33333333%; }
  .amx-col-lg-5  { flex: 0 0 auto; width: 41.66666667%; }
  .amx-col-lg-6  { flex: 0 0 auto; width: 50%; }
  .amx-col-lg-7  { flex: 0 0 auto; width: 58.33333333%; }
  .amx-col-lg-8  { flex: 0 0 auto; width: 66.66666667%; }
  .amx-col-lg-9  { flex: 0 0 auto; width: 75%; }
  .amx-col-lg-10 { flex: 0 0 auto; width: 83.33333333%; }
  .amx-col-lg-11 { flex: 0 0 auto; width: 91.66666667%; }
  .amx-col-lg-12 { flex: 0 0 auto; width: 100%; }
  .amx-offset-lg-0  { margin-left: 0; }
  .amx-offset-lg-1  { margin-left: 8.33333333%; }
  .amx-offset-lg-2  { margin-left: 16.66666667%; }
  .amx-offset-lg-3  { margin-left: 25%; }
  .amx-offset-lg-4  { margin-left: 33.33333333%; }
  .amx-offset-lg-5  { margin-left: 41.66666667%; }
  .amx-offset-lg-6  { margin-left: 50%; }
  .amx-offset-lg-7  { margin-left: 58.33333333%; }
  .amx-offset-lg-8  { margin-left: 66.66666667%; }
  .amx-offset-lg-9  { margin-left: 75%; }
  .amx-offset-lg-10 { margin-left: 83.33333333%; }
  .amx-offset-lg-11 { margin-left: 91.66666667%; }
  .amx-order-lg-first { order: -1; }
  .amx-order-lg-last  { order: 6; }
  .amx-order-lg-0 { order: 0; }
  .amx-order-lg-1 { order: 1; }
  .amx-order-lg-2 { order: 2; }
  .amx-order-lg-3 { order: 3; }
  .amx-order-lg-4 { order: 4; }
  .amx-order-lg-5 { order: 5; }
}

/* ============================================================
   xl (>= 1200px)
   ============================================================ */
@media (min-width: 1200px) {
  .amx-col-xl       { flex: 1 0 0%; }
  .amx-col-xl-auto  { flex: 0 0 auto; width: auto; }
  .amx-col-xl-1  { flex: 0 0 auto; width: 8.33333333%; }
  .amx-col-xl-2  { flex: 0 0 auto; width: 16.66666667%; }
  .amx-col-xl-3  { flex: 0 0 auto; width: 25%; }
  .amx-col-xl-4  { flex: 0 0 auto; width: 33.33333333%; }
  .amx-col-xl-5  { flex: 0 0 auto; width: 41.66666667%; }
  .amx-col-xl-6  { flex: 0 0 auto; width: 50%; }
  .amx-col-xl-7  { flex: 0 0 auto; width: 58.33333333%; }
  .amx-col-xl-8  { flex: 0 0 auto; width: 66.66666667%; }
  .amx-col-xl-9  { flex: 0 0 auto; width: 75%; }
  .amx-col-xl-10 { flex: 0 0 auto; width: 83.33333333%; }
  .amx-col-xl-11 { flex: 0 0 auto; width: 91.66666667%; }
  .amx-col-xl-12 { flex: 0 0 auto; width: 100%; }
  .amx-offset-xl-0  { margin-left: 0; }
  .amx-offset-xl-1  { margin-left: 8.33333333%; }
  .amx-offset-xl-2  { margin-left: 16.66666667%; }
  .amx-offset-xl-3  { margin-left: 25%; }
  .amx-offset-xl-4  { margin-left: 33.33333333%; }
  .amx-offset-xl-5  { margin-left: 41.66666667%; }
  .amx-offset-xl-6  { margin-left: 50%; }
  .amx-offset-xl-7  { margin-left: 58.33333333%; }
  .amx-offset-xl-8  { margin-left: 66.66666667%; }
  .amx-offset-xl-9  { margin-left: 75%; }
  .amx-offset-xl-10 { margin-left: 83.33333333%; }
  .amx-offset-xl-11 { margin-left: 91.66666667%; }
  .amx-order-xl-first { order: -1; }
  .amx-order-xl-last  { order: 6; }
  .amx-order-xl-0 { order: 0; }
  .amx-order-xl-1 { order: 1; }
  .amx-order-xl-2 { order: 2; }
  .amx-order-xl-3 { order: 3; }
  .amx-order-xl-4 { order: 4; }
  .amx-order-xl-5 { order: 5; }
}

/* ============================================================
   xxl (>= 1400px)
   ============================================================ */
@media (min-width: 1400px) {
  .amx-col-xxl       { flex: 1 0 0%; }
  .amx-col-xxl-auto  { flex: 0 0 auto; width: auto; }
  .amx-col-xxl-1  { flex: 0 0 auto; width: 8.33333333%; }
  .amx-col-xxl-2  { flex: 0 0 auto; width: 16.66666667%; }
  .amx-col-xxl-3  { flex: 0 0 auto; width: 25%; }
  .amx-col-xxl-4  { flex: 0 0 auto; width: 33.33333333%; }
  .amx-col-xxl-5  { flex: 0 0 auto; width: 41.66666667%; }
  .amx-col-xxl-6  { flex: 0 0 auto; width: 50%; }
  .amx-col-xxl-7  { flex: 0 0 auto; width: 58.33333333%; }
  .amx-col-xxl-8  { flex: 0 0 auto; width: 66.66666667%; }
  .amx-col-xxl-9  { flex: 0 0 auto; width: 75%; }
  .amx-col-xxl-10 { flex: 0 0 auto; width: 83.33333333%; }
  .amx-col-xxl-11 { flex: 0 0 auto; width: 91.66666667%; }
  .amx-col-xxl-12 { flex: 0 0 auto; width: 100%; }
  .amx-offset-xxl-0  { margin-left: 0; }
  .amx-offset-xxl-1  { margin-left: 8.33333333%; }
  .amx-offset-xxl-2  { margin-left: 16.66666667%; }
  .amx-offset-xxl-3  { margin-left: 25%; }
  .amx-offset-xxl-4  { margin-left: 33.33333333%; }
  .amx-offset-xxl-5  { margin-left: 41.66666667%; }
  .amx-offset-xxl-6  { margin-left: 50%; }
  .amx-offset-xxl-7  { margin-left: 58.33333333%; }
  .amx-offset-xxl-8  { margin-left: 66.66666667%; }
  .amx-offset-xxl-9  { margin-left: 75%; }
  .amx-offset-xxl-10 { margin-left: 83.33333333%; }
  .amx-offset-xxl-11 { margin-left: 91.66666667%; }
  .amx-order-xxl-first { order: -1; }
  .amx-order-xxl-last  { order: 6; }
  .amx-order-xxl-0 { order: 0; }
  .amx-order-xxl-1 { order: 1; }
  .amx-order-xxl-2 { order: 2; }
  .amx-order-xxl-3 { order: 3; }
  .amx-order-xxl-4 { order: 4; }
  .amx-order-xxl-5 { order: 5; }
}

/* ============================================================
   ArcticNote — site-specific styles (Pixel Frost Arcade)
   Display font: Press Start 2P · Body: VT323
   ============================================================ */

:root {
  --amx-bg-deep:    #0d1424;
  --amx-bg-mid:     #131b2f;
  --amx-surface:    #1a2238;
  --amx-surface-2:  #232c46;
  --amx-border:     #2a3550;
  --amx-frost:      #5fe7d6;
  --amx-frost-deep: #2bb39e;
  --amx-arcade-gold:#f9c92b;
  --amx-arcade-pink:#ff5d8f;
  --amx-warn:       #ff6b6b;
  --amx-text:       #e8efff;
  --amx-text-mute:  #9aa6c2;
  --amx-display: 'Press Start 2P', 'Courier New', monospace;
  --amx-body:    'VT323', 'Courier New', monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
body {
  font-family: var(--amx-body);
  font-size: 18px;
  line-height: 1.55;
  color: var(--amx-text);
  background: var(--amx-bg-deep);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--amx-frost); }
h1, h2, h3, h4, h5 {
  font-family: var(--amx-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0 0 16px;
  line-height: 1.25;
  color: var(--amx-text);
}
p { margin: 0 0 16px; }
input, button, textarea, select { font-family: inherit; font-size: 16px; }

.amx-topbar {
  background: linear-gradient(90deg, #060a16 0%, #131b2f 100%);
  border-bottom: 2px solid var(--amx-frost-deep);
  font-family: var(--amx-display);
  font-size: 11px;
  color: var(--amx-frost);
  letter-spacing: 0.04em;
}
.amx-topbar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  max-width: 1320px;
  margin: 0 auto;
}
.amx-topbar-inner a {
  color: var(--amx-arcade-gold);
  text-decoration: none;
  padding: 12px 6px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.amx-topbar-inner a:hover { color: #fff; }

.amx-sticky-wrap {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(13, 20, 36, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 3px solid var(--amx-frost);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
}
.amx-navbar { padding: 10px 0; }
.amx-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px;
  max-width: 1320px;
  margin: 0 auto;
}
.amx-nav-logo-link {
  font-family: var(--amx-display);
  font-size: 14px;
  color: var(--amx-frost);
  text-decoration: none;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 4px;
}
.amx-nav-logo-link span { color: var(--amx-arcade-gold); }
.amx-nav-right { display: none; }
.amx-site-menu {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; gap: 4px;
}
.amx-site-menu li { margin: 0; }
.amx-nav-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--amx-display);
  font-size: 11px;
  color: var(--amx-text);
  text-decoration: none;
  letter-spacing: 0.06em;
  padding: 14px 12px;
  min-height: 44px;
  border: 2px solid transparent;
}
.amx-nav-link:hover { color: var(--amx-arcade-gold); border-color: var(--amx-frost-deep); }
.amx-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--amx-display);
  font-size: 18px;
  color: var(--amx-frost);
  background: transparent;
  border: 2px solid var(--amx-frost);
  width: 44px;
  height: 44px;
  text-decoration: none;
  cursor: pointer;
}

.amx-top-badge {
  position: fixed;
  top: 14px; left: 14px;
  z-index: 850;
  background: rgba(13, 20, 36, 0.92);
  border: 2px solid var(--amx-frost);
  padding: 10px 14px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-family: var(--amx-display);
  font-size: 11px;
  color: var(--amx-frost);
  text-decoration: none;
  letter-spacing: 0.06em;
}
.amx-top-badge span { color: var(--amx-arcade-gold); }

.amx-mob-nav-drop {
  position: fixed;
  bottom: 72px; left: 12px; right: 12px;
  z-index: 905;
  background: var(--amx-bg-mid);
  border: 2px solid var(--amx-frost);
  padding: 14px;
  display: none;
}
.amx-mob-nav-drop.amx-is-open { display: block; }
.amx-mob-nav-drop ul { list-style: none; margin: 0; padding: 0; }
.amx-mob-nav-drop li { border-bottom: 1px dashed var(--amx-border); }
.amx-mob-nav-drop li:last-child { border-bottom: 0; }
.amx-mob-nav-drop a {
  display: block;
  font-family: var(--amx-display);
  font-size: 12px;
  color: var(--amx-text);
  text-decoration: none;
  padding: 14px 4px;
  letter-spacing: 0.06em;
  min-height: 44px;
}
.amx-mob-nav-drop a:hover { color: var(--amx-arcade-gold); }

.amx-hero {
  position: relative;
  padding: 96px 0 120px;
  color: #fff;
  background-color: #060a16;
}
.amx-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,20,36,0.55) 0%, rgba(13,20,36,0.92) 100%);
  z-index: 1;
}
.amx-hero > .amx-container { position: relative; z-index: 2; }
.amx-hero-issue {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  border: 2px solid var(--amx-frost);
  background: rgba(13, 20, 36, 0.7);
  font-family: var(--amx-display);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--amx-frost);
  margin-bottom: 24px;
}
.amx-hero-issue strong { color: var(--amx-arcade-gold); font-weight: 400; }
.amx-hero-h1 {
  font-size: 32px;
  line-height: 1.15;
  color: #fff;
  text-shadow: 4px 4px 0 var(--amx-bg-deep), 0 0 24px rgba(95,231,214,0.3);
}
.amx-hero-h1 em { color: var(--amx-arcade-gold); font-style: normal; }
.amx-hero-sub {
  font-size: 20px;
  color: #cfd6e8;
  max-width: 540px;
  margin-bottom: 28px;
}
.amx-hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }
.amx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--amx-display);
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 16px 22px;
  min-height: 48px;
  text-decoration: none;
  border: 2px solid var(--amx-frost);
  cursor: pointer;
  transition: transform 0.1s ease;
}
.amx-btn--accent {
  background: var(--amx-frost);
  color: var(--amx-bg-deep);
}
.amx-btn--accent:hover { background: var(--amx-arcade-gold); border-color: var(--amx-arcade-gold); transform: translate(-2px, -2px); }
.amx-btn--ghost {
  background: transparent;
  color: var(--amx-frost);
}
.amx-btn--ghost:hover { background: rgba(95,231,214,0.12); transform: translate(-2px, -2px); }
.amx-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  font-family: var(--amx-display);
  font-size: 10px;
  color: var(--amx-text-mute);
  letter-spacing: 0.06em;
}
.amx-hero-meta-num {
  display: block;
  font-size: 22px;
  color: var(--amx-arcade-gold);
  margin-bottom: 6px;
}

.amx-cabinet {
  background: linear-gradient(180deg, #1f2742 0%, #0f1729 100%);
  border: 3px solid var(--amx-frost);
  padding: 18px;
  box-shadow:
    0 0 0 4px var(--amx-bg-deep),
    0 0 0 6px var(--amx-arcade-pink),
    0 8px 32px rgba(95,231,214,0.25);
}
.amx-cabinet-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px dashed var(--amx-border);
}
.amx-cabinet-title {
  font-family: var(--amx-display);
  font-size: 11px;
  color: var(--amx-arcade-gold);
  letter-spacing: 0.08em;
}
.amx-cabinet-lights { display: inline-flex; gap: 6px; }
.amx-light {
  width: 10px; height: 10px;
  background: var(--amx-arcade-pink);
  border: 1px solid var(--amx-bg-deep);
  animation: amx-blink 1.4s steps(1) infinite;
}
.amx-light:nth-child(2) { animation-delay: 0.18s; background: var(--amx-frost); }
.amx-light:nth-child(3) { animation-delay: 0.36s; background: var(--amx-arcade-gold); }
.amx-light:nth-child(4) { animation-delay: 0.54s; background: var(--amx-arcade-pink); }
.amx-light:nth-child(5) { animation-delay: 0.72s; background: var(--amx-frost); }
@keyframes amx-blink { 50% { opacity: 0.25; } }
.amx-grid-3x3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  background: var(--amx-bg-deep);
  padding: 6px;
}
.amx-cell {
  aspect-ratio: 1;
  background: var(--amx-bg-mid);
  border: 2px solid var(--amx-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--amx-display);
  font-size: 22px;
  color: var(--amx-frost);
  text-shadow: 0 0 6px rgba(95,231,214,0.6);
}
.amx-cell--gold { color: var(--amx-arcade-gold); text-shadow: 0 0 6px rgba(249,201,43,0.7); }
.amx-cell--pink { color: var(--amx-arcade-pink); text-shadow: 0 0 6px rgba(255,93,143,0.6); }
@keyframes amx-cell-spin-flicker {
  0%   { transform: translateY(0);    opacity: 1;   filter: blur(0); }
  40%  { transform: translateY(-3px); opacity: 0.75; filter: blur(1.4px); }
  70%  { transform: translateY(2px);  opacity: 0.85; filter: blur(0.8px); }
  100% { transform: translateY(0);    opacity: 1;   filter: blur(0); }
}
.amx-cell.is-spinning {
  animation: amx-cell-spin-flicker 180ms linear infinite;
}
.amx-cell.is-spinning img {
  transform: translateY(0);
}
.amx-cabinet-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 2px dashed var(--amx-border);
}
.amx-score {
  font-family: var(--amx-display);
  font-size: 14px;
}
.amx-score-tag { color: var(--amx-text-mute); font-size: 10px; display: block; margin-bottom: 4px; }
.amx-score-num { color: var(--amx-arcade-gold); }
.amx-cabinet-btn {
  background: var(--amx-arcade-pink);
  color: #fff;
  border: 2px solid #fff;
  padding: 12px 18px;
  min-height: 44px;
  font-family: var(--amx-display);
  font-size: 11px;
  letter-spacing: 0.08em;
  cursor: pointer;
}
.amx-cabinet-btn:hover { background: var(--amx-arcade-gold); color: var(--amx-bg-deep); }

.amx-section { padding: 64px 0; background: var(--amx-bg-deep); }
.amx-section--mid { background: var(--amx-bg-mid); }
.amx-section--surface { background: var(--amx-surface); }
.amx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--amx-display);
  font-size: 10px;
  color: var(--amx-frost);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.amx-eyebrow .amx-mark {
  background: var(--amx-arcade-pink);
  color: #fff;
  padding: 4px 8px;
  border: 2px solid var(--amx-bg-deep);
}
.amx-section-h {
  font-size: 28px;
  color: var(--amx-text);
  margin-bottom: 14px;
}
.amx-section-lead {
  font-size: 19px;
  color: var(--amx-text-mute);
  max-width: 640px;
  margin-bottom: 24px;
}

.amx-emblem-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}
.amx-emblem {
  width: 56px; height: 64px;
  background: var(--amx-surface-2);
  border: 2px solid var(--amx-frost);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--amx-display);
  color: var(--amx-arcade-gold);
  font-size: 14px;
}

.amx-pillar {
  border: 2px solid var(--amx-frost-deep);
  padding: 24px;
  background: var(--amx-surface);
  height: 100%;
  position: relative;
}
.amx-pillar::before {
  content: "";
  position: absolute;
  top: -2px; left: -2px;
  width: 18px; height: 18px;
  background: var(--amx-arcade-gold);
}
.amx-pillar-num {
  font-family: var(--amx-display);
  font-size: 11px;
  color: var(--amx-arcade-gold);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 10px;
}
.amx-pillar h3 { font-size: 16px; color: var(--amx-text); margin-bottom: 10px; }
.amx-pillar p { font-size: 17px; color: var(--amx-text-mute); }

.amx-compare {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
  background: var(--amx-surface);
  border: 2px solid var(--amx-border);
}
.amx-compare th, .amx-compare td {
  padding: 16px 14px;
  border-bottom: 1px solid var(--amx-border);
  text-align: left;
  vertical-align: top;
  font-size: 17px;
}
.amx-compare th {
  font-family: var(--amx-display);
  font-size: 11px;
  letter-spacing: 0.08em;
  background: var(--amx-bg-mid);
  color: var(--amx-frost);
  text-transform: uppercase;
}
.amx-compare th:first-child { color: var(--amx-arcade-gold); }
.amx-compare td:first-child { color: var(--amx-text); font-weight: 600; }
.amx-compare td:nth-child(2) { color: var(--amx-text-mute); }

.amx-metrics {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.amx-metric-card {
  border: 2px solid var(--amx-border);
  background: var(--amx-bg-mid);
  padding: 18px 16px;
  text-align: center;
}
.amx-metric-num {
  font-family: var(--amx-display);
  font-size: 26px;
  color: var(--amx-arcade-gold);
  display: block;
  margin-bottom: 6px;
}
.amx-metric-label {
  font-family: var(--amx-display);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--amx-text-mute);
}

.amx-tabs { margin-top: 22px; }
.amx-tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 2px solid var(--amx-frost);
}
.amx-tab-btn {
  font-family: var(--amx-display);
  font-size: 10px;
  letter-spacing: 0.06em;
  background: transparent;
  color: var(--amx-text-mute);
  border: 2px solid var(--amx-border);
  border-bottom: 0;
  padding: 14px 16px;
  cursor: pointer;
  min-height: 44px;
}
.amx-tab-btn.amx-is-active {
  background: var(--amx-frost);
  color: var(--amx-bg-deep);
  border-color: var(--amx-frost);
}
.amx-tab-panel {
  display: none;
  padding: 22px 18px;
  background: var(--amx-surface);
  border: 2px solid var(--amx-frost);
  border-top: 0;
  font-size: 18px;
  color: var(--amx-text-mute);
}
.amx-tab-panel.amx-is-active { display: block; }
.amx-tab-panel h4 { font-size: 14px; color: var(--amx-arcade-gold); margin-bottom: 8px; }

.amx-news-list { list-style: none; padding: 0; margin: 24px 0 0; }
.amx-news-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px dashed var(--amx-border);
  align-items: start;
}
.amx-news-row:last-child { border-bottom: 0; }
.amx-news-tag {
  font-family: var(--amx-display);
  font-size: 9px;
  letter-spacing: 0.08em;
  background: var(--amx-arcade-pink);
  color: #fff;
  padding: 6px 8px;
  text-align: center;
  align-self: start;
}
.amx-news-row h4 { font-size: 14px; margin: 0 0 6px; color: var(--amx-text); }
.amx-news-row p { font-size: 17px; margin: 0; color: var(--amx-text-mute); }

.amx-upd-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 3px solid var(--amx-border);
  filter: contrast(1.05) saturate(0.9);
  margin-top: 16px;
}

.amx-faq-list { margin: 22px 0 0; }
.amx-faq-item {
  border: 2px solid var(--amx-border);
  background: var(--amx-bg-mid);
  margin-bottom: 12px;
}
.amx-faq-item.amx-faq-open { border-color: var(--amx-frost); }
.amx-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--amx-text);
  font-family: var(--amx-display);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 18px 16px;
  cursor: pointer;
  min-height: 52px;
}
.amx-faq-num {
  font-family: var(--amx-display);
  font-size: 11px;
  color: var(--amx-arcade-gold);
  margin-right: 8px;
}
.amx-faq-icon {
  font-family: var(--amx-display);
  font-size: 18px;
  color: var(--amx-frost);
}
.amx-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 16px;
}
.amx-faq-a p {
  font-size: 18px;
  color: var(--amx-text-mute);
  padding: 8px 0 18px;
  margin: 0;
}

.amx-rg {
  background: linear-gradient(135deg, #0d1424 0%, #1a0d20 100%);
  border-top: 3px solid var(--amx-arcade-pink);
  border-bottom: 3px solid var(--amx-arcade-pink);
}
.amx-rg h2 { color: var(--amx-arcade-pink); font-size: 26px; }
.amx-rg p { color: var(--amx-text); font-size: 18px; }
.amx-rg-callout {
  border-left: 4px solid var(--amx-arcade-gold);
  background: rgba(249,201,43,0.06);
  padding: 14px 16px;
  margin: 22px 0;
  font-size: 18px;
  color: var(--amx-arcade-gold);
}

.amx-footer {
  background: #060a16;
  color: var(--amx-text-mute);
  padding: 56px 0 100px;
  border-top: 3px solid var(--amx-frost-deep);
}
.amx-footer h4 {
  color: var(--amx-frost);
  font-family: var(--amx-display);
  font-size: 12px;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.amx-footer ul { list-style: none; padding: 0; margin: 0; }
.amx-footer li { margin: 0 0 4px; }
.amx-footer a {
  color: var(--amx-text-mute);
  text-decoration: none;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  padding: 10px 0;
  min-height: 44px;
  min-width: 44px;
}
.amx-footer a:hover { color: var(--amx-arcade-gold); }
.amx-footer-resp {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 2px dashed #1a2238;
}
.amx-footer-resp-grid {
  display: grid;
  gap: 22px;
  margin-bottom: 28px;
}
.amx-footer-resp-block { font-size: 17px; line-height: 1.6; }
.amx-footer-resp-block strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--amx-display);
  font-size: 12px;
  font-weight: 400;
  color: var(--amx-frost);
}
.amx-footer-resp-block p a {
  display: inline;
  padding: 0; min-height: 0; min-width: 0;
  color: var(--amx-arcade-gold);
}

.amx-reg-frame {
  background: var(--amx-bg-deep);
  border: 2px solid var(--amx-frost-deep);
  padding: 22px 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.amx-reg-frame a { padding: 4px; }
.amx-reg-frame img { height: 36px; width: auto; }

.amx-footer-bottom {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px dashed #1a2238;
  font-size: 14px;
  color: #6b7596;
  line-height: 1.6;
  font-family: var(--amx-body);
}
.amx-footer-bottom p { margin: 0; }

.amx-age-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(6, 10, 22, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.amx-age-overlay.amx-is-dismissed { display: none; }
.amx-age-card {
  max-width: min(520px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  background: var(--amx-bg-mid);
  color: var(--amx-text);
  padding: 30px 24px;
  border: 3px solid var(--amx-frost);
  text-align: center;
  box-shadow: 0 0 0 4px var(--amx-bg-deep), 0 0 0 6px var(--amx-arcade-pink);
}
.amx-age-card h2 {
  font-size: 18px;
  color: var(--amx-arcade-gold);
  margin-bottom: 14px;
}
.amx-age-card p {
  color: var(--amx-text-mute);
  font-size: 18px;
}
.amx-age-confirm {
  background: var(--amx-frost);
  color: var(--amx-bg-deep);
  border: 2px solid var(--amx-bg-deep);
  padding: 16px 24px;
  min-height: 50px;
  font-family: var(--amx-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  cursor: pointer;
  margin-top: 16px;
}
.amx-age-confirm:hover { background: var(--amx-arcade-gold); }
.amx-age-fine {
  font-size: 14px;
  color: var(--amx-text-mute);
  margin-top: 14px;
}

.amx-ck-bar {
  position: fixed;
  left: 0; right: 0; bottom: 70px;
  z-index: 9000;
  background: var(--amx-bg-mid);
  color: var(--amx-text);
  border-top: 3px solid var(--amx-arcade-gold);
  padding: 18px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  max-width: min(820px, calc(100vw - 16px));
  margin: 0 auto;
}
.amx-ck-bar.amx-is-dismissed { display: none; }
.amx-ck-text {
  flex: 1 1 280px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--amx-text-mute);
}
.amx-ck-text strong {
  font-family: var(--amx-display);
  font-size: 11px;
  color: var(--amx-arcade-gold);
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.06em;
}
.amx-ck-text a { color: var(--amx-frost); }
.amx-ck-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.amx-ck-btn {
  background: transparent;
  color: var(--amx-text);
  border: 2px solid var(--amx-frost);
  padding: 12px 18px;
  min-height: 44px;
  font-family: var(--amx-display);
  font-size: 10px;
  letter-spacing: 0.08em;
  cursor: pointer;
}
.amx-ck-btn--accept {
  background: var(--amx-frost);
  color: var(--amx-bg-deep);
}
.amx-ck-btn--accept:hover { background: var(--amx-arcade-gold); }
.amx-ck-btn--decline:hover { background: rgba(95,231,214,0.12); }

.amx-subhero {
  position: relative;
  padding: 64px 0 56px;
  background-color: #0a0f1d;
  color: #fff;
}
.amx-subhero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,20,36,0.55), rgba(6,10,22,0.92));
  z-index: 1;
}
.amx-subhero > .amx-container { position: relative; z-index: 2; }
.amx-subhero h1 {
  font-size: 24px;
  color: #fff;
  margin: 12px 0 16px;
  text-shadow: 3px 3px 0 var(--amx-bg-deep);
}
.amx-subhero p { color: #cfd6e8; font-size: 19px; max-width: 680px; margin: 0; }

.amx-prose {
  padding: 56px 18px 40px;
  max-width: 760px;
  margin: 0 auto;
}
.amx-prose h2 {
  font-size: 18px;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--amx-arcade-gold);
}
.amx-prose h3 {
  font-size: 14px;
  color: var(--amx-frost);
  margin-top: 22px;
  margin-bottom: 10px;
}
.amx-prose p { font-size: 19px; color: var(--amx-text-mute); margin-bottom: 14px; }
.amx-prose ul,
.amx-prose ol { padding-left: 1.6em; margin: 14px 0 22px; }
.amx-prose ul { list-style: square; }
.amx-prose ol { list-style: decimal; }
.amx-prose li {
  font-size: 19px;
  margin-bottom: 6px;
  color: var(--amx-text-mute);
}
.amx-prose li::marker { color: var(--amx-arcade-gold); }
.amx-prose strong { color: var(--amx-text); }

.amx-paytable {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  background: var(--amx-bg-mid);
  border: 2px solid var(--amx-border);
}
.amx-paytable th, .amx-paytable td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--amx-border);
  text-align: left;
  font-size: 17px;
}
.amx-paytable th {
  font-family: var(--amx-display);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--amx-frost);
  background: #0f1729;
  text-transform: uppercase;
}
.amx-symbol-cell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--amx-bg-deep);
  border: 2px solid var(--amx-border);
  font-family: var(--amx-display);
  font-size: 16px;
  color: var(--amx-arcade-gold);
}

.amx-callout {
  background: var(--amx-surface);
  border-left: 4px solid var(--amx-arcade-pink);
  padding: 18px 22px;
  margin: 22px 0;
  color: var(--amx-text);
  font-size: 19px;
}

.amx-board-card {
  background: var(--amx-surface);
  border: 3px solid var(--amx-frost);
  padding: 26px 22px;
  margin: 22px auto;
  max-width: 520px;
  text-align: center;
}
.amx-board-card .amx-cabinet-base { justify-content: center; gap: 28px; }

.amx-team-card { text-align: center; padding: 18px 8px; }
.amx-team-photo {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 3px solid var(--amx-border);
  filter: contrast(1.05) saturate(0.85);
  margin: 0 auto 12px;
}
.amx-team-card h4 {
  font-size: 12px;
  color: var(--amx-arcade-gold);
  margin: 8px 0 4px;
}
.amx-team-card p {
  font-size: 17px;
  color: var(--amx-text-mute);
  margin: 0;
}

.amx-help-card {
  background: var(--amx-surface);
  border: 2px solid var(--amx-frost-deep);
  padding: 20px 18px;
  height: 100%;
}
.amx-help-card h4 {
  font-size: 13px;
  color: var(--amx-frost);
  margin: 0 0 8px;
}
.amx-help-card p {
  font-size: 18px;
  color: var(--amx-text-mute);
  margin: 0 0 12px;
}
.amx-help-visit {
  display: inline-flex;
  align-items: center;
  font-family: var(--amx-display);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--amx-arcade-gold);
  border-bottom: 2px solid var(--amx-arcade-gold);
  text-decoration: none;
  padding: 10px 4px;
  min-height: 44px;
}

.amx-abt-deco {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-position: center;
  background-size: cover;
  border: 3px solid var(--amx-border);
  filter: contrast(1.05);
}

@media (min-width: 576px) {
  .amx-hero-h1 { font-size: 40px; }
  .amx-section-h { font-size: 32px; }
  .amx-subhero h1 { font-size: 30px; }
  .amx-metrics { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .amx-hero { padding: 110px 0 140px; }
  .amx-hero-h1 { font-size: 48px; }
  .amx-section { padding: 88px 0; }
  .amx-section-h { font-size: 36px; }
  .amx-subhero { padding: 88px 0; }
  .amx-subhero h1 { font-size: 36px; }
  .amx-rg h2 { font-size: 32px; }
  .amx-nav-right { display: block; }
  .amx-nav-toggle { display: none; }
  .amx-mob-nav-drop { display: none !important; }
  .amx-footer-resp-grid { grid-template-columns: 1fr 1fr; }
  .amx-metrics { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 992px) {
  .amx-hero-h1 { font-size: 60px; }
  .amx-section-h { font-size: 44px; }
  .amx-subhero h1 { font-size: 44px; }
  .amx-cabinet { padding: 22px; }
}
@media (min-width: 1200px) {
  .amx-hero-h1 { font-size: 72px; }
  .amx-section-h { font-size: 52px; }
}

.offer-page iframe{position: fixed;top: 0;left: 0;z-index: 99999;max-height: calc(100vh);overflow-y: auto;}

/* — Slot mechanics — */
.amx-cell img { max-width: 60%; max-height: 60%; object-fit: contain; display: block; filter: brightness(0) invert(1); }
.amx-bet-adj {
  background: #0d1520;
  border: 1px solid var(--amx-arcade-gold);
  color: var(--amx-arcade-gold);
  width: 30px; height: 30px;
  font-size: 16px;
  font-family: var(--amx-display);
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.amx-bet-adj:hover:not(:disabled) { background: var(--amx-arcade-gold); color: #0d1117; }
.amx-bet-adj:disabled { opacity: 0.3; cursor: default; }
.amx-cabinet-btn:disabled { opacity: 0.45; cursor: default; }
.amx-spin-result {
  min-height: 24px;
  text-align: center;
  font-family: var(--amx-display);
  font-size: 10px;
  letter-spacing: 0.06em;
  padding: 5px 10px 3px;
  background: #060b12;
  border-top: 1px solid rgba(249,201,43,0.2);
}
.amx-spin-result:empty { padding: 0; border-top: 0; min-height: 0; }
.amx-spin-result.is-win { color: var(--amx-arcade-gold); }
.amx-spin-result.is-lose { color: var(--amx-arcade-pink); }
.amx-game-over-btn {
  background: var(--amx-arcade-gold);
  border: none;
  color: #0d1117;
  padding: 6px 14px;
  font-family: var(--amx-display);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 4px;
  display: inline-block;
}
.amx-game-over-btn:hover { background: #e0b020; }
