@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600;700&family=Rajdhani:wght@500;600;700&display=swap');
@import url('1.css');

:root {
  --v2-bg-image: url('/CSS/background.jpg');
  --v2-page: rgba(240, 235, 226, 0.95);
  --v2-panel: rgba(247, 243, 236, 0.96);
  --v2-panel-soft: rgba(255, 255, 255, 0.9);
  --v2-panel-tint: rgba(235, 226, 212, 0.92);
  --v2-ink: #24344b;
  --v2-ink-soft: #5f6e84;
  --v2-accent: #da7b21;
  --v2-accent-strong: #b85c11;
  --v2-good: #2f8757;
  --v2-bad: #bd4a45;
  --v2-border: rgba(44, 66, 98, 0.2);
  --v2-border-soft: rgba(44, 66, 98, 0.12);
  --v2-shadow: 0 14px 28px rgba(20, 32, 49, 0.16);
  --v2-button-top: rgba(255, 255, 255, 0.96);
  --v2-button-bottom: rgba(232, 226, 216, 0.98);
}

html[data-v2-mode="dark"] {
  --v2-page: rgba(18, 28, 44, 0.94);
  --v2-panel: rgba(25, 38, 58, 0.96);
  --v2-panel-soft: rgba(31, 46, 71, 0.94);
  --v2-panel-tint: rgba(21, 34, 55, 0.96);
  --v2-ink: #eef4ff;
  --v2-ink-soft: #b9c7dc;
  --v2-accent: #ffb14b;
  --v2-accent-strong: #ffd169;
  --v2-good: #90e0b1;
  --v2-bad: #ff9c92;
  --v2-border: rgba(140, 170, 214, 0.28);
  --v2-border-soft: rgba(140, 170, 214, 0.14);
  --v2-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
  --v2-button-top: rgba(42, 58, 84, 0.96);
  --v2-button-bottom: rgba(28, 41, 63, 0.98);
}

html[data-v2-mode] {
  font-size: 10px;
  color-scheme: light;
  overflow-x: hidden;
}

html[data-v2-mode="dark"] {
  color-scheme: dark;
}

body.theme-v2 {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: 100vw !important;
  min-width: 0 !important;
  margin: 0;
  padding: 8px 6px 16px;
  background: transparent;
  color: var(--v2-ink);
  font-family: 'Rajdhani', Tahoma, sans-serif;
  font-size: 12.5px !important;
  line-height: 1.3;
  letter-spacing: 0.02em;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body.theme-v2::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 247, 229, 0.78), rgba(233, 238, 247, 0.74)),
    var(--v2-bg-image) center center / cover no-repeat fixed;
  z-index: -1;
}

html[data-v2-mode="dark"] body.theme-v2::before {
  background:
    linear-gradient(180deg, rgba(9, 18, 31, 0.78), rgba(12, 24, 40, 0.82)),
    var(--v2-bg-image) center center / cover no-repeat fixed;
}

body.theme-v2 * {
  box-sizing: border-box;
}

body.theme-v2,
body.theme-v2 a,
body.theme-v2 p,
body.theme-v2 span,
body.theme-v2 div,
body.theme-v2 td,
body.theme-v2 th,
body.theme-v2 input,
body.theme-v2 select,
body.theme-v2 textarea,
body.theme-v2 button,
body.theme-v2 li {
  font-size: 12.5px !important;
  line-height: 1.3 !important;
}

body.theme-v2 a,
body.theme-v2 a:active,
body.theme-v2 a:visited,
body.theme-v2 a:link,
body.theme-v2 .btnnav,
body.theme-v2 .v2-quick-link,
body.theme-v2 .v2-status-chip {
  font-size: 12.5px !important;
}

body.theme-v2 small,
body.theme-v2 .counts,
body.theme-v2 .v2-brand-kicker,
body.theme-v2 .v2-brand-sub,
body.theme-v2 .v2-status-chip small,
body.theme-v2 .v2-clock {
  font-size: 11px !important;
}

body.theme-v2 a,
body.theme-v2 a:active,
body.theme-v2 a:visited,
body.theme-v2 a:link {
  color: var(--v2-ink);
  text-decoration: none;
  font-weight: 600;
}

body.theme-v2 a:hover {
  color: var(--v2-ink);
  text-decoration: none;
}

body.theme-v2 img {
  max-width: 100%;
  height: auto;
}

body.theme-v2 big,
body.theme-v2 h1,
body.theme-v2 h2,
body.theme-v2 h3 {
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  letter-spacing: 0.04em;
}

body.theme-v2 h1,
body.theme-v2 h2,
body.theme-v2 h3,
body.theme-v2 p {
  margin-top: 0;
}

body.theme-v2 table {
  width: auto;
  max-width: 100%;
  border-collapse: collapse;
}

body.theme-v2 td,
body.theme-v2 th {
  vertical-align: top;
}

body.theme-v2 hr,
body.theme-v2 .line {
  border: 0;
  height: 1px;
  margin: 8px 0;
  background: linear-gradient(90deg, transparent, var(--v2-border), transparent);
}

body.theme-v2 .gamediv {
  width: min(100%, 680px);
  max-width: min(680px, calc(100vw - 8px), calc(100dvw - 8px));
  margin: 0 auto;
  padding: 6px;
  background: linear-gradient(180deg, var(--v2-page), rgba(255, 255, 255, 0.7));
  border: 1px solid var(--v2-border);
  border-radius: 16px;
  box-shadow: var(--v2-shadow);
  color: var(--v2-ink);
  text-align: center;
  text-shadow: none;
  overflow: hidden;
}

body.theme-v2 .inside {
  margin: 6px auto 0;
  padding: 6px;
  background: linear-gradient(180deg, var(--v2-panel-tint), var(--v2-panel));
  border: 1px solid var(--v2-border);
  border-radius: 12px;
  color: var(--v2-ink);
}

body.theme-v2 .insideplayer,
body.theme-v2 .insidediv,
body.theme-v2 .center,
body.theme-v2 .left,
body.theme-v2 .right,
body.theme-v2 .adiv,
body.theme-v2 .bannerdiv,
body.theme-v2 .justdiv,
body.theme-v2 .divmsg,
body.theme-v2 .div_topic,
body.theme-v2 .playerinfo,
body.theme-v2 .box,
body.theme-v2 .divas,
body.theme-v2 .div_center,
body.theme-v2 .expdiv,
body.theme-v2 .logindiv {
  margin: 4px auto;
  max-width: 100%;
  padding: 8px 10px;
  background: linear-gradient(180deg, var(--v2-panel-soft), var(--v2-panel));
  border: 1px solid var(--v2-border-soft);
  border-radius: 10px;
  color: var(--v2-ink);
  word-wrap: break-word;
  text-shadow: none;
  box-shadow: none;
}

body.theme-v2 .bannerdiv {
  padding: 6px 8px;
}

body.theme-v2 .left {
  text-align: left;
}

body.theme-v2 .center {
  text-align: center;
}

body.theme-v2 .right {
  text-align: right;
}

body.theme-v2 .center > .right {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  width: 100%;
}

body.theme-v2 .box {
  padding: 0;
  overflow: hidden;
}

body.theme-v2 .box table td,
body.theme-v2 .box table th {
  padding: 8px 10px;
}

body.theme-v2 .box table {
  width: 100%;
}

body.theme-v2 .center > .box > table:not([width]),
body.theme-v2 .left > .box > table:not([width]),
body.theme-v2 .right > .box > table:not([width]) {
  width: 100%;
}

body.theme-v2 .center > .box > table:not([width]) > tbody > tr,
body.theme-v2 .center > .box > table:not([width]) > tr,
body.theme-v2 .left > .box > table:not([width]) > tbody > tr,
body.theme-v2 .left > .box > table:not([width]) > tr,
body.theme-v2 .right > .box > table:not([width]) > tbody > tr,
body.theme-v2 .right > .box > table:not([width]) > tr {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 18px;
  padding: 4px 6px;
}

body.theme-v2 .center > .box > table:not([width]) > tbody > tr > td,
body.theme-v2 .center > .box > table:not([width]) > tr > td,
body.theme-v2 .left > .box > table:not([width]) > tbody > tr > td,
body.theme-v2 .left > .box > table:not([width]) > tr > td,
body.theme-v2 .right > .box > table:not([width]) > tbody > tr > td,
body.theme-v2 .right > .box > table:not([width]) > tr > td {
  display: block;
  width: auto !important;
  padding: 0 !important;
  border: 0;
}

body.theme-v2 .center > .box > table:not([width]) > tbody > tr > td:first-child,
body.theme-v2 .center > .box > table:not([width]) > tr > td:first-child,
body.theme-v2 .left > .box > table:not([width]) > tbody > tr > td:first-child,
body.theme-v2 .left > .box > table:not([width]) > tr > td:first-child,
body.theme-v2 .right > .box > table:not([width]) > tbody > tr > td:first-child,
body.theme-v2 .right > .box > table:not([width]) > tr > td:first-child {
  display: flex;
  flex: 0 0 140px;
  align-self: stretch;
  align-items: center;
  justify-content: center;
  width: 140px !important;
  max-width: 140px;
  text-align: center;
  white-space: normal;
}

body.theme-v2 .center > .box > table:not([width]) > tbody > tr > td:first-child img,
body.theme-v2 .center > .box > table:not([width]) > tr > td:first-child img,
body.theme-v2 .left > .box > table:not([width]) > tbody > tr > td:first-child img,
body.theme-v2 .left > .box > table:not([width]) > tr > td:first-child img,
body.theme-v2 .right > .box > table:not([width]) > tbody > tr > td:first-child img,
body.theme-v2 .right > .box > table:not([width]) > tr > td:first-child img {
  display: block;
  width: auto;
  max-width: 140px;
  max-height: 132px;
  margin: 0 auto;
  border-radius: 10px;
}

body.theme-v2 .center > .box > table:not([width]) > tbody > tr > td:last-child,
body.theme-v2 .center > .box > table:not([width]) > tr > td:last-child,
body.theme-v2 .left > .box > table:not([width]) > tbody > tr > td:last-child,
body.theme-v2 .left > .box > table:not([width]) > tr > td:last-child,
body.theme-v2 .right > .box > table:not([width]) > tbody > tr > td:last-child,
body.theme-v2 .right > .box > table:not([width]) > tr > td:last-child {
  flex: 1 1 auto;
  min-width: 0;
  padding: 6px 8px 6px 6px !important;
  text-align: left;
  letter-spacing: 0;
  font-family: Tahoma, sans-serif;
  font-size: 13px !important;
  line-height: 1.46 !important;
  overflow-wrap: break-word;
  word-break: normal;
}

body.theme-v2 .box table td:first-child,
body.theme-v2 .box table th:first-child {
  width: 1%;
  white-space: nowrap;
}

body.theme-v2 .counts {
  display: inline-block;
  min-width: 20px;
  padding: 2px 8px;
  margin-left: 6px;
  background: rgba(64, 107, 171, 0.1);
  border: 1px solid rgba(64, 107, 171, 0.16);
  border-radius: 999px;
  color: var(--v2-ink-soft);
  text-shadow: none;
}

body.theme-v2 .link,
body.theme-v2 .link2,
body.theme-v2 .floatingdiv2,
body.theme-v2 .regdiv,
body.theme-v2 #reg {
  display: block;
  margin: 4px auto;
  padding: 8px 10px;
  background: linear-gradient(180deg, var(--v2-panel-soft), var(--v2-panel));
  border: 1px solid var(--v2-border);
  border-radius: 9px;
  color: var(--v2-ink);
  text-align: left;
  text-shadow: none;
  box-shadow: none;
}

body.theme-v2 .floatingdiv {
  display: block;
  margin: 4px auto;
  border-radius: 9px;
}

body.theme-v2 .regdiv,
body.theme-v2 #reg {
  text-align: center;
}

body.theme-v2 .floatingdiv {
  padding: 14px 12px;
  color: #fff;
  text-align: center;
  font-size: 16px !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
  background-color: rgba(31, 49, 74, 0.44);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: rgba(255, 255, 255, 0.34);
}

body.theme-v2 .link:hover,
body.theme-v2 .link2:hover,
body.theme-v2 .floatingdiv2:hover,
body.theme-v2 .regdiv:hover,
body.theme-v2 #reg:hover,
body.theme-v2 .floatingdiv:hover {
  border-color: var(--v2-border);
  background: linear-gradient(180deg, var(--v2-panel-soft), var(--v2-panel));
}

body.theme-v2 .floatingdiv:hover {
  color: #fff;
  background-color: rgba(31, 49, 74, 0.44);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

body.theme-v2 .link:hover a,
body.theme-v2 .link2:hover a,
body.theme-v2 .floatingdiv2:hover a,
body.theme-v2 .regdiv:hover a,
body.theme-v2 #reg:hover a,
body.theme-v2 .floatingdiv:hover a {
  color: inherit !important;
  text-decoration: none;
}

body.theme-v2 .link img,
body.theme-v2 .link2 img,
body.theme-v2 .floatingdiv2 img {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: middle;
}

body.theme-v2 .button,
body.theme-v2 .btnnav,
body.theme-v2 .linkas,
body.theme-v2 input[type="submit"],
body.theme-v2 input[type="button"],
body.theme-v2 button,
body.theme-v2 .v2-quick-link,
body.theme-v2 .v2-theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 32px;
  padding: 6px 12px;
  background: linear-gradient(180deg, var(--v2-button-top), var(--v2-button-bottom));
  border: 1px solid var(--v2-border);
  border-radius: 10px;
  color: var(--v2-ink) !important;
  font-weight: 700;
  text-shadow: none;
  box-shadow: none;
  cursor: pointer;
}

body.theme-v2 .button:hover,
body.theme-v2 .btnnav:hover,
body.theme-v2 .linkas:hover,
body.theme-v2 input[type="submit"]:hover,
body.theme-v2 input[type="button"]:hover,
body.theme-v2 button:hover,
body.theme-v2 .v2-quick-link:hover,
body.theme-v2 .v2-theme-toggle:hover {
  border-color: var(--v2-border);
  color: var(--v2-ink) !important;
}

body.theme-v2 .linkas {
  display: block;
  text-align: center;
}

body.theme-v2 .linkas a {
  display: block;
  color: inherit !important;
}

body.theme-v2 textarea,
body.theme-v2 input[type="text"],
body.theme-v2 input[type="password"],
body.theme-v2 input[type="number"],
body.theme-v2 select {
  width: min(100%, 280px);
  max-width: 100%;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--v2-border);
  border-radius: 10px;
  color: var(--v2-ink);
  box-shadow: none;
}

html[data-v2-mode="dark"] body.theme-v2 textarea,
html[data-v2-mode="dark"] body.theme-v2 input[type="text"],
html[data-v2-mode="dark"] body.theme-v2 input[type="password"],
html[data-v2-mode="dark"] body.theme-v2 input[type="number"],
html[data-v2-mode="dark"] body.theme-v2 select {
  background: rgba(16, 28, 45, 0.96);
}

body.theme-v2 textarea {
  width: min(100%, 360px);
  min-height: 78px;
  resize: vertical;
}

body.theme-v2 .ok,
body.theme-v2 .okas {
  background: linear-gradient(180deg, rgba(180, 236, 199, 0.95), rgba(235, 250, 240, 0.95));
  border: 1px solid rgba(47, 135, 87, 0.28);
  color: #173826;
}

body.theme-v2 .error,
body.theme-v2 .erroras,
body.theme-v2 .errordiv {
  background: linear-gradient(180deg, rgba(250, 210, 208, 0.95), rgba(255, 238, 236, 0.95));
  border: 1px solid rgba(189, 74, 69, 0.28);
  color: #5a201d;
}

body.theme-v2 .info {
  background: linear-gradient(180deg, rgba(209, 227, 250, 0.95), rgba(240, 246, 255, 0.95));
  border: 1px solid rgba(64, 107, 171, 0.24);
  color: #1f3b60;
}

body.theme-v2 .kg_counter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 38px;
  padding: 6px 12px;
  background: linear-gradient(180deg, rgba(62, 108, 172, 0.94), rgba(41, 76, 129, 0.96));
  border: 1px solid rgba(121, 165, 226, 0.32);
  border-radius: 10px;
  color: #f8fbff;
  text-shadow: none;
  box-shadow: none;
}

body.theme-v2 .v2-shell-head {
  position: relative;
  display: block;
  min-height: 84px;
  padding: 6px 8px;
  text-align: left;
  overflow: hidden;
}

body.theme-v2 .v2-public-head {
  min-height: 84px;
}

body.theme-v2.theme-public .v2-shell-head {
  justify-content: initial;
}

body.theme-v2.theme-public .v2-brand-block {
  display: none;
}

body.theme-v2.theme-public .v2-brand-block.v2-brand-logo-only {
  display: block;
}

body.theme-v2 .v2-brand-block {
  display: block;
  min-width: 0;
}

body.theme-v2 .v2-brand-logo-only {
  position: relative;
  display: block;
  width: calc(100% - 150px);
  max-width: calc(100% - 150px);
  aspect-ratio: 3575 / 1314;
  overflow: hidden;
  height: auto;
  max-height: 196px;
  padding-right: 0;
  border-radius: 8px;
  pointer-events: none;
  user-select: none;
}

body.theme-v2 .v2-public-head .v2-brand-logo-only {
  height: auto;
  max-height: 196px;
}

body.theme-v2 .v2-brand-logo-only .v2-logo-mark {
  position: absolute;
  top: -32.45%;
  left: -3.92%;
  display: block;
  width: 107.45%;
  max-width: none;
  height: auto;
  object-fit: unset;
  object-position: initial;
}

body.theme-v2 .v2-public-head .v2-brand-logo-only .v2-logo-mark {
  top: -32.45%;
  left: -3.92%;
  width: 107.45%;
  height: auto;
}

body.theme-v2 .v2-logo-mark {
  width: 76px;
  max-width: 24vw;
}

body.theme-v2 .v2-brand-copy {
  display: none;
}

body.theme-v2 .v2-brand-copy big {
  display: block;
  color: var(--v2-ink);
  font-size: 15px !important;
  line-height: 1.15 !important;
}

body.theme-v2 .v2-brand-kicker {
  display: inline-block;
  padding: 1px 6px;
  margin-bottom: 2px;
  background: rgba(218, 123, 33, 0.1);
  border: 1px solid rgba(218, 123, 33, 0.14);
  border-radius: 999px;
  color: var(--v2-accent-strong);
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.theme-v2 .v2-brand-sub {
  display: block;
  margin-top: 2px;
  color: var(--v2-ink-soft);
}

body.theme-v2 .v2-head-tools {
  position: absolute;
  top: 12px;
  right: 8px;
  transform: none;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

body.theme-v2 a.v2-brand-block:hover {
  text-decoration: none;
  opacity: 0.92;
}

body.theme-v2 .v2-clock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 9px;
  background: rgba(64, 107, 171, 0.08);
  border: 1px solid rgba(64, 107, 171, 0.14);
  border-radius: 999px;
  color: var(--v2-ink);
  font-family: 'Orbitron', sans-serif;
}

body.theme-v2 .v2-status-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  text-align: left;
}

body.theme-v2 .v2-status-chip {
  display: block;
  min-width: 0;
  padding: 7px 8px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid var(--v2-border-soft);
  border-radius: 10px;
  color: inherit !important;
}

html[data-v2-mode="dark"] body.theme-v2 .v2-status-chip {
  background: rgba(255, 255, 255, 0.04);
}

body.theme-v2 .v2-status-chip strong {
  display: block;
  font-size: 12.5px !important;
  line-height: 1.2 !important;
  overflow-wrap: anywhere;
}

body.theme-v2 .v2-status-chip small {
  display: block;
  margin-top: 2px;
  color: var(--v2-ink-soft);
}

body.theme-v2 .v2-status-chip.is-profile strong,
body.theme-v2 .v2-status-chip.is-currency strong {
  color: var(--v2-accent-strong);
}

body.theme-v2 .v2-status-chip.is-health strong {
  color: var(--v2-good);
}

body.theme-v2 .v2-quick-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin: 6px 0 0;
}

body.theme-v2 .v2-quick-link {
  width: 100%;
  min-height: 30px;
  padding: 5px 8px;
}

body.theme-v2 .v2-resource-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin: 6px 0 0;
}

body.theme-v2 .v2-resource-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 5px 8px;
  background: linear-gradient(180deg, var(--v2-button-top), var(--v2-button-bottom));
  border: 1px solid var(--v2-border);
  border-radius: 10px;
  color: var(--v2-ink) !important;
  font-weight: 700;
  text-align: center;
}

body.theme-v2 .v2-resource-link small,
body.theme-v2 .v2-resource-link b {
  display: inline;
  font-size: inherit !important;
  line-height: inherit !important;
  color: inherit;
}

body.theme-v2 .insideplayer.v2-footer {
  margin-top: 6px;
  background: linear-gradient(180deg, var(--v2-panel-soft), var(--v2-panel-tint));
  border-color: var(--v2-border);
  color: var(--v2-ink);
  box-shadow: none;
}

html[data-v2-mode="dark"] body.theme-v2 .insideplayer.v2-footer {
  background: linear-gradient(180deg, rgba(31, 46, 71, 0.98), rgba(21, 34, 55, 0.98));
  border-color: rgba(140, 170, 214, 0.22);
  color: var(--v2-ink);
}

html[data-v2-mode="dark"] body.theme-v2 .insideplayer.v2-footer span {
  color: var(--v2-ink);
}

body.theme-v2 .v2-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 14px;
  margin-top: 6px;
  padding: 8px 10px;
  color: inherit;
  text-align: center;
  font-weight: 700;
  border-top: 1px solid var(--v2-border-soft);
}

body.theme-v2 .v2-footer span,
body.theme-v2 .v2-footer a {
  color: inherit !important;
}

body.theme-v2 .v2-footer span:last-child {
  text-align: center;
}

body.theme-v2 .fighter-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  background: transparent;
  border: 0;
}

body.theme-v2 .fighter-item,
body.theme-v2 .fighter-power,
body.theme-v2 .circle-box {
  padding: 8px;
  background: linear-gradient(180deg, var(--v2-panel-soft), var(--v2-panel));
  border: 1px solid var(--v2-border-soft);
  border-radius: 10px;
  color: var(--v2-ink);
  text-align: center;
}

body.theme-v2 .fighter-item img {
  display: block;
  margin: 0 auto;
}

@media (max-width: 600px) {
  body.theme-v2 {
    padding: 4px 4px 12px;
  }

  body.theme-v2 .gamediv {
    width: 100%;
    padding: 5px;
    border-radius: 12px;
  }

  body.theme-v2 .fighter-box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.theme-v2 .v2-status-strip {
    grid-template-columns: 1fr;
  }

  body.theme-v2 .v2-resource-nav {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 460px) {
  body.theme-v2 .v2-shell-head {
    min-height: 70px;
    padding: 5px 6px;
  }

  body.theme-v2 .v2-public-head {
    min-height: 70px;
  }

  body.theme-v2 .v2-head-tools {
    top: 6px;
    right: 6px;
    transform: none;
    gap: 4px;
  }

  body.theme-v2 .v2-brand-sub {
    display: none;
  }

  body.theme-v2 .v2-brand-logo-only .v2-logo-mark {
    top: -32.45%;
    left: -3.92%;
    width: 107.45%;
    height: auto;
    max-width: none;
  }

  body.theme-v2 .v2-brand-logo-only {
    width: calc(100% - 128px);
    max-width: calc(100% - 128px);
    aspect-ratio: 3575 / 1314;
    height: auto;
    max-height: 90px;
  }

  body.theme-v2 .v2-public-head .v2-brand-logo-only {
    height: auto;
    max-height: 90px;
  }

  body.theme-v2 .v2-public-head .v2-brand-logo-only .v2-logo-mark {
    top: -32.45%;
    left: -3.92%;
    width: 107.45%;
    height: auto;
  }

  body.theme-v2 .v2-clock {
    min-height: 28px;
    padding: 0 7px;
    font-size: 10.5px !important;
  }

  body.theme-v2 .v2-theme-toggle,
  body.theme-v2 .v2-quick-link {
    min-height: 28px;
    padding: 5px 8px;
    font-size: 12px !important;
  }

  body.theme-v2 .v2-quick-link i {
    display: none;
  }

  body.theme-v2 .v2-quick-nav {
    gap: 4px;
  }

  body.theme-v2 .v2-resource-nav {
    gap: 4px;
  }

  body.theme-v2 .v2-resource-link {
    min-height: 28px;
    padding: 5px 6px;
    font-size: 11.5px !important;
  }

  body.theme-v2 .box table[width="100%"],
  body.theme-v2 .box table[width="100%"] tbody,
  body.theme-v2 .box table[width="100%"] tr,
  body.theme-v2 .box table[width="100%"] td,
  body.theme-v2 .box table[width="100%"] th {
    display: block;
    width: 100%;
  }

  body.theme-v2 .box table[width="100%"] td:first-child,
  body.theme-v2 .box table[width="100%"] th:first-child {
    white-space: normal;
    text-align: center;
  }

  body.theme-v2 .center > .box > table:not([width]) > tbody > tr,
  body.theme-v2 .center > .box > table:not([width]) > tr,
  body.theme-v2 .left > .box > table:not([width]) > tbody > tr,
  body.theme-v2 .left > .box > table:not([width]) > tr,
  body.theme-v2 .right > .box > table:not([width]) > tbody > tr,
  body.theme-v2 .right > .box > table:not([width]) > tr {
    gap: 10px;
    padding: 3px 2px;
  }

  body.theme-v2 .center > .box > table:not([width]) > tbody > tr > td:first-child,
  body.theme-v2 .center > .box > table:not([width]) > tr > td:first-child,
  body.theme-v2 .left > .box > table:not([width]) > tbody > tr > td:first-child,
  body.theme-v2 .left > .box > table:not([width]) > tr > td:first-child,
  body.theme-v2 .right > .box > table:not([width]) > tbody > tr > td:first-child,
  body.theme-v2 .right > .box > table:not([width]) > tr > td:first-child {
    flex-basis: 104px;
    width: 104px !important;
    max-width: 104px;
    text-align: center;
  }

  body.theme-v2 .center > .box > table:not([width]) > tbody > tr > td:first-child img,
  body.theme-v2 .center > .box > table:not([width]) > tr > td:first-child img,
  body.theme-v2 .left > .box > table:not([width]) > tbody > tr > td:first-child img,
  body.theme-v2 .left > .box > table:not([width]) > tr > td:first-child img,
  body.theme-v2 .right > .box > table:not([width]) > tbody > tr > td:first-child img,
  body.theme-v2 .right > .box > table:not([width]) > tr > td:first-child img {
    max-width: 104px;
    max-height: 104px;
    margin: 0 auto;
  }

  body.theme-v2 .center > .box > table:not([width]) > tbody > tr > td:last-child,
  body.theme-v2 .center > .box > table:not([width]) > tr > td:last-child,
  body.theme-v2 .left > .box > table:not([width]) > tbody > tr > td:last-child,
  body.theme-v2 .left > .box > table:not([width]) > tr > td:last-child,
  body.theme-v2 .right > .box > table:not([width]) > tbody > tr > td:last-child,
  body.theme-v2 .right > .box > table:not([width]) > tr > td:last-child {
    padding: 4px 4px 4px 2px !important;
    font-size: 12.5px !important;
    line-height: 1.45 !important;
  }

  body.theme-v2 textarea,
  body.theme-v2 input[type="text"],
  body.theme-v2 input[type="password"],
  body.theme-v2 input[type="number"],
  body.theme-v2 select {
    width: 100%;
  }
}

@media (max-width: 360px) {
  body.theme-v2 .fighter-box {
    grid-template-columns: 1fr;
  }

  body.theme-v2 .v2-footer {
    flex-direction: column;
    align-items: center;
  }

  body.theme-v2 .v2-logo-mark {
    width: 60px;
  }

  body.theme-v2 .v2-clock,
  body.theme-v2 .v2-theme-toggle,
  body.theme-v2 .v2-quick-link {
    font-size: 11px !important;
  }
}
