:root {
  --zt-black: #06070a;
  --zt-graphite: #12151c;
  --zt-panel: rgba(16, 18, 25, 0.92);
  --zt-panel-strong: #191d27;
  --zt-red: #d72622;
  --zt-orange: #f36b12;
  --zt-gold: #f6c453;
  --zt-white: #f8fafc;
  --zt-muted: #b7c0cf;
  --zt-line: rgba(255, 255, 255, 0.11);
  --zt-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body.zt-site,
body.zt-game-shell {
  min-height: 100vh;
  margin: 0;
  color: var(--zt-white);
  background:
    radial-gradient(circle at 18% 12%, rgba(243, 107, 18, 0.24), transparent 28rem),
    radial-gradient(circle at 84% 10%, rgba(215, 38, 34, 0.18), transparent 30rem),
    linear-gradient(180deg, rgba(6, 7, 10, 0.72), rgba(6, 7, 10, 0.96)),
    url("/assets/img/criatank/battle-bg.png") center / cover fixed no-repeat;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  letter-spacing: 0;
}

html,
body.zt-site {
  height: auto !important;
  min-height: 100% !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

body.zt-site * {
  touch-action: pan-y;
}

.zt-page,
.zt-shell-main,
.zt-content-panel {
  overflow: visible;
}

body.zt-site::before,
body.zt-game-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  z-index: 0;
}

.zt-page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.zt-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.zt-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--zt-line);
  background: rgba(7, 8, 12, 0.88);
  backdrop-filter: blur(16px);
}

.zt-nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.zt-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--zt-white);
  text-decoration: none;
  min-width: 0;
}

.zt-brand:hover {
  color: var(--zt-white);
  text-decoration: none;
}

.zt-brand img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(246, 196, 83, 0.24));
}

.zt-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.zt-brand-title {
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
}

.zt-brand-subtitle {
  margin-top: 6px;
  color: var(--zt-gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.zt-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--zt-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--zt-white);
  font-size: 24px;
  line-height: 1;
}

.zt-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.zt-nav a,
.zt-nav button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--zt-white);
  background: transparent;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.zt-nav a:hover,
.zt-nav button:hover {
  transform: translateY(-1px);
  color: var(--zt-gold);
  border-color: rgba(246, 196, 83, 0.32);
  background: rgba(246, 196, 83, 0.08);
  text-decoration: none;
}

.zt-nav .zt-nav-cta,
.zt-btn-primary {
  color: #120b05 !important;
  background: linear-gradient(135deg, var(--zt-gold), var(--zt-orange)) !important;
  border-color: rgba(255,255,255,0.08) !important;
  box-shadow: 0 12px 30px rgba(243, 107, 18, 0.24);
}

.zt-nav .zt-nav-danger {
  color: #fff !important;
  background: linear-gradient(135deg, #aa1515, var(--zt-red)) !important;
}

.zt-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 34px;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: 48px 0 34px;
}

.zt-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border: 1px solid rgba(246, 196, 83, 0.36);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--zt-gold);
  background: rgba(246, 196, 83, 0.08);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.zt-hero-title {
  margin: 18px 0 16px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.95;
  font-weight: 1000;
  text-transform: uppercase;
}

.zt-gradient-text {
  color: var(--zt-gold);
  background: linear-gradient(135deg, #fff5cc 0%, var(--zt-gold) 42%, var(--zt-orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.zt-hero-copy {
  max-width: 680px;
  margin: 0;
  color: var(--zt-muted);
  font-size: clamp(16px, 2.3vw, 20px);
  line-height: 1.65;
}

.zt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.zt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--zt-line);
  border-radius: 8px;
  padding: 12px 18px;
  color: var(--zt-white);
  background: rgba(255,255,255,0.06);
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease, filter .2s ease, background .2s ease;
}

.zt-btn:hover {
  transform: translateY(-2px);
  color: var(--zt-white);
  filter: brightness(1.07);
  text-decoration: none;
}

.zt-btn-block {
  width: 100%;
}

.zt-card {
  border: 1px solid var(--zt-line);
  border-radius: 8px;
  background: var(--zt-panel);
  box-shadow: var(--zt-shadow);
}

.zt-card-soft {
  border: 1px solid rgba(246, 196, 83, 0.22);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    rgba(15, 18, 25, 0.92);
}

.zt-auth-card {
  width: min(100%, 430px);
  margin-left: auto;
  padding: 24px;
}

.zt-auth-logo {
  display: block;
  width: min(260px, 82%);
  height: auto;
  margin: 0 auto 8px;
}

.zt-card-title {
  margin: 0 0 6px;
  color: var(--zt-white);
  font-size: 26px;
  font-weight: 950;
  text-align: center;
}

.zt-card-subtitle {
  margin: 0 0 22px;
  color: var(--zt-muted);
  text-align: center;
}

.zt-form-group {
  margin-bottom: 14px;
}

.zt-label {
  display: block;
  margin-bottom: 8px;
  color: var(--zt-gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.zt-site input[type="text"],
.zt-site input[type="email"],
.zt-site input[type="username"],
.zt-site input[type="password"],
.zt-site input[type="number"],
.zt-site input[type="file"],
.zt-site select,
.zt-site textarea,
.zt-site .form-control,
.zt-site .custom-select {
  min-height: 48px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: var(--zt-white);
  box-shadow: none;
}

.zt-site input::placeholder,
.zt-site textarea::placeholder {
  color: rgba(248,250,252,0.58);
}

.zt-site input:focus,
.zt-site select:focus,
.zt-site textarea:focus,
.zt-site .form-control:focus {
  border-color: rgba(246,196,83,0.75);
  background: rgba(255,255,255,0.11);
  color: var(--zt-white);
  box-shadow: 0 0 0 3px rgba(246,196,83,0.16);
}

.zt-site a {
  color: var(--zt-gold);
}

.zt-site a:hover {
  color: #ffe39a;
}

.zt-feature-grid,
.zt-section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.zt-feature {
  padding: 18px;
  border: 1px solid var(--zt-line);
  border-radius: 8px;
  background: rgba(255,255,255,0.055);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.zt-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(246,196,83,0.38);
  background: rgba(246,196,83,0.08);
}

.zt-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 8px;
  color: #140a04;
  background: linear-gradient(135deg, var(--zt-gold), var(--zt-orange));
  font-weight: 950;
}

.zt-section {
  padding: 42px 0;
}

.zt-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.zt-section h2,
.zt-panel-title {
  margin: 0;
  color: var(--zt-white);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 950;
}

.zt-section p {
  color: var(--zt-muted);
}

.zt-shell-main {
  flex: 1;
  padding: 30px 0 42px;
}

.zt-dashboard {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 20px;
}

.zt-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
  overflow: hidden;
}

.zt-player {
  padding: 18px;
  border-bottom: 1px solid var(--zt-line);
}

.zt-player-name {
  margin: 0;
  color: var(--zt-white);
  font-weight: 950;
}

.zt-player-server {
  margin: 5px 0 0;
  color: var(--zt-gold);
  font-size: 13px;
  font-weight: 800;
}

.zt-side-nav {
  display: grid;
  gap: 6px;
  padding: 12px;
}

.zt-side-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--zt-white);
  text-decoration: none;
  font-weight: 800;
}

.zt-side-nav a:hover,
.zt-side-nav a.is-active {
  color: #160b04;
  background: linear-gradient(135deg, var(--zt-gold), var(--zt-orange));
}

.zt-content-panel {
  min-width: 0;
  padding: 22px;
}

.zt-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: stretch;
}

.zt-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.zt-stat {
  padding: 16px;
  border: 1px solid var(--zt-line);
  border-radius: 8px;
  background: rgba(255,255,255,0.055);
}

.zt-stat small {
  display: block;
  color: var(--zt-muted);
  font-weight: 800;
}

.zt-stat strong {
  display: block;
  margin-top: 8px;
  color: var(--zt-gold);
  font-size: 22px;
}

.zt-table-wrap,
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.zt-site table,
.zt-site .table {
  width: 100%;
  color: var(--zt-white);
}

.zt-site .table th,
.zt-site .table td {
  border-color: rgba(255,255,255,0.1) !important;
  vertical-align: middle;
}

.zt-site .table-striped tbody tr:nth-of-type(odd) {
  background: rgba(255,255,255,0.04);
}

.zt-site .modal-content,
.zt-site .card,
.zt-site .panel,
.zt-site .grid.simple,
.zt-site .portlet {
  border: 1px solid var(--zt-line);
  border-radius: 8px;
  background: var(--zt-panel) !important;
  color: var(--zt-white);
}

.zt-site .modal-footer.d-block {
  display: block !important;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 !important;
}

.zt-site .modal-footer .w-85,
.zt-site .modal-footer .row,
.zt-site .modal-footer .col {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.zt-site .modal-footer .row {
  display: block !important;
}

.zt-site .modal-footer .alert {
  margin-left: 0 !important;
  margin-right: 0 !important;
  overflow-wrap: anywhere;
}

.zt-site .btn,
.zt-site button.btn,
.zt-site input[type="submit"] {
  border-radius: 8px;
  font-weight: 900;
}

.zt-site .btn-primary,
.zt-site .btn-success {
  border-color: transparent;
  color: #160b04;
  background: linear-gradient(135deg, var(--zt-gold), var(--zt-orange));
}

.zt-site .btn-danger {
  border-color: transparent;
  background: linear-gradient(135deg, #9d1414, var(--zt-red));
}

.pix-wrap .pix-hero,
.pix-wrap .pix-form,
.pix-wrap .pix-result,
.pix-wrap .pix-card {
  border-radius: 8px !important;
  border-color: rgba(246,196,83,0.22) !important;
  background: rgba(16,18,25,0.92) !important;
}

.pix-wrap .pix-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)) !important;
}

.pix-wrap .pix-btn {
  min-height: 44px;
  border-radius: 8px !important;
  color: #160b04 !important;
  background: linear-gradient(135deg, var(--zt-gold), var(--zt-orange)) !important;
}

.zt-footer {
  margin-top: auto;
  border-top: 1px solid var(--zt-line);
  background: rgba(7,8,12,0.82);
}

.zt-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  color: var(--zt-muted);
  font-size: 14px;
}

.zt-footer strong {
  color: var(--zt-gold);
}

.zt-game-shell {
  overflow: hidden;
}

.zt-game-nav {
  position: relative;
  z-index: 20;
  min-height: 68px;
  border-bottom: none;
  background: transparent !important;
  backdrop-filter: none;
  box-shadow: none;
}

.zt-game-nav .navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--zt-white) !important;
  font-weight: 950;
  text-transform: uppercase;
  background: transparent !important;
}

.zt-game-nav .navbar-brand img {
  width: auto;
  height: 72px;
  max-width: 220px;
  object-fit: contain;
  background: transparent !important;
}

.zt-game-nav .nav-link {
  min-height: 48px;
  padding: 14px 18px !important;
  color: var(--zt-white) !important;
  font-weight: 850;
}

.zt-game-nav .nav-link:hover {
  color: var(--zt-gold) !important;
}

.zt-game-nav .nav-recarregue .nav-link,
.zt-game-nav .zt-game-recharge {
  color: #160b04 !important;
  background: linear-gradient(135deg, var(--zt-gold), var(--zt-orange));
}

#gameOuterContainer,
#gameContainer,
#playgame {
  max-width: 100%;
}

#gameOuterContainer {
  position: relative;
  z-index: 2;
  width: 1000px;
  height: 600px;
  margin: 0 auto;
  background: transparent;
  box-shadow: none;
}

#gameContainer,
#playgame {
  width: 1000px;
  height: 600px;
}

#gameContainer object,
#gameContainer embed {
  max-width: min(1000px, calc(100vw - 18px));
}

.zt-logger-stage {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 10px 8px 8px;
}

.zt-logger-toolbar {
  width: min(1320px, calc(100vw - 16px));
  min-height: 48px;
  margin: 0 auto 8px;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(246,196,83,.28);
  background: rgba(8, 10, 15, .94);
  box-shadow: 0 12px 34px rgba(0,0,0,.34);
}

.zt-logger-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.zt-logger-brand img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.zt-logger-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.zt-tool-btn,
.zt-quality-wrap {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
  color: #f8fafc;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.zt-tool-btn:hover {
  color: #160b04;
  background: var(--zt-gold);
  text-decoration: none;
}

.zt-tool-primary {
  color: #160b04;
  border-color: rgba(246,196,83,.76);
  background: linear-gradient(135deg, var(--zt-gold), var(--zt-orange));
}

.zt-quality-wrap {
  gap: 7px;
  color: var(--zt-gold);
}

.zt-quality-wrap select {
  height: 24px;
  border: 0;
  background: #11151d;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.zt-logger-board {
  position: relative;
  width: min(1320px, calc(100vw - 16px));
  min-height: 666px;
  margin: 0 auto;
  padding: 0 150px 56px;
}

.zt-angle-stack {
  position: absolute;
  top: 0;
  z-index: 3;
  width: 138px;
  display: grid;
  gap: 9px;
  pointer-events: none;
}

.zt-angle-left { left: 2px; }
.zt-angle-right { right: 2px; }

.zt-angle-card {
  padding: 8px 8px 7px;
  border: 1px solid rgba(86, 229, 255, .48);
  background: rgba(4, 13, 28, .58);
  box-shadow: 0 0 18px rgba(28, 207, 255, .18), inset 0 0 18px rgba(28, 207, 255, .10);
  color: #bff8ff;
  text-shadow: 0 0 7px rgba(65, 230, 255, .8);
}

.zt-angle-card h3 {
  margin: 0 0 5px;
  color: #dffcff;
  font-size: 19px;
  line-height: 22px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0;
}

.zt-angle-card table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  line-height: 14px;
  font-style: italic;
  font-weight: 800;
}

.zt-angle-card th {
  color: #eefcff;
  font-size: 9px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(191,248,255,.32);
}

.zt-angle-card td,
.zt-angle-card th {
  padding: 1px 2px;
  text-align: center;
}

.zt-distance-ruler {
  position: absolute;
  left: 150px;
  right: 150px;
  bottom: 12px;
  z-index: 3;
  height: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 9px;
  border-top: 3px solid rgba(203, 251, 255, .88);
  color: #dffcff;
  text-shadow: 0 0 9px rgba(65, 230, 255, .9);
  font-size: 20px;
  font-style: italic;
  font-weight: 900;
}

.zt-distance-ruler span {
  position: relative;
  min-width: 22px;
  text-align: center;
}

.zt-distance-ruler span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -14px;
  width: 2px;
  height: 12px;
  margin-left: -1px;
  background: rgba(203, 251, 255, .92);
  box-shadow: 0 0 8px rgba(65, 230, 255, .75);
}

.zt-game-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #05070a;
  color: var(--zt-gold);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .zt-game-nav .navbar-nav {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .zt-game-nav .nav-link {
    text-align: center;
  }
}

.zt-fade-in {
  animation: ztFadeIn .45s ease both;
}

@keyframes ztFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .zt-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .zt-auth-card {
    margin: 0;
  }

  .zt-dashboard,
  .zt-home-grid {
    grid-template-columns: 1fr;
  }

  .zt-sidebar {
    position: relative;
    top: 0;
  }
}

@media (max-width: 820px) {
  .zt-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .zt-nav-wrap {
    min-height: 70px;
  }

  .zt-nav {
    display: none;
    width: 100%;
    padding: 0 0 14px;
    justify-content: stretch;
  }

  .zt-topbar.is-open .zt-nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .zt-nav a,
  .zt-nav button {
    width: 100%;
    justify-content: center;
  }

  .zt-nav-wrap {
    flex-wrap: wrap;
  }

  .zt-feature-grid,
  .zt-section-grid,
  .zt-stat-grid {
    grid-template-columns: 1fr;
  }

  .zt-footer-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 18px 0;
  }
}

@media (max-width: 520px) {
  .zt-container {
    width: min(100% - 20px, 1180px);
  }

  .zt-brand img {
    width: 52px;
    height: 52px;
  }

  .zt-brand-title {
    font-size: 18px;
  }

  .zt-brand-subtitle {
    font-size: 10px;
  }

  .zt-hero {
    padding-top: 28px;
  }

  .zt-auth-card,
  .zt-content-panel {
    padding: 16px;
  }

  .zt-btn,
  .zt-nav a,
  .zt-nav button {
    min-height: 50px;
  }
}

/* Compact readability pass: keeps the new identity, but makes every page easier to read and scroll. */
html {
  height: auto !important;
  min-height: 100% !important;
  position: static !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

body.zt-site {
  height: auto !important;
  min-height: 100vh !important;
  position: static !important;
  overflow-y: visible !important;
  overflow-x: hidden !important;
  font-size: 14px;
  background:
    linear-gradient(180deg, rgba(3, 4, 7, 0.82), rgba(3, 4, 7, 0.9)),
    url("/assets/img/criatank/battle-bg.png") center / cover fixed no-repeat !important;
}

.zt-page,
.zt-shell-main,
.zt-container,
.zt-dashboard,
.zt-content-panel {
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

.zt-container {
  width: min(1040px, calc(100% - 28px)) !important;
}

.zt-nav-wrap {
  min-height: 62px !important;
}

.zt-brand img {
  width: 46px !important;
  height: 46px !important;
}

.zt-brand-title {
  color: #fff !important;
  font-size: 20px !important;
}

.zt-brand-subtitle {
  color: #ffd66b !important;
  font-size: 11px !important;
}

.zt-nav a,
.zt-nav button {
  min-height: 36px !important;
  padding: 8px 12px !important;
  color: #ffd66b !important;
  font-size: 13px !important;
}

.zt-nav .zt-nav-cta,
.zt-btn-primary {
  color: #160900 !important;
}

.zt-hero {
  min-height: auto !important;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px) !important;
  gap: 24px !important;
  align-items: start !important;
  padding: 36px 0 30px !important;
}

.zt-kicker {
  color: #ffe08a !important;
  background: rgba(0, 0, 0, 0.48) !important;
  font-size: 12px !important;
}

.zt-hero-title {
  color: #fff !important;
  font-size: clamp(30px, 4.5vw, 54px) !important;
  line-height: 1.04 !important;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.75);
}

.zt-gradient-text {
  color: #ffbf3d !important;
  background: linear-gradient(135deg, #fff3c4 0%, #ffc247 42%, #ff6b12 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.zt-hero-copy,
.zt-section p,
.zt-card-subtitle,
.zt-feature p,
.pix-hero p,
.pix-card p {
  color: #eef3fb !important;
}

.zt-hero-copy {
  font-size: 16px !important;
  line-height: 1.5 !important;
}

.zt-card,
.zt-card-soft,
.zt-content-panel,
.zt-feature,
.pix-wrap .pix-hero,
.pix-wrap .pix-form,
.pix-wrap .pix-result,
.pix-wrap .pix-card {
  background: rgba(10, 12, 18, 0.95) !important;
  border-color: rgba(255, 198, 83, 0.36) !important;
}

.zt-auth-card {
  width: min(100%, 360px) !important;
  padding: 20px !important;
}

.zt-auth-logo {
  width: min(180px, 70%) !important;
}

.zt-card-title {
  color: #fff !important;
  font-size: 23px !important;
}

.zt-feature-grid,
.zt-section-grid {
  gap: 12px !important;
}

.zt-feature {
  padding: 14px !important;
}

.zt-feature h3,
.pix-card h3,
.zt-panel-title,
.zt-section h2 {
  color: #fff !important;
}

.zt-feature p,
.pix-card p {
  font-size: 13px !important;
  line-height: 1.45 !important;
}

.zt-dashboard {
  grid-template-columns: 224px minmax(0, 1fr) !important;
  gap: 16px !important;
}

.zt-sidebar {
  top: 78px !important;
}

.zt-player {
  padding: 14px !important;
}

.zt-side-nav {
  padding: 10px !important;
}

.zt-side-nav a {
  min-height: 38px !important;
  padding: 8px 10px !important;
  color: #fff !important;
  font-size: 13px !important;
}

.zt-side-nav a:hover,
.zt-side-nav a.is-active {
  color: #160900 !important;
}

.zt-content-panel {
  padding: 18px !important;
}

.zt-server-card {
  max-width: 420px !important;
  margin: 0 auto !important;
  background: rgba(12, 14, 20, 0.96) !important;
  border: 1px solid rgba(255, 198, 83, 0.34) !important;
}

.zt-server-card .card-header {
  padding: 20px !important;
  background: transparent !important;
}

.zt-server-card .card-title {
  color: #fff !important;
  font-size: 22px !important;
  font-weight: 950 !important;
}

.zt-server-card .card-text {
  color: #eef3fb !important;
}

.zt-server-logo {
  width: 150px !important;
  height: 150px !important;
  object-fit: contain !important;
  padding: 8px !important;
  background: radial-gradient(circle, rgba(255, 198, 83, 0.16), rgba(0, 0, 0, 0.1)) !important;
  border: 1px solid rgba(255, 198, 83, 0.26) !important;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4) !important;
}

.zt-server-play {
  color: #160900 !important;
  background: linear-gradient(135deg, #f6c453, #f36b12) !important;
  border: 0 !important;
  border-radius: 8px !important;
  padding: 12px 18px !important;
}

.pix-hero {
  padding: 16px !important;
  margin-bottom: 14px !important;
}

.pix-hero h2 {
  color: #fff !important;
  font-size: 22px !important;
}

.pix-form {
  padding: 14px !important;
}

.pix-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)) !important;
  gap: 10px !important;
}

.pix-card {
  padding: 13px !important;
}

.pix-card h3 {
  color: #ffbd39 !important;
  font-size: 22px !important;
}

.pix-icon {
  width: 25px !important;
  height: 25px !important;
}

.pix-btn,
.zt-btn {
  min-height: 40px !important;
  padding: 9px 13px !important;
}

.zt-site input[type="text"],
.zt-site input[type="email"],
.zt-site input[type="username"],
.zt-site input[type="password"],
.zt-site input[type="number"],
.zt-site input[type="file"],
.zt-site select,
.zt-site textarea,
.zt-site .form-control,
.zt-site .custom-select {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.26) !important;
}

@media (max-width: 1024px) {
  .zt-hero,
  .zt-dashboard {
    grid-template-columns: 1fr !important;
  }

  .zt-sidebar {
    position: relative !important;
    top: 0 !important;
  }
}

@media (max-width: 520px) {
  .zt-container {
    width: min(100% - 18px, 1040px) !important;
  }

  .zt-hero-title {
    font-size: 32px !important;
  }

  .pix-card-grid {
    grid-template-columns: 1fr !important;
  }
}

.zt-site .modal input,
.zt-site .modal textarea,
.zt-site .modal select,
.zt-site .modal button,
.zt-site .modal label,
.zt-site .modal .form-control,
.zt-site .modal .custom-select,
.zt-site .modal .btn,
.zt-site .modal .close {
  pointer-events: auto !important;
}

.zt-site .modal input,
.zt-site .modal textarea,
.zt-site .modal select,
.zt-site .modal .form-control,
.zt-site .modal .custom-select {
  user-select: text !important;
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  color: #ffffff !important;
  caret-color: #f6c453 !important;
}

.zt-site .modal input::placeholder,
.zt-site .modal textarea::placeholder {
  color: rgba(255, 255, 255, 0.62) !important;
}

.zt-site .modal {
  pointer-events: auto !important;
  z-index: 2050 !important;
}

.zt-site .modal-dialog,
.zt-site .modal-content,
.zt-site .modal-body,
.zt-site .modal-footer,
.zt-character-form {
  pointer-events: auto !important;
}

.zt-site .modal-backdrop {
  z-index: 2040 !important;
}

.zt-character-name-input {
  min-height: 44px !important;
}

.zt-character-form-inline {
  display: grid;
  gap: 10px;
  width: min(100%, 420px);
  margin: 14px auto 0;
  padding: 14px;
  border: 1px solid rgba(246, 196, 83, 0.18);
  border-radius: 8px;
  background: rgba(7, 10, 18, 0.5);
}

.zt-character-alert {
  padding: 10px 12px;
  border-radius: 8px;
  color: #e8fff9;
  background: rgba(20, 128, 112, 0.9);
  font-size: 12px;
  line-height: 1.45;
}

.zt-character-form-inline .form-group {
  margin-bottom: 0 !important;
}

.zt-character-form-inline .zt-character-submit {
  width: 100%;
  min-height: 44px;
}

.zt-character-gender-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.zt-character-gender-title {
  grid-column: 1 / -1;
  display: block;
  color: #f6c453;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.zt-character-gender-option {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  user-select: none;
}

.zt-character-gender-option input {
  width: 18px;
  height: 18px;
  accent-color: #f6a11a;
}

.zt-download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  width: min(100%, 860px);
  margin: 18px auto 0;
}

.zt-download-card {
  display: block;
  padding: 16px;
  border: 1px solid rgba(246, 196, 83, 0.28);
  border-radius: 8px;
  color: #ffffff !important;
  background: rgba(13, 16, 24, 0.94);
  text-align: left;
  text-decoration: none !important;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.zt-download-card strong {
  display: block;
  color: #f6c453;
  font-size: 16px;
}

.zt-download-card span {
  display: block;
  margin-top: 6px;
  color: #e8eef6;
  font-size: 13px;
}

.zt-download-card:hover {
  border-color: rgba(246, 196, 83, 0.72);
  background: rgba(31, 35, 47, 0.98);
  transform: translateY(-1px);
}

.zt-download-note {
  width: min(100%, 760px);
  margin: 8px auto 0;
  color: #eef3fb;
  font-size: 14px;
  line-height: 1.5;
}

.zt-download-card-mac {
  border-color: rgba(91, 201, 255, 0.45);
  background: rgba(10, 24, 34, 0.96);
}

.zt-download-card-mac strong {
  color: #8edcff;
}

.zt-download-card-android {
  border-color: rgba(117, 232, 137, 0.45);
  background: rgba(9, 32, 18, 0.96);
}

.zt-download-card-android strong {
  color: #8ff0a3;
}

/* Logger readability: keep the login visible and high-contrast inside the embedded Flash browser. */
body.zt-site {
  color: #ffffff !important;
  background:
    linear-gradient(180deg, rgba(3, 4, 7, 0.7), rgba(3, 4, 7, 0.94)),
    url("/assets/img/criatank/battle-bg.png") center top / cover fixed no-repeat !important;
}

.zt-topbar {
  background: rgba(5, 6, 10, 0.96) !important;
}

.zt-nav-wrap {
  min-height: 58px !important;
}

.zt-hero {
  width: min(1180px, calc(100% - 28px)) !important;
  grid-template-columns: minmax(0, 1fr) 410px !important;
  gap: 22px !important;
  align-items: start !important;
  padding: 28px 0 18px !important;
}

.zt-hero > div:first-child,
.zt-auth-card,
.zt-feature,
.zt-content-panel {
  border: 1px solid rgba(246, 196, 83, 0.34) !important;
  border-radius: 8px !important;
  background: rgba(8, 10, 16, 0.92) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.46) !important;
}

.zt-hero > div:first-child {
  padding: 22px !important;
}

.zt-auth-card {
  width: 410px !important;
  margin: 0 !important;
  padding: 22px !important;
  position: sticky !important;
  top: 76px !important;
}

.zt-auth-logo {
  width: 150px !important;
  margin-bottom: 6px !important;
}

.zt-card-title {
  font-size: 24px !important;
}

.zt-card-subtitle {
  margin-bottom: 16px !important;
  color: #e9eef8 !important;
}

.zt-label {
  color: #ffd76f !important;
}

.zt-site .form-control,
.zt-site input[type="text"],
.zt-site input[type="username"],
.zt-site input[type="password"] {
  min-height: 52px !important;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.16) !important;
  border: 1px solid rgba(255, 218, 121, 0.38) !important;
  font-size: 16px !important;
}

.zt-site .input-group-text {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(255, 218, 121, 0.38) !important;
}

.zt-btn,
.zt-site .btn {
  min-height: 46px !important;
  font-size: 14px !important;
}

.zt-btn-primary {
  color: #130800 !important;
  background: linear-gradient(135deg, #ffe28c, #ff9a23) !important;
}

.zt-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
  margin-top: 18px !important;
}

.zt-feature {
  min-height: 128px !important;
  padding: 14px !important;
}

.zt-feature-icon {
  width: 34px !important;
  height: 34px !important;
  margin-bottom: 8px !important;
}

.zt-feature h3 {
  margin: 0 0 6px !important;
  color: #ffffff !important;
  font-size: 16px !important;
}

.zt-feature p {
  margin: 0 !important;
  color: #f0f4fb !important;
}

a.zt-home-icon-link.zt-feature {
  display: block;
  text-decoration: none;
  color: inherit;
  max-width: 280px;
  cursor: pointer;
}

a.zt-home-icon-link.zt-feature:hover {
  text-decoration: none;
  color: inherit;
}

.zt-section {
  padding: 22px 0 !important;
}

@media (max-width: 1024px) {
  .zt-hero {
    grid-template-columns: 1fr !important;
  }

  .zt-auth-card {
    width: 100% !important;
    position: static !important;
  }
}

@media (max-width: 760px) {
  .zt-feature-grid {
    grid-template-columns: 1fr !important;
  }

  .zt-hero > div:first-child {
    padding: 16px !important;
  }
}

/* CRIATANK RJ visual identity */
body.zt-site {
  background:
    linear-gradient(90deg, rgba(2, 3, 6, 0.9) 0%, rgba(2, 3, 6, 0.62) 42%, rgba(2, 3, 6, 0.28) 100%),
    linear-gradient(180deg, rgba(3, 4, 7, 0.42), rgba(3, 4, 7, 0.94)),
    url("/assets/img/criatank/battle-bg.png?v=1380") center top / cover fixed no-repeat !important;
}

.zt-topbar {
  border-bottom-color: rgba(255, 193, 77, 0.28) !important;
  background: rgba(5, 6, 10, 0.88) !important;
}

.zt-brand {
  gap: 14px !important;
}

.zt-brand img {
  width: 168px !important;
  height: 72px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 10px 20px rgba(255, 156, 35, 0.3)) !important;
}

.zt-brand-text {
  display: none !important;
}

.zt-auth-logo {
  width: min(100%, 310px) !important;
  max-height: 150px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 12px 24px rgba(255, 156, 35, 0.35)) !important;
}

.zt-server-logo {
  width: min(100%, 290px) !important;
  height: auto !important;
  max-height: 150px !important;
  border-radius: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  object-fit: contain !important;
  filter: drop-shadow(0 12px 24px rgba(255, 156, 35, 0.32)) !important;
}

.zt-hero {
  min-height: calc(100vh - 58px) !important;
}

.zt-hero > div:first-child,
.zt-auth-card,
.zt-feature,
.zt-content-panel,
.zt-sidebar {
  border-color: rgba(255, 190, 72, 0.38) !important;
  background: rgba(7, 8, 12, 0.82) !important;
  backdrop-filter: blur(10px);
}

.zt-kicker {
  border-color: rgba(255, 190, 72, 0.55) !important;
  color: #ffe08a !important;
  background: rgba(255, 153, 25, 0.14) !important;
}

.zt-hero-title {
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.5) !important;
}

.zt-gradient-text {
  background: linear-gradient(135deg, #fff4c0 0%, #ffd43d 36%, #ff8a17 72%, #c34312 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
}

@media (max-width: 760px) {
  .zt-brand img {
    width: 132px !important;
    height: 58px !important;
  }

  body.zt-site {
    background:
      linear-gradient(180deg, rgba(2, 3, 6, 0.62), rgba(2, 3, 6, 0.96)),
      url("/assets/img/criatank/battle-bg.png?v=1380") center top / cover fixed no-repeat !important;
  }
}
