/*
Theme Name: tx88
Theme URI: https://example.com/tx88
Author: tx88
Description: tx88 WordPress theme with custom pink interface.
Version: 1.0.7
Text Domain: tx88
*/

:root {
  --tx88-primary: #db135c;
  --tx88-primary-dark: #9f0038;
  --tx88-primary-light: #fff0f6;
  --tx88-accent: #db135c;
  --tx88-text: #102033;
  --tx88-muted: #5d7288;
  --tx88-border: rgba(219, 19, 92, 0.35);
  --tx88-card: #ffffff;
  --tx88-white: #ffffff;
  --tx88-radius: 8px;
  --tx88-shadow: 0 6px 18px rgba(219, 19, 92, 0.20);
  --tx88-wrap: 960px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--tx88-text);
  font-family: Arial, Helvetica, "Microsoft YaHei", sans-serif;
  font-size: 14px;
  line-height: 1.68;
  background:
    radial-gradient(circle at 50% 10%, rgba(255,255,255,.9) 0, rgba(179,237,252,.65) 34%, rgba(91,207,243,.35) 55%, rgba(145,232,255,.9) 100%),
    linear-gradient(180deg, #e9fbff 0%, #91e8ff 45%, #5cc8f0 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  display: none !important;
}

.tx88-bg-glow {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(116deg, transparent 0 12%, rgba(255,255,255,.45) 12.5%, transparent 16%),
    linear-gradient(64deg, transparent 0 76%, rgba(255,255,255,.35) 76.5%, transparent 80%);
}

a { color: var(--tx88-primary-dark); text-decoration: none; transition: color .2s ease, opacity .2s ease, transform .2s ease; }
a:hover { color: #005ea9; }
img { max-width: 100%; height: auto; vertical-align: middle; }

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.tx88-site {
  max-width: var(--tx88-wrap);
  margin: 0 auto;
  background: rgba(184, 242, 255, 0.72);
  box-shadow: 0 0 32px rgba(0, 90, 170, .25);
  min-height: 100vh;
}

.tx88-topbar {
  background: linear-gradient(180deg, #c8efff, #94dafb);
  padding: 10px 18px 8px;
}

.tx88-topbar-inner {
  display: grid;
  grid-template-columns: 205px 1fr auto;
  align-items: center;
  gap: 14px;
}

.tx88-logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.tx88-logo img { max-height: 56px; width: auto; }
.tx88-logo-text { font-size: 34px; font-weight: 900; letter-spacing: -2px; color: var(--tx88-primary-dark); line-height: 1; }
.tx88-logo-text small { display: block; font-size: 12px; letter-spacing: 0; color: #136795; text-align: right; }

.tx88-search { position: relative; max-width: 340px; justify-self: center; width: 100%; }
.tx88-search input[type="search"] {
  width: 100%;
  height: 32px;
  border-radius: 18px;
  border: 1px solid rgba(0, 103, 169, .28);
  background: rgba(255, 255, 255, .52);
  padding: 0 38px 0 15px;
  outline: none;
  box-shadow: inset 0 1px 3px rgba(0,0,0,.08);
}
.tx88-search button {
  position: absolute;
  top: 0;
  right: 0;
  height: 32px;
  width: 38px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #08374f;
  font-size: 15px;
}

.tx88-actions { display: flex; gap: 8px; align-items: center; justify-content: flex-end; }
.tx88-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 5px 13px;
  border-radius: 18px;
  border: 2px solid #043d53;
  background: #15e6ff;
  color: #001b29;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 2px 0 rgba(0,0,0,.18);
}
.tx88-pill:hover { transform: translateY(-1px); color: #001b29; opacity: .92; }

.tx88-nav-wrap {
  background: linear-gradient(180deg, #11a9f8, #0090e4);
  border-top: 1px solid rgba(255,255,255,.45);
  border-bottom: 1px solid rgba(0,87,151,.32);
  position: sticky;
  top: 0;
  z-index: 20;
}

.admin-bar .tx88-nav-wrap { top: 32px; }

.tx88-nav-inner { display: flex; align-items: center; justify-content: center; padding: 0 12px; min-height: 39px; }
.tx88-menu-toggle { display: none; border: 0; background: rgba(255,255,255,.18); color: #002e43; font-weight: 900; padding: 8px 14px; border-radius: 8px; }
.tx88-menu { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 0; margin: 0; padding: 0; }
.tx88-menu li { position: relative; }
.tx88-menu a {
  display: block;
  padding: 11px 13px 10px;
  color: #061f2d;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
}
.tx88-menu a:hover,
.tx88-menu .current-menu-item > a { color: #fff; background: rgba(0, 51, 91, .18); }
.tx88-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 25;
  list-style: none;
  margin: 0;
  padding: 6px;
  min-width: 190px;
  background: rgba(230, 251, 255, .98);
  border: 1px solid var(--tx88-border);
  border-radius: 0 0 var(--tx88-radius) var(--tx88-radius);
  box-shadow: var(--tx88-shadow);
}
.tx88-menu li:hover > .sub-menu { display: block; }
.tx88-menu .sub-menu a { color: var(--tx88-text); border-radius: 6px; }

.tx88-main {
  padding: 22px 18px 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,.8), transparent 34%),
    linear-gradient(180deg, rgba(202,249,255,.88), rgba(101,215,245,.6) 55%, rgba(119,220,246,.82));
  position: relative;
  overflow: hidden;
}
.tx88-main::before {
  content: "";
  position: absolute;
  left: -40px;
  bottom: 200px;
  width: 640px;
  height: 420px;
  background:
    linear-gradient(125deg, transparent 0 35%, rgba(255,255,255,.55) 36%, transparent 42%),
    linear-gradient(55deg, transparent 0 45%, rgba(255,255,255,.38) 46%, transparent 52%);
  pointer-events: none;
}
.tx88-layout { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 245px; gap: 18px; align-items: start; }
.tx88-content { min-width: 0; }

.tx88-hero { margin-bottom: 16px; }
.tx88-hero img { width: 100%; display: block; border-radius: 3px; box-shadow: 0 2px 8px rgba(0,104,170,.18); }

.tx88-icon-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 16px;
}
.tx88-icon-card {
  min-height: 70px;
  border-radius: 6px;
  background: linear-gradient(180deg, #fff, #cef4ff);
  border: 1px solid rgba(0, 161, 235, .36);
  box-shadow: 0 2px 7px rgba(0,105,165,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px;
  color: #065b9a;
  font-weight: 900;
  font-size: 12px;
}
.tx88-icon-card:hover { transform: translateY(-2px); }

.tx88-headline-box {
  margin: 16px auto 22px;
  padding: 13px 12px;
  border: 1px solid var(--tx88-border);
  background: rgba(216, 250, 255, .66);
  color: #0485df;
  text-align: center;
  text-transform: uppercase;
  font-size: 23px;
  line-height: 1.35;
  font-weight: 900;
}

.tx88-intro {
  margin: 18px 0 24px;
  padding-left: 26px;
  border-left: 3px solid #0a75c3;
  color: #16435c;
  font-style: italic;
}


.tx88-home-article-panel {
  margin: 0 0 26px;
  border: 2px solid rgba(0, 153, 224, .55);
  border-radius: 10px;
  background: rgba(226, 250, 255, .82);
  box-shadow: 0 0 14px rgba(0, 143, 216, .55), inset 0 0 0 1px rgba(255,255,255,.7);
  overflow: hidden;
}
.tx88-home-article-title {
  margin: 0;
  padding: 11px 15px 12px;
  color: #0788df;
  font-size: 23px;
  line-height: 1.25;
  font-weight: 900;
  background: rgba(235, 254, 255, .82);
  border-bottom: 1px solid rgba(0, 153, 224, .32);
}
.tx88-home-article-scrollbox {
  max-height: 690px;
  overflow-y: auto;
  padding: 13px 14px 18px;
  background:
    linear-gradient(180deg, rgba(89, 205, 245, .58), rgba(223, 252, 255, .82)),
    radial-gradient(circle at 78% 4%, rgba(255,255,255,.56), transparent 28%);
  scrollbar-width: thin;
  scrollbar-color: #088edf rgba(213, 247, 255, .65);
}
.tx88-home-article-scrollbox::-webkit-scrollbar { width: 10px; }
.tx88-home-article-scrollbox::-webkit-scrollbar-track {
  background: rgba(213, 247, 255, .65);
  border-radius: 10px;
}
.tx88-home-article-scrollbox::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #29bfff, #0378cf);
  border-radius: 10px;
  border: 2px solid rgba(213, 247, 255, .8);
}
.tx88-home-article-media {
  margin: 0 0 18px;
  border: 1px solid rgba(0, 156, 224, .55);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(141, 219, 242, .76);
  box-shadow: 0 4px 12px rgba(0, 100, 170, .18);
}
.tx88-home-article-media img {
  display: block;
  width: 100%;
  height: auto;
}
.tx88-home-article-media figcaption {
  margin: 0;
  padding: 11px 18px 13px;
  text-align: center;
  font-style: italic;
  font-size: 18px;
  color: #0d2737;
  background:
    linear-gradient(135deg, rgba(33, 176, 233, .35) 0 10%, rgba(205, 248, 255, .86) 10% 90%, rgba(33, 176, 233, .35) 90% 100%);
  border-top: 1px solid rgba(0, 153, 224, .44);
}
.tx88-home-article-body {
  color: #0d2737;
  font-size: 17px;
  line-height: 1.75;
}
.tx88-home-article-body p { margin: 0 0 16px; }
.tx88-home-article-body h2,
.tx88-home-article-body h3,
.tx88-home-article-body h4 {
  color: #0788df;
  margin: 20px 0 10px;
  line-height: 1.35;
}
.tx88-home-article-body a { color: #0485df; font-weight: 800; }
.tx88-home-article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 3px 11px rgba(0, 109, 179, .18);
}

.tx88-card {
  background: var(--tx88-card);
  border: 1px solid var(--tx88-border);
  border-radius: var(--tx88-radius);
  box-shadow: var(--tx88-shadow);
  overflow: hidden;
  margin-bottom: 22px;
}
.tx88-card-title {
  margin: 0;
  padding: 9px 12px;
  color: #0788df;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
}
.tx88-card-media img { display: block; width: 100%; }
.tx88-card-body { padding: 14px 13px 18px; }
.tx88-card-body p { margin-top: 0; }

.tx88-post-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-bottom: 24px; }
.tx88-post-card {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--tx88-border);
  border-radius: var(--tx88-radius);
  overflow: hidden;
  box-shadow: 0 3px 11px rgba(0,108,179,.15);
}
.tx88-post-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.tx88-post-card h2, .tx88-post-card h3 { margin: 0; padding: 10px 11px 4px; font-size: 16px; line-height: 1.35; }
.tx88-post-card p { margin: 0; padding: 0 11px 12px; color: #33576b; font-size: 13px; }
.tx88-post-meta { padding: 0 11px 8px; color: var(--tx88-muted); font-size: 12px; }

.tx88-download {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 235px;
  gap: 16px;
  align-items: center;
  padding: 20px 0 36px;
}
.tx88-download h2 {
  margin: 0 0 14px;
  border-top: 1px solid rgba(0, 159, 229, .36);
  border-bottom: 1px solid rgba(0, 159, 229, .36);
  display: inline-block;
  padding: 8px 20px;
  color: #198fe2;
  font-size: 22px;
  text-transform: uppercase;
}
.tx88-download p { max-width: 430px; }
.tx88-download-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.tx88-store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 42px;
  padding: 7px 13px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ff77fa, #8454ff);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 4px 0 rgba(63, 37, 143, .36);
}
.tx88-store-btn:hover { color: #fff; transform: translateY(-1px); }
.tx88-app img { filter: drop-shadow(0 12px 18px rgba(0, 105, 170, .26)); }

.tx88-sidebar { min-width: 0; }
.tx88-widget { margin-bottom: 18px; }
.tx88-widget-title {
  margin: 0 0 10px;
  color: #0b2c3d;
  font-size: 16px;
  text-transform: uppercase;
  border-bottom: 2px solid #0fa5f1;
  padding-bottom: 7px;
}
.tx88-recent-item {
  display: block;
  padding: 7px;
  border: 1px solid var(--tx88-border);
  border-radius: var(--tx88-radius);
  background: rgba(232,252,255,.8);
  box-shadow: 0 3px 9px rgba(0,92,168,.16);
  margin-bottom: 14px;
  text-align: center;
}
.tx88-recent-item img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 4px; display: block; }
.tx88-recent-item strong { display: block; margin-top: 7px; color: #006fbd; font-size: 13px; line-height: 1.35; }
.tx88-recent-item span { display: block; margin-top: 4px; color: #62899b; font-size: 11px; }

.tx88-pagination { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin: 20px 0 30px; }
.tx88-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 33px;
  height: 33px;
  padding: 0 10px;
  border: 1px solid var(--tx88-border);
  background: rgba(255,255,255,.72);
  border-radius: 6px;
  font-weight: 800;
}
.tx88-pagination .current { background: var(--tx88-primary); color: #fff; }

.tx88-article {
  background: rgba(239,253,255,.86);
  border: 1px solid var(--tx88-border);
  border-radius: var(--tx88-radius);
  box-shadow: var(--tx88-shadow);
  padding: 18px;
  margin-bottom: 28px;
}
.tx88-article h1 { margin: 0 0 10px; color: #067ed1; font-size: 28px; line-height: 1.25; }
.tx88-article .entry-content h2, .tx88-article .entry-content h3 { color: #0788df; }
.tx88-article .entry-content img { border-radius: 7px; box-shadow: 0 3px 11px rgba(0, 109, 179, .15); }
.tx88-article-meta { color: var(--tx88-muted); font-size: 13px; margin-bottom: 16px; }
.tx88-article-footer { border-top: 1px solid var(--tx88-border); padding-top: 12px; margin-top: 18px; color: var(--tx88-muted); }

.tx88-footer {
  position: relative;
  padding: 38px 18px 0;
  background:
    linear-gradient(180deg, rgba(212,249,255,.94), rgba(117,212,242,.92)),
    radial-gradient(circle at 25% 10%, rgba(255,255,255,.9), transparent 42%);
  border-top: 1px solid rgba(255,255,255,.75);
}
.tx88-footer-columns {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.25fr;
  gap: 25px;
  align-items: start;
}
.tx88-footer-logo img { max-height: 58px; }
.tx88-footer h3 { margin: 0 0 12px; color: #0881d5; font-size: 16px; text-transform: uppercase; }
.tx88-footer p, .tx88-footer li { color: #244f63; font-size: 13px; }
.tx88-footer ul { list-style: none; padding: 0; margin: 0; }
.tx88-footer li { margin: 6px 0; }
.tx88-social { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.tx88-social a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #177bc0;
  color: #fff;
  font-weight: 900;
  font-size: 12px;
}
.tx88-badges { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 12px; }
.tx88-badges span { border: 2px solid #0f8ad8; border-radius: 8px; background: rgba(255,255,255,.7); padding: 8px 10px; color: #0573be; font-weight: 900; font-size: 12px; }
.tx88-brand-strip { margin: 26px 0 14px; padding: 14px 10px; text-align: center; color: #4a7184; border-top: 1px solid rgba(0,139,207,.25); border-bottom: 1px solid rgba(0,139,207,.25); font-size: 13px; }
.tx88-brand-strip-image { display: block; max-width: 100%; height: auto; max-height: 76px; object-fit: contain; margin: 0 auto; }
.tx88-keywords { text-align: center; color: #244f63; font-size: 12px; margin-bottom: 20px; }
.tx88-copyright { margin: 0 -18px; padding: 13px 18px; background: #3f3f3f; color: #e3e3e3; text-align: center; font-size: 12px; }

.wp-caption { max-width: 100%; }
.wp-caption-text { color: var(--tx88-muted); font-size: 12px; text-align: center; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignleft { float: left; margin: 0 16px 12px 0; }
.alignright { float: right; margin: 0 0 12px 16px; }
.gallery { display: grid; gap: 10px; }
.bypostauthor { outline: 1px solid rgba(0, 145, 225, .25); }

@media (max-width: 1180px) {
  body::before, body::after { display: none; }
  .tx88-site { max-width: 100%; }
}

@media (max-width: 820px) {
  .admin-bar .tx88-nav-wrap { top: 46px; }
  .tx88-topbar-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .tx88-actions { justify-content: center; }
  .tx88-layout { grid-template-columns: 1fr; }
  .tx88-sidebar { order: 2; }
  .tx88-icon-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .tx88-download { grid-template-columns: 1fr; text-align: center; }
  .tx88-download p { max-width: none; }
  .tx88-download-buttons { justify-content: center; }
  .tx88-footer-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .tx88-home-article-title { font-size: 20px; }
  .tx88-home-article-scrollbox { max-height: 560px; padding: 10px; }
  .tx88-home-article-body { font-size: 15px; }
  .tx88-home-article-media figcaption { font-size: 15px; }
  .tx88-menu-toggle { display: inline-flex; }
  .tx88-nav-inner { justify-content: space-between; padding: 7px 12px; }
  .tx88-menu { display: none; width: 100%; flex-direction: column; margin-top: 8px; }
  .tx88-menu.is-open { display: flex; }
  .tx88-nav-inner { flex-wrap: wrap; }
  .tx88-menu li { width: 100%; }
  .tx88-menu a { padding: 9px 11px; border-top: 1px solid rgba(255,255,255,.25); }
  .tx88-menu .sub-menu { position: static; display: block; box-shadow: none; background: rgba(255,255,255,.25); border: 0; padding-left: 16px; }
}

@media (max-width: 560px) {
  .tx88-main { padding: 14px 10px 0; }
  .tx88-topbar { padding-left: 10px; padding-right: 10px; }
  .tx88-headline-box { font-size: 18px; }
  .tx88-icon-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .tx88-post-grid { grid-template-columns: 1fr; }
  .tx88-footer-columns { grid-template-columns: 1fr; }
  .tx88-article h1 { font-size: 23px; }
}


.article-toc {
  background: #fff;
  border: 1px solid #9fa8af;
  border-radius: 6px;
  padding: 14px 18px;
  margin: 18px 0;
  color: #444;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
  max-width: 620px;
}

.article-toc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.article-toc-title {
  color: #111;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 500;
}

.article-toc-toggle {
  width: 42px;
  height: 34px;
  border: 1px solid #999;
  border-radius: 6px;
  background: #fff;
  color: #111;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex: 0 0 auto;
}

.article-toc-list,
.article-toc-sublist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-toc-list > .article-toc-item {
  margin: 6px 0;
}

.article-toc-sublist {
  margin: 5px 0 5px 28px;
}

.article-toc-sublist .article-toc-item {
  margin: 4px 0;
}

.article-toc-link {
  color: #4b4b4b;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 400;
}

.article-toc-sublist .article-toc-link {
  font-size: 16px;
}

.article-toc-link:hover {
  color: #0788df;
  text-decoration: underline;
}

.article-toc.is-collapsed .article-toc-list {
  display: none;
}

.article-toc-arrow {
  display: inline-block;
}

@media (max-width: 768px) {
  .article-toc {
    max-width: 100%;
    padding: 12px 14px;
    margin: 16px 0;
  }

  .article-toc-title {
    font-size: 21px;
  }

  .article-toc-toggle {
    width: 38px;
    height: 32px;
    font-size: 16px;
  }

  .article-toc-link {
    font-size: 14px;
  }

  .article-toc-sublist {
    margin-left: 20px;
  }

  .article-toc-sublist .article-toc-link {
    font-size: 15px;
  }
}

body:not(.home) .tx88-sidebar {
  display: none !important;
}

body:not(.home) .tx88-layout {
  grid-template-columns: minmax(0, 1fr) !important;
}

body:not(.home) .tx88-content {
  width: 100% !important;
  max-width: 100% !important;
}

body:not(.home) .tx88-article {
  width: 100% !important;
  max-width: 100% !important;
}


.footer-guide-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-guide-menu li {
  margin: 8px 0;
}

.footer-guide-menu a {
  color: #24495b;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.footer-guide-menu a::before {
  content: "✔";
  margin-right: 8px;
  color: #111;
  font-weight: 700;
}

.footer-guide-menu a:hover {
  color: #0788df;
}


body:not(.home) .tx88-sidebar {
  display: none !important;
}

body:not(.home) .tx88-layout {
  grid-template-columns: minmax(0, 1fr) !important;
}

body:not(.home) .tx88-content,
body:not(.home) .tx88-article {
  width: 100% !important;
  max-width: 100% !important;
}

/* Footer Guide Menu */
.footer-guide-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-guide-menu li {
  margin: 8px 0;
}

.footer-guide-menu a {
  color: #24495b;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.footer-guide-menu a::before {
  content: "✔";
  margin-right: 8px;
  color: #111;
  font-weight: 700;
}

.footer-guide-menu a:hover {
  color: #0788df;
}

/* Footer About Menu */
.tx88-footer section:nth-child(2) ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tx88-footer section:nth-child(2) li {
  margin: 8px 0;
}

.tx88-footer section:nth-child(2) a {
  color: #24495b;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.tx88-footer section:nth-child(2) a::before {
  content: "";
  margin-right: 8px;
  color: #111;
}

.tx88-footer section:nth-child(2) a:hover {
  color: #0788df;
}


.tx88-badges {
  display: none !important;
}


.tx88-icon-row {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 16px 0 22px !important;
}

.game-card-grid {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 18px !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 22px 0 28px !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

.game-card {
  display: block !important;
  position: relative !important;
  width: 100% !important;
  height: 210px !important;
  overflow: hidden !important;
  border: 4px solid #ff1600 !important;
  border-radius: 14px !important;
  background: #111 !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .22) !important;
}

.game-card:hover {
  transform: translateY(-3px) !important;
}

.game-card-title {
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 3 !important;
  height: 44px !important;
  line-height: 44px !important;
  text-align: center !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  color: #fff8b8 !important;
  background: linear-gradient(180deg, #ff6a00 0%, #ff2700 100%) !important;
  text-shadow:
    0 0 4px #ff0000,
    0 0 8px #ff0000,
    2px 2px 0 #d50000 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
}

.game-card img {
  display: block !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  top: 44px !important;
  width: 100% !important;
  height: calc(100% - 44px) !important;
  object-fit: cover !important;
  object-position: center center !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  max-width: none !important;
  box-sizing: border-box !important;
}


@media (max-width: 1100px) {
  .game-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  .game-card {
    height: 190px !important;
  }
}


@media (max-width: 640px) {
  .tx88-icon-row {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 12px 0 18px !important;
  }

  .game-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 14px 0 20px !important;
  }

  .game-card {
    height: 135px !important;
    border-width: 3px !important;
    border-radius: 12px !important;
  }

  .game-card-title {
    height: 32px !important;
    line-height: 32px !important;
    font-size: 13px !important;
    letter-spacing: 0 !important;
  }

  .game-card img {
    top: 32px !important;
    height: calc(100% - 32px) !important;
  }
}


@media (min-width: 1101px) {
  .game-card-title {
    font-size: 15px !important;
    height: 38px !important;
    line-height: 38px !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
  }

  .game-card img {
    top: 38px !important;
    height: calc(100% - 38px) !important;
  }

  .game-card {
    height: 190px !important;
  }
}


body.home .tx88-sidebar,
body.front-page .tx88-sidebar {
  display: none !important;
}

body.home .tx88-layout,
body.front-page .tx88-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 0 !important;
}

body.home .tx88-content,
body.front-page .tx88-content {
  width: 100% !important;
  max-width: 100% !important;
}

body.home .tx88-hero,
body.front-page .tx88-hero,
body.home .tx88-icon-row,
body.front-page .tx88-icon-row,
body.home .game-card-grid,
body.front-page .game-card-grid {
  width: 100% !important;
  max-width: 100% !important;
}


.back-top-btn {
  position: fixed;
  right: 22px;
  bottom: 90px;
  z-index: 9999;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, #17b8ff, #0078d7);
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  line-height: 48px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 90, 160, .35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.back-top-btn.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top-btn:hover {
  background: linear-gradient(180deg, #39c7ff, #006fc8);
  transform: translateY(-3px);
}

@media (max-width: 640px) {
  .back-top-btn {
    right: 14px;
    bottom: 70px;
    width: 42px;
    height: 42px;
    font-size: 24px;
    line-height: 42px;
  }
}
/* Dark blue and gold palette */
body {
  color: var(--tx88-text);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 212, 90, .35) 0%, transparent 28%),
    linear-gradient(180deg, #061b3a 0%, #073c7a 42%, #0a9fd8 100%) !important;
}

.tx88-site {
  background: rgba(226, 247, 255, 0.9) !important;
  box-shadow: 0 0 36px rgba(0, 12, 50, .42) !important;
}

.tx88-topbar {
  background: linear-gradient(180deg, #e9fbff 0%, #aeeaff 100%) !important;
}

.tx88-nav-wrap {
  background: linear-gradient(180deg, #005ecb 0%, #0072ff 100%) !important;
  border-top: 1px solid rgba(255, 255, 255, .35) !important;
  border-bottom: 2px solid #c3eefe !important;
}

.tx88-menu a {
  color: #ffffff !important;
}

.tx88-menu a:hover,
.tx88-menu .current-menu-item > a {
  color: #102033 !important;
  background: linear-gradient(180deg, #ffe58a 0%, #ffc93c 100%) !important;
}

.tx88-menu .sub-menu {
  background: rgba(245, 252, 255, .98) !important;
  border-color: rgba(0, 95, 190, .28) !important;
}

.tx88-menu .sub-menu a {
  color: #102033 !important;
}

.tx88-pill {
  background: linear-gradient(180deg, #ffe98d 0%, #ffbd23 100%) !important;
  color: #102033 !important;
  border-color: #7b4b00 !important;
  box-shadow: 0 3px 0 rgba(80, 45, 0, .35) !important;
}

.tx88-search input[type="search"] {
  border-color: rgba(0, 95, 190, .32) !important;
  background: rgba(255, 255, 255, .72) !important;
}

.tx88-main {
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, .9), transparent 34%),
    linear-gradient(180deg, rgba(229, 250, 255, .95), rgba(172, 232, 255, .82) 55%, rgba(130, 215, 245, .9)) !important;
}

.tx88-headline-box {
  color: #0072ff !important;
  border-color: rgba(0, 95, 190, .35) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(211, 244, 255, .86)) !important;
}

.tx88-intro {
  border-left-color: #c3eefe !important;
  color: #102033 !important;
}

.tx88-card,
.tx88-article,
.tx88-home-article-panel,
.tx88-post-card {
  background: rgba(247, 253, 255, .94) !important;
  border-color: rgba(0, 105, 205, .32) !important;
  box-shadow: 0 6px 18px rgba(0, 80, 150, .18) !important;
}

.tx88-home-article-title,
.tx88-card-title,
.tx88-article h1,
.tx88-article .entry-content h2,
.tx88-article .entry-content h3,
.tx88-home-article-body h2,
.tx88-home-article-body h3,
.tx88-home-article-body h4,
.tx88-download h2 {
  color: #005ecb !important;
}

.tx88-home-article-scrollbox {
  background:
    linear-gradient(180deg, rgba(226, 248, 255, .92), rgba(246, 253, 255, .96)),
    radial-gradient(circle at 78% 4%, rgba(255, 212, 90, .18), transparent 28%) !important;
  scrollbar-color: #0072ff rgba(232, 247, 255, .9) !important;
}

.tx88-home-article-scrollbox::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #c3eefe, #005ecb) !important;
}

.tx88-widget-title {
  color: #003b80 !important;
  border-bottom-color: #c3eefe !important;
}

.tx88-recent-item {
  background: rgba(255, 255, 255, .88) !important;
  border-color: rgba(0, 105, 205, .28) !important;
}

.tx88-recent-item strong {
  color: #0052b8 !important;
}

.tx88-store-btn {
  background: linear-gradient(180deg, #c3eefe 0%, #ff9f1c 100%) !important;
  color: #102033 !important;
  box-shadow: 0 4px 0 rgba(110, 62, 0, .38) !important;
}

.tx88-store-btn:hover {
  color: #102033 !important;
}

.tx88-footer {
  background:
    radial-gradient(circle at 30% 0%, rgba(255, 212, 90, .28), transparent 36%),
    linear-gradient(180deg, #dff7ff 0%, #8bdcf9 100%) !important;
}

.tx88-footer h3 {
  color: #005ecb !important;
}

.tx88-footer p,
.tx88-footer li {
  color: #24495b !important;
}

.tx88-footer a,
.footer-guide-menu a,
.tx88-footer section:nth-child(2) a {
  color: #24495b !important;
}

.tx88-footer a:hover,
.footer-guide-menu a:hover,
.tx88-footer section:nth-child(2) a:hover {
  color: #005ecb !important;
}

.tx88-social a {
  background: linear-gradient(180deg, #006ed8, #0072ff) !important;
  color: #ffffff !important;
}

.tx88-brand-strip {
  color: #24495b !important;
  border-top-color: rgba(0, 95, 190, .25) !important;
  border-bottom-color: rgba(0, 95, 190, .25) !important;
}

.tx88-keywords {
  color: #24495b !important;
}

.tx88-copyright {
  background: #081d36 !important;
  color: #e8f7ff !important;
}

.article-toc {
  border-color: rgba(0, 95, 190, .32) !important;
  box-shadow: 0 2px 8px rgba(0, 60, 140, .12) !important;
}

.article-toc-title {
  color: #102033 !important;
}

.article-toc-link:hover {
  color: #005ecb !important;
}

.game-card {
  border-color: #c3eefe !important;
  box-shadow: 0 8px 18px rgba(0, 20, 60, .28) !important;
}

.game-card-title {
  color: #102033 !important;
  background: linear-gradient(180deg, #ffe58a 0%, #ffbd23 100%) !important;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, .45),
    1px 1px 0 rgba(120, 70, 0, .25) !important;
}

.back-top-btn {
  background: linear-gradient(180deg, #c3eefe, #ff9f1c) !important;
  color: #102033 !important;
  box-shadow: 0 6px 16px rgba(80, 45, 0, .35) !important;
}

.back-top-btn:hover {
  background: linear-gradient(180deg, #ffe58a, #ffbd23) !important;
  color: #102033 !important;
}

h1,
h2,
h3,
h4,
h5,
.entry-title,
.page-title,
.tx88-article h1,
.tx88-article .entry-content h1,
.tx88-article .entry-content h2,
.tx88-article .entry-content h3,
.tx88-article .entry-content h4,
.tx88-article .entry-content h5,
.tx88-home-article-title,
.tx88-home-article-body h1,
.tx88-home-article-body h2,
.tx88-home-article-body h3,
.tx88-home-article-body h4,
.tx88-home-article-body h5,
.tx88-card-title,
.tx88-download h2,
.tx88-footer h3,
.article-toc-title {
  color: #0072ff !important;
}

.tx88-article .entry-content h2,
.tx88-article .entry-content h3,
.tx88-home-article-body h2,
.tx88-home-article-body h3 {
  border-left: 4px solid #c3eefe !important;
  padding-left: 10px !important;
}

.entry-content a,
.tx88-home-article-body a,
.tx88-card-body a,
.tx88-footer a,
.footer-guide-menu a,
.article-toc-link {
  color: #0052b8 !important;
}
.tx88-menu a,
.tx88-menu .current-menu-item > a,
.tx88-menu .current_page_item > a {
  color: #ffffff !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, .75),
    0 0 5px rgba(0, 0, 0, .45) !important;
}

.tx88-menu a:hover,
.tx88-menu .current-menu-item > a:hover,
.tx88-menu .current_page_item > a:hover {
  color: #2b1a00 !important;
  background: linear-gradient(180deg, #fff09a 0%, #c3eefe 45%, #f3a91f 100%) !important;
  border: 1px solid #ffe58a !important;
  border-radius: 22px !important;
  text-shadow: none !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .55),
    0 3px 0 rgba(92, 52, 0, .55),
    0 4px 10px rgba(0, 0, 0, .28) !important;
}

a:not(.tx88-pill):not(.tx88-store-btn):not(.game-card):not(.tx88-recent-item):not(.back-top-btn):hover,
.entry-content a:hover,
.tx88-home-article-body a:hover,
.tx88-card-body a:hover,
.tx88-footer a:hover,
.footer-guide-menu a:hover,
.article-toc-link:hover {
  color: #b87400 !important;
}

.tx88-menu a {
  color: #ffffff !important;
}

.tx88-menu a:hover,
.tx88-menu .current-menu-item > a {
  color: #102033 !important;
}

.tx88-pill,
.tx88-store-btn,
.game-card,
.tx88-social a,
.back-top-btn {
  text-decoration: none !important;
}

.tx88-nav-wrap {
  background: linear-gradient(180deg, #005ecb 0%, #00469e 100%) !important;
  border-bottom: 3px solid #c3eefe !important;
}

.tx88-menu {
  gap: 8px !important;
  align-items: center !important;
}

.tx88-menu li {
  margin: 6px 0 !important;
}

.tx88-menu a {
  color: #c3eefe !important;
  background: rgba(255, 212, 90, 0.08) !important;
  border: 1px solid rgba(255, 212, 90, 0.55) !important;
  border-radius: 18px !important;
  padding: 8px 15px !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .45) !important;
}

.tx88-menu a:hover,
.tx88-menu .current-menu-item > a,
.tx88-menu .current_page_item > a {
  color: #4a2b00 !important;
  background: linear-gradient(180deg, #ffe58a 0%, #ffbd2e 100%) !important;
  border-color: #c3eefe !important;
  box-shadow: 0 3px 0 rgba(80, 45, 0, .35) !important;
  text-shadow: none !important;
}

.tx88-menu .sub-menu {
  background: rgba(5, 36, 82, .96) !important;
  border: 1px solid rgba(255, 212, 90, .55) !important;
}

.tx88-menu .sub-menu a {
  color: #c3eefe !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 10px !important;
}

.tx88-menu .sub-menu a:hover {
  color: #4a2b00 !important;
  background: linear-gradient(180deg, #ffe58a 0%, #ffbd2e 100%) !important;
}

@media (max-width: 820px) {
  .tx88-menu {
    gap: 6px !important;
  }

  .tx88-menu a {
    border-radius: 12px !important;
    margin: 4px 0 !important;
    padding: 9px 12px !important;
  }
}

.tx88-menu a {
  color: #ffffff !important;
  background: rgba(0, 45, 105, 0.72) !important;
  border: 1px solid rgba(255, 212, 90, 0.85) !important;
  border-radius: 22px !important;
  padding: 9px 18px !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, .75),
    0 0 6px rgba(0, 0, 0, .55) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .18),
    0 2px 5px rgba(0, 0, 0, .22) !important;
}

.tx88-menu a:hover,
.tx88-menu .current-menu-item > a,
.tx88-menu .current_page_item > a {
  color: #2b1a00 !important;
  background: linear-gradient(180deg, #fff09a 0%, #c3eefe 45%, #f3a91f 100%) !important;
  border-color: #ffe58a !important;
  text-shadow: none !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .55),
    0 3px 0 rgba(92, 52, 0, .55),
    0 4px 10px rgba(0, 0, 0, .28) !important;
}

.tx88-menu {
  gap: 10px !important;
}

.tx88-menu li {
  margin: 6px 0 !important;
}

.tx88-nav-wrap {
  background: linear-gradient(180deg, #006bd8 0%, #004fa8 100%) !important;
  border-bottom: 3px solid #c3eefe !important;
}

.tx88-menu a {
  color: #fff4b8 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 11px 14px !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, .8),
    0 0 5px rgba(0, 0, 0, .55) !important;
}

.tx88-menu .current-menu-item > a,
.tx88-menu .current_page_item > a {
  color: #fff4b8 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, .8),
    0 0 5px rgba(0, 0, 0, .55) !important;
}

.tx88-menu a:hover,
.tx88-menu .current-menu-item > a:hover,
.tx88-menu .current_page_item > a:hover {
  color: #2b1a00 !important;
  background: linear-gradient(180deg, #fff09a 0%, #c3eefe 45%, #f3a91f 100%) !important;
  border: 1px solid #ffe58a !important;
  border-radius: 22px !important;
  text-shadow: none !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .55),
    0 3px 0 rgba(92, 52, 0, .55),
    0 4px 10px rgba(0, 0, 0, .28) !important;
}

.tx88-menu {
  gap: 12px !important;
}

.tx88-menu a,
.tx88-menu .current-menu-item > a,
.tx88-menu .current_page_item > a {
  color: #ffffff !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, .75),
    0 0 5px rgba(0, 0, 0, .45) !important;
}

.tx88-menu a:hover,
.tx88-menu .current-menu-item > a:hover,
.tx88-menu .current_page_item > a:hover {
  color: #2b1a00 !important;
  background: linear-gradient(180deg, #fff09a 0%, #c3eefe 45%, #f3a91f 100%) !important;
  border: 1px solid #ffe58a !important;
  border-radius: 22px !important;
  text-shadow: none !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .55),
    0 3px 0 rgba(92, 52, 0, .55),
    0 4px 10px rgba(0, 0, 0, .28) !important;
}


:root {
  --float-top: 0px;
  --float-topbar-h: 0px;
  --float-header-h: 0px;
}

body.header-is-fixed .tx88-site {
  padding-top: var(--float-header-h) !important;
}

body.header-is-fixed .tx88-topbar {
  position: fixed !important;
  top: var(--float-top) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: min(100vw, var(--tx88-wrap)) !important;
  z-index: 9998 !important;
  box-shadow: 0 6px 18px rgba(0, 40, 120, .28) !important;
}

body.header-is-fixed .tx88-nav-wrap {
  position: fixed !important;
  top: calc(var(--float-top) + var(--float-topbar-h)) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: min(100vw, var(--tx88-wrap)) !important;
  z-index: 9997 !important;
  box-shadow: 0 6px 18px rgba(0, 40, 120, .22) !important;
}

body.header-is-fixed .tx88-main {
  position: relative;
}

@media (max-width: 1180px) {
  body.header-is-fixed .tx88-topbar,
  body.header-is-fixed .tx88-nav-wrap {
    width: 100vw !important;
  }
}


/* TX88 header layout based on reference screenshot */
.tx88-header {
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  min-height: 78px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #4779da !important;
  border: 0 !important;
  box-shadow: none !important;
  position: relative !important;
  z-index: 30 !important;
}

.tx88-topbar {
  flex: 0 0 34% !important;
  max-width: 520px !important;
  min-height: 78px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 20px !important;
}

.tx88-topbar-inner {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
}

.tx88-logo {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 0 !important;
  text-decoration: none !important;
}

.tx88-logo img {
  width: auto !important;
  max-width: 170px !important;
  max-height: 72px !important;
  object-fit: contain !important;
  display: block !important;
}

.tx88-search,
.tx88-actions {
  display: none !important;
}

.tx88-nav-wrap {
  flex: 1 1 auto !important;
  min-height: 78px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  position: static !important;
  top: auto !important;
  z-index: 31 !important;
}

.admin-bar .tx88-nav-wrap { top: auto !important; }

.tx88-nav-inner {
  width: 100% !important;
  min-height: 78px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: 0 32px 0 0 !important;
}

.tx88-menu {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: clamp(24px, 3.2vw, 58px) !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.tx88-menu li {
  position: relative !important;
  margin: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
}

.tx88-menu a,
.tx88-menu .current-menu-item > a,
.tx88-menu .current_page_item > a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 78px !important;
  padding: 0 !important;
  color: #ffffff !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-shadow: none !important;
  text-transform: none !important;
  font-size: clamp(17px, 1.25vw, 22px) !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
}

.tx88-menu a:hover,
.tx88-menu .current-menu-item > a:hover,
.tx88-menu .current_page_item > a:hover,
.tx88-menu .current-menu-item > a,
.tx88-menu .current_page_item > a {
  color: #ffffff !important;
  background: transparent !important;
  opacity: .86 !important;
  transform: none !important;
}

.tx88-menu .sub-menu {
  top: 100% !important;
  left: 0 !important;
  min-width: 210px !important;
  padding: 8px 0 !important;
  background: #4779da !important;
  border: 0 !important;
  border-radius: 0 0 8px 8px !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18) !important;
}

.tx88-menu .sub-menu a {
  min-height: auto !important;
  display: block !important;
  padding: 10px 16px !important;
  color: #ffffff !important;
  font-size: 16px !important;
}

.tx88-menu-toggle {
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 40px !important;
  padding: 8px 14px !important;
  border: 1px solid rgba(255,255,255,.5) !important;
  border-radius: 6px !important;
  background: rgba(255,255,255,.15) !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
}

body.header-is-fixed .tx88-site {
  padding-top: 0 !important;
}

body.header-is-fixed .tx88-topbar,
body.header-is-fixed .tx88-nav-wrap {
  position: static !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  width: auto !important;
  box-shadow: none !important;
}

@media (max-width: 1180px) {
  .tx88-header {
    min-height: auto !important;
    padding: 0 14px !important;
  }
  .tx88-topbar {
    flex-basis: 240px !important;
    max-width: 240px !important;
    padding: 0 10px !important;
  }
  .tx88-nav-inner {
    padding-right: 8px !important;
  }
  .tx88-menu {
    gap: 24px !important;
  }
  .tx88-menu a {
    font-size: 18px !important;
  }
}

@media (max-width: 820px) {
  .tx88-header {
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 8px 14px !important;
  }
  .tx88-topbar {
    flex: 0 0 auto !important;
    min-height: 54px !important;
    max-width: none !important;
    padding: 0 !important;
  }
  .tx88-logo img {
    max-height: 56px !important;
    max-width: 142px !important;
  }
  .tx88-nav-wrap {
    flex: 1 1 auto !important;
    min-height: 54px !important;
    justify-content: flex-end !important;
  }
  .tx88-nav-inner {
    min-height: 54px !important;
    justify-content: flex-end !important;
    padding: 0 !important;
    flex-wrap: wrap !important;
  }
  .tx88-menu-toggle {
    display: inline-flex !important;
  }
  .tx88-menu {
    display: none !important;
    flex: 0 0 100% !important;
    width: 100% !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    margin-top: 8px !important;
    background: rgba(29, 82, 168, .98) !important;
    border-radius: 8px !important;
    overflow: hidden !important;
  }
  .tx88-menu.is-open {
    display: flex !important;
  }
  .tx88-menu li {
    width: 100% !important;
  }
  .tx88-menu a {
    min-height: auto !important;
    width: 100% !important;
    justify-content: flex-start !important;
    padding: 12px 16px !important;
    border-top: 1px solid rgba(255,255,255,.15) !important;
    font-size: 17px !important;
  }
  .tx88-menu .sub-menu {
    position: static !important;
    display: block !important;
    box-shadow: none !important;
    background: rgba(255,255,255,.08) !important;
    border-radius: 0 !important;
    padding: 0 !important;
  }
}

/* TX88 compact header fix - match reference screenshot */
.tx88-header {
  width: 100vw !important;
  height: 107px !important;
  min-height: 107px !important;
  max-height: 107px !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #4779da !important;
  overflow: visible !important;
  border: 0 !important;
  box-shadow: none !important;
}

.tx88-topbar {
  flex: 0 0 34% !important;
  max-width: 620px !important;
  height: 107px !important;
  min-height: 107px !important;
  max-height: 107px !important;
  padding: 0 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.tx88-topbar-inner {
  width: 100% !important;
  height: 107px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
}

.tx88-logo,
.tx88-logo:hover {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-width: 0 !important;
  height: 107px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

.tx88-logo img {
  display: block !important;
  width: auto !important;
  max-width: 170px !important;
  max-height: 94px !important;
  object-fit: contain !important;
}

.tx88-search,
.tx88-actions {
  display: none !important;
}

.tx88-nav-wrap {
  flex: 1 1 auto !important;
  height: 107px !important;
  min-height: 107px !important;
  max-height: 107px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  position: static !important;
  top: auto !important;
  overflow: visible !important;
}

.admin-bar .tx88-nav-wrap { top: auto !important; }

.tx88-nav-inner {
  width: 100% !important;
  height: 107px !important;
  min-height: 107px !important;
  max-height: 107px !important;
  padding: 0 48px 0 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  overflow: visible !important;
}

.tx88-menu {
  width: 100% !important;
  height: 107px !important;
  min-height: 107px !important;
  max-height: 107px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: clamp(22px, 3.2vw, 68px) !important;
  overflow: visible !important;
}

.tx88-menu li {
  flex: 0 0 auto !important;
  width: auto !important;
  height: 107px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  white-space: nowrap !important;
}

.tx88-menu a,
.tx88-menu .current-menu-item > a,
.tx88-menu .current_page_item > a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 107px !important;
  min-height: 107px !important;
  padding: 0 !important;
  margin: 0 !important;
  color: #ffffff !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-shadow: none !important;
  text-transform: none !important;
  font-size: clamp(19px, 1.16vw, 24px) !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  opacity: 1 !important;
}

.tx88-menu a:hover,
.tx88-menu .current-menu-item > a,
.tx88-menu .current_page_item > a {
  color: #ffffff !important;
  background: transparent !important;
  opacity: .88 !important;
  transform: none !important;
}

body.header-is-fixed .tx88-site {
  padding-top: 0 !important;
}

body.header-is-fixed .tx88-topbar,
body.header-is-fixed .tx88-nav-wrap {
  position: static !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  width: auto !important;
  box-shadow: none !important;
}

@media (max-width: 1180px) {
  .tx88-header,
  .tx88-topbar,
  .tx88-topbar-inner,
  .tx88-nav-wrap,
  .tx88-nav-inner,
  .tx88-menu,
  .tx88-menu li,
  .tx88-menu a {
    height: 82px !important;
    min-height: 82px !important;
    max-height: 82px !important;
  }
  .tx88-topbar {
    flex-basis: 260px !important;
    max-width: 260px !important;
    padding: 0 10px !important;
  }
  .tx88-logo img {
    max-width: 145px !important;
    max-height: 72px !important;
  }
  .tx88-nav-inner {
    padding-right: 16px !important;
  }
  .tx88-menu {
    gap: 22px !important;
    justify-content: flex-start !important;
  }
  .tx88-menu a {
    font-size: 18px !important;
  }
}

@media (max-width: 820px) {
  .tx88-header {
    height: auto !important;
    min-height: 66px !important;
    max-height: none !important;
    padding: 8px 14px !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
  }
  .tx88-topbar,
  .tx88-topbar-inner,
  .tx88-nav-wrap,
  .tx88-nav-inner {
    height: 56px !important;
    min-height: 56px !important;
    max-height: 56px !important;
  }
  .tx88-topbar {
    flex: 0 0 auto !important;
    max-width: none !important;
    padding: 0 !important;
  }
  .tx88-logo,
  .tx88-logo:hover {
    height: 56px !important;
  }
  .tx88-logo img {
    max-width: 132px !important;
    max-height: 54px !important;
  }
  .tx88-nav-wrap {
    flex: 1 1 auto !important;
    justify-content: flex-end !important;
  }
  .tx88-nav-inner {
    justify-content: flex-end !important;
    padding: 0 !important;
    flex-wrap: wrap !important;
  }
  .tx88-menu-toggle {
    display: inline-flex !important;
  }
  .tx88-menu {
    display: none !important;
    flex: 0 0 100% !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    margin-top: 8px !important;
    background: rgba(29, 82, 168, .98) !important;
    border-radius: 8px !important;
    overflow: hidden !important;
  }
  .tx88-menu.is-open {
    display: flex !important;
  }
  .tx88-menu li,
  .tx88-menu a {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
  }
  .tx88-menu li {
    display: block !important;
  }
  .tx88-menu a {
    justify-content: flex-start !important;
    padding: 12px 16px !important;
    border-top: 1px solid rgba(255,255,255,.15) !important;
    font-size: 17px !important;
  }
}


/* TX88 final header/menu fix: one-line reference layout */
:root{
  --tx88-header-h: 92px;
  --tx88-header-blue: #477ed8;
}
body .tx88-header{
  width: 100vw !important;
  height: var(--tx88-header-h) !important;
  min-height: var(--tx88-header-h) !important;
  max-height: var(--tx88-header-h) !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: 360px minmax(0, 1fr) !important;
  align-items: center !important;
  background: var(--tx88-header-blue) !important;
  overflow: hidden !important;
  border: 0 !important;
  box-shadow: none !important;
}
body .tx88-topbar,
body .tx88-topbar-inner,
body .tx88-nav-wrap,
body .tx88-nav-inner{
  height: var(--tx88-header-h) !important;
  min-height: var(--tx88-header-h) !important;
  max-height: var(--tx88-header-h) !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
body .tx88-topbar{
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  padding: 0 18px 0 42px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}
body .tx88-topbar-inner{
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}
body .tx88-logo,
body .tx88-logo:hover{
  width: auto !important;
  height: var(--tx88-header-h) !important;
  min-height: var(--tx88-header-h) !important;
  max-height: var(--tx88-header-h) !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}
body .tx88-logo img{
  width: auto !important;
  max-width: 190px !important;
  max-height: 78px !important;
  object-fit: contain !important;
  display: block !important;
}
body .tx88-search,
body .tx88-actions{
  display: none !important;
}
body .tx88-nav-wrap{
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  position: static !important;
  top: auto !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}
body .tx88-nav-inner{
  width: 100% !important;
  min-width: 0 !important;
  padding: 0 34px 0 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  flex-wrap: nowrap !important;
}
body .tx88-menu-toggle{
  display: none !important;
}
body ul.tx88-menu,
body #tx88-primary-menu{
  width: 100% !important;
  height: var(--tx88-header-h) !important;
  min-height: var(--tx88-header-h) !important;
  max-height: var(--tx88-header-h) !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: clamp(14px, 2.05vw, 52px) !important;
  overflow: hidden !important;
}
body ul.tx88-menu > li,
body #tx88-primary-menu > li{
  flex: 0 1 auto !important;
  width: auto !important;
  max-width: none !important;
  height: var(--tx88-header-h) !important;
  min-height: var(--tx88-header-h) !important;
  max-height: var(--tx88-header-h) !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  overflow: visible !important;
}
body ul.tx88-menu > li > a,
body #tx88-primary-menu > li > a,
body ul.tx88-menu > li.current-menu-item > a,
body ul.tx88-menu > li.current_page_item > a,
body #tx88-primary-menu > li.current-menu-item > a,
body #tx88-primary-menu > li.current_page_item > a{
  height: var(--tx88-header-h) !important;
  min-height: var(--tx88-header-h) !important;
  max-height: var(--tx88-header-h) !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  text-shadow: none !important;
  text-decoration: none !important;
  text-transform: none !important;
  white-space: nowrap !important;
  font-size: clamp(18px, 1.18vw, 24px) !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  opacity: 1 !important;
  transform: none !important;
}
body ul.tx88-menu > li > a:hover,
body #tx88-primary-menu > li > a:hover,
body ul.tx88-menu > li.current-menu-item > a:hover,
body ul.tx88-menu > li.current_page_item > a:hover,
body #tx88-primary-menu > li.current-menu-item > a:hover,
body #tx88-primary-menu > li.current_page_item > a:hover{
  color: #ffffff !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  opacity: .86 !important;
  transform: none !important;
}
body .tx88-menu .sub-menu,
body #tx88-primary-menu .sub-menu{
  display: none !important;
}
body.header-is-fixed .tx88-site{
  padding-top: 0 !important;
}
body.header-is-fixed .tx88-topbar,
body.header-is-fixed .tx88-nav-wrap{
  position: static !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  width: 100% !important;
  box-shadow: none !important;
}
@media (max-width: 1360px){
  body .tx88-header{
    grid-template-columns: 260px minmax(0, 1fr) !important;
  }
  body .tx88-topbar{
    padding-left: 24px !important;
    padding-right: 8px !important;
  }
  body .tx88-logo img{
    max-width: 155px !important;
  }
  body .tx88-nav-inner{
    padding-right: 18px !important;
  }
  body ul.tx88-menu,
  body #tx88-primary-menu{
    gap: 18px !important;
    justify-content: space-between !important;
  }
  body ul.tx88-menu > li > a,
  body #tx88-primary-menu > li > a{
    font-size: 18px !important;
  }
}
@media (max-width: 980px){
  :root{ --tx88-header-h: 64px; }
  body .tx88-header{
    grid-template-columns: 1fr auto !important;
    overflow: visible !important;
    padding: 0 14px !important;
  }
  body .tx88-topbar{
    padding: 0 !important;
  }
  body .tx88-logo img{
    max-width: 132px !important;
    max-height: 56px !important;
  }
  body .tx88-nav-wrap,
  body .tx88-nav-inner{
    overflow: visible !important;
    justify-content: flex-end !important;
    padding: 0 !important;
  }
  body .tx88-menu-toggle{
    display: inline-flex !important;
  }
  body ul.tx88-menu,
  body #tx88-primary-menu{
    display: none !important;
    position: absolute !important;
    left: 14px !important;
    right: 14px !important;
    top: var(--tx88-header-h) !important;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    background: #477ed8 !important;
    border-radius: 0 0 10px 10px !important;
    overflow: hidden !important;
    z-index: 9999 !important;
  }
  body ul.tx88-menu.is-open,
  body #tx88-primary-menu.is-open{
    display: flex !important;
  }
  body ul.tx88-menu > li,
  body #tx88-primary-menu > li,
  body ul.tx88-menu > li > a,
  body #tx88-primary-menu > li > a{
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
  }
  body ul.tx88-menu > li > a,
  body #tx88-primary-menu > li > a{
    justify-content: flex-start !important;
    padding: 13px 16px !important;
    font-size: 17px !important;
    border-top: 1px solid rgba(255,255,255,.16) !important;
  }
}

/* TX88: remove home app download block and rebuild footer like reference */
.tx88-download,
.home .tx88-download,
.front-page .tx88-download {
  display: none !important;
}

body .tx88-footer-new {
  margin: 0 !important;
  padding: 64px 42px 28px !important;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 247, 188, .72), transparent 28%),
    linear-gradient(90deg, #d7f7ff 0%, #b6edfb 54%, #b9effb 100%) !important;
  border-top: 4px solid rgba(88, 195, 225, .65) !important;
  box-shadow: none !important;
  color: #24495b !important;
}

body .tx88-footer-new .tx88-footer-columns {
  width: 100% !important;
  max-width: 1480px !important;
  margin: 0 auto !important;
  padding: 0 0 58px !important;
  display: grid !important;
  grid-template-columns: 1.18fr 1.05fr 1fr 1.32fr !important;
  gap: clamp(34px, 5vw, 82px) !important;
  align-items: start !important;
  border-bottom: 1px solid rgba(0, 95, 180, .22) !important;
}

body .tx88-footer-new section {
  min-width: 0 !important;
}

body .tx88-footer-new .tx88-footer-logo {
  display: inline-flex !important;
  align-items: center !important;
  margin: 0 0 24px !important;
  text-decoration: none !important;
}

body .tx88-footer-new .tx88-footer-logo img {
  display: block !important;
  width: auto !important;
  max-width: 310px !important;
  max-height: 118px !important;
  object-fit: contain !important;
}

body .tx88-footer-new h3 {
  margin: 0 0 28px !important;
  padding: 0 !important;
  color: #004ba8 !important;
  font-size: clamp(24px, 2vw, 34px) !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  text-transform: uppercase !important;
  letter-spacing: .2px !important;
}

body .tx88-footer-new p,
body .tx88-footer-new li {
  color: #24495b !important;
  font-size: clamp(18px, 1.38vw, 26px) !important;
  line-height: 1.55 !important;
  font-weight: 400 !important;
}

body .tx88-footer-new p {
  margin: 0 0 24px !important;
}

body .tx88-footer-new ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body .tx88-footer-new li {
  margin: 0 0 22px !important;
  padding: 0 !important;
}

body .tx88-footer-new a {
  color: #005ecb !important;
  text-decoration: none !important;
  font-weight: 500 !important;
}

body .tx88-footer-new a:hover {
  color: #0072ff !important;
  text-decoration: underline !important;
}

body .tx88-footer-new .tx88-footer-menu li,
body .tx88-footer-new .tx88-footer-guide-menu li {
  position: relative !important;
  padding-left: 40px !important;
}

body .tx88-footer-new .tx88-footer-menu li::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: .05em !important;
  color: #101010 !important;
  font-size: .9em !important;
  line-height: 1.5 !important;
}

body .tx88-footer-new .tx88-footer-guide-menu li::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: -.02em !important;
  color: #111 !important;
  font-size: 1.05em !important;
  line-height: 1.5 !important;
  font-weight: 900 !important;
}

body .tx88-footer-new .tx88-social {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 18px !important;
  margin-top: 26px !important;
}

body .tx88-footer-new .tx88-social a {
  width: 58px !important;
  height: 58px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  background: linear-gradient(180deg, #006ed8 0%, #004fb4 100%) !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-decoration: none !important;
}

body .tx88-footer-new .tx88-social a:hover {
  text-decoration: none !important;
  transform: translateY(-1px) !important;
}

body .tx88-footer-new .tx88-footer-contact li {
  position: relative !important;
  padding-left: 22px !important;
}

body .tx88-footer-new .tx88-footer-contact li::before {
  content: "•" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  color: #24495b !important;
}

body .tx88-footer-new .tx88-brand-strip,
body .tx88-footer-new .tx88-keywords,
body .tx88-footer-new .tx88-copyright,
body .tx88-brand-strip,
body .tx88-keywords,
body .tx88-copyright {
  display: none !important;
}

@media (max-width: 1180px) {
  body .tx88-footer-new {
    padding: 48px 24px 24px !important;
  }
  body .tx88-footer-new .tx88-footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 42px !important;
  }
}

@media (max-width: 720px) {
  body .tx88-footer-new {
    padding: 36px 18px 22px !important;
  }
  body .tx88-footer-new .tx88-footer-columns {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    padding-bottom: 36px !important;
  }
  body .tx88-footer-new h3 {
    font-size: 24px !important;
    margin-bottom: 18px !important;
  }
  body .tx88-footer-new p,
  body .tx88-footer-new li {
    font-size: 17px !important;
  }
  body .tx88-footer-new .tx88-footer-logo img {
    max-width: 230px !important;
    max-height: 96px !important;
  }
  body .tx88-footer-new .tx88-social a {
    width: 46px !important;
    height: 46px !important;
    font-size: 15px !important;
  }
}

/* TX88 footer compact typography fix */
body .tx88-footer-new {
  padding: 52px 36px 24px !important;
}

body .tx88-footer-new .tx88-footer-columns {
  max-width: 1540px !important;
  grid-template-columns: 1.35fr 1.35fr 1.2fr 1.65fr !important;
  gap: clamp(26px, 3.2vw, 58px) !important;
  padding-bottom: 46px !important;
}

body .tx88-footer-new .tx88-footer-logo {
  margin-bottom: 18px !important;
}

body .tx88-footer-new .tx88-footer-logo img {
  max-width: 260px !important;
  max-height: 98px !important;
}

body .tx88-footer-new h3 {
  margin-bottom: 22px !important;
  font-size: clamp(20px, 1.45vw, 27px) !important;
  line-height: 1.16 !important;
  letter-spacing: 0 !important;
}

body .tx88-footer-new p,
body .tx88-footer-new li {
  font-size: clamp(15px, 1.05vw, 19px) !important;
  line-height: 1.62 !important;
}

body .tx88-footer-new p {
  margin-bottom: 18px !important;
}

body .tx88-footer-new li {
  margin-bottom: 14px !important;
}

body .tx88-footer-new .tx88-footer-menu li,
body .tx88-footer-new .tx88-footer-guide-menu li {
  padding-left: 30px !important;
}

body .tx88-footer-new .tx88-footer-menu li::before,
body .tx88-footer-new .tx88-footer-guide-menu li::before {
  font-size: .82em !important;
  top: .08em !important;
}

body .tx88-footer-new .tx88-social {
  gap: 14px !important;
  margin-top: 20px !important;
}

body .tx88-footer-new .tx88-social a {
  width: 48px !important;
  height: 48px !important;
  font-size: 15px !important;
}

body .tx88-footer-new .tx88-footer-contact li {
  padding-left: 18px !important;
}

@media (max-width: 1180px) {
  body .tx88-footer-new {
    padding: 42px 24px 22px !important;
  }
  body .tx88-footer-new .tx88-footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 34px 42px !important;
  }
  body .tx88-footer-new h3 {
    font-size: 24px !important;
  }
}

@media (max-width: 720px) {
  body .tx88-footer-new {
    padding: 32px 16px 20px !important;
  }
  body .tx88-footer-new .tx88-footer-columns {
    grid-template-columns: 1fr !important;
    gap: 26px !important;
    padding-bottom: 30px !important;
  }
  body .tx88-footer-new h3 {
    font-size: 21px !important;
    margin-bottom: 14px !important;
  }
  body .tx88-footer-new p,
  body .tx88-footer-new li {
    font-size: 15px !important;
    line-height: 1.58 !important;
  }
  body .tx88-footer-new .tx88-footer-logo img {
    max-width: 220px !important;
    max-height: 84px !important;
  }
  body .tx88-footer-new .tx88-social a {
    width: 42px !important;
    height: 42px !important;
    font-size: 14px !important;
  }
}

/* TX88 footer layout final: guide + hashtag + contact + brand strip + copyright */
body .tx88-footer-new {
  padding: 50px 32px 0 !important;
  background:
    linear-gradient(180deg, rgba(216, 249, 255, .96), rgba(158, 230, 246, .94)),
    radial-gradient(circle at 10% 0%, rgba(255, 246, 205, .75), transparent 32%) !important;
  border-top: 6px solid rgba(71, 126, 216, .28) !important;
}

body .tx88-footer-new .tx88-footer-columns {
  max-width: 1500px !important;
  width: 100% !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: minmax(250px, .95fr) minmax(210px, .75fr) minmax(300px, 1.1fr) minmax(330px, 1.25fr) !important;
  gap: clamp(32px, 4vw, 76px) !important;
  align-items: start !important;
  padding-bottom: 34px !important;
}

body .tx88-footer-new .tx88-footer-logo {
  display: inline-block !important;
  margin: 0 0 20px !important;
}

body .tx88-footer-new .tx88-footer-logo img {
  display: block !important;
  width: auto !important;
  max-width: 250px !important;
  max-height: 96px !important;
  object-fit: contain !important;
}

body .tx88-footer-new h3 {
  margin: 0 0 24px !important;
  color: #004ea8 !important;
  font-size: clamp(24px, 1.7vw, 32px) !important;
  line-height: 1.18 !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

body .tx88-footer-new p,
body .tx88-footer-new li,
body .tx88-footer-new .tx88-footer-keywords-text {
  color: #24495b !important;
  font-size: clamp(16px, 1.05vw, 20px) !important;
  line-height: 1.65 !important;
  font-weight: 400 !important;
}

body .tx88-footer-new p {
  margin: 0 0 18px !important;
}

body .tx88-footer-new ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

body .tx88-footer-new li {
  margin: 0 0 15px !important;
  padding: 0 !important;
}

body .tx88-footer-new a {
  color: #005ecb !important;
  text-decoration: none !important;
  font-weight: 500 !important;
}

body .tx88-footer-new a:hover {
  color: #0072ff !important;
  text-decoration: underline !important;
}

body .tx88-footer-new .tx88-footer-guide-menu li {
  position: relative !important;
  padding-left: 34px !important;
}

body .tx88-footer-new .tx88-footer-guide-menu li::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: .02em !important;
  color: #101010 !important;
  font-size: .9em !important;
  line-height: 1.6 !important;
  font-weight: 900 !important;
}

body .tx88-footer-new .tx88-footer-hashtag h3 {
  color: #555a64 !important;
}

body .tx88-footer-new .tx88-footer-keywords-text {
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
  margin: 0 !important;
}

body .tx88-footer-new .tx88-footer-contact ul {
  list-style: disc !important;
  padding-left: 20px !important;
}

body .tx88-footer-new .tx88-footer-contact li {
  position: static !important;
  padding-left: 0 !important;
}

body .tx88-footer-new .tx88-footer-contact li::before {
  content: none !important;
}

body .tx88-footer-new .tx88-social {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
  margin-top: 22px !important;
}

body .tx88-footer-new .tx88-social a {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(180deg, #006ed8, #004fb4) !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-decoration: none !important;
}

body .tx88-footer-new .tx88-brand-strip,
body .tx88-brand-strip {
  display: block !important;
  max-width: 1500px !important;
  margin: 0 auto 24px !important;
  padding: 18px 0 !important;
  text-align: center !important;
  border-top: 1px solid rgba(0, 95, 190, .25) !important;
  border-bottom: 1px solid rgba(0, 95, 190, .25) !important;
  background: transparent !important;
}

body .tx88-footer-new .tx88-brand-strip-image,
body .tx88-brand-strip-image {
  display: block !important;
  max-width: 100% !important;
  max-height: 82px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  margin: 0 auto !important;
}

body .tx88-footer-new .tx88-copyright,
body .tx88-copyright {
  display: block !important;
  margin: 0 -32px !important;
  padding: 22px 18px !important;
  background: #071d34 !important;
  color: #e8f7ff !important;
  text-align: center !important;
  font-size: 16px !important;
  line-height: 1.4 !important;
  font-weight: 500 !important;
}

body .tx88-footer-new .tx88-keywords,
body .tx88-keywords {
  display: none !important;
}

@media (max-width: 1180px) {
  body .tx88-footer-new {
    padding: 42px 24px 0 !important;
  }
  body .tx88-footer-new .tx88-footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 34px 48px !important;
  }
  body .tx88-footer-new .tx88-copyright,
  body .tx88-copyright {
    margin: 0 -24px !important;
  }
}

@media (max-width: 720px) {
  body .tx88-footer-new {
    padding: 32px 16px 0 !important;
  }
  body .tx88-footer-new .tx88-footer-columns {
    grid-template-columns: 1fr !important;
    gap: 26px !important;
    padding-bottom: 26px !important;
  }
  body .tx88-footer-new .tx88-footer-logo img {
    max-width: 220px !important;
    max-height: 84px !important;
  }
  body .tx88-footer-new h3 {
    font-size: 22px !important;
    margin-bottom: 14px !important;
  }
  body .tx88-footer-new p,
  body .tx88-footer-new li,
  body .tx88-footer-new .tx88-footer-keywords-text {
    font-size: 15px !important;
    line-height: 1.58 !important;
  }
  body .tx88-footer-new .tx88-social a {
    width: 42px !important;
    height: 42px !important;
    font-size: 14px !important;
  }
  body .tx88-footer-new .tx88-copyright,
  body .tx88-copyright {
    margin: 0 -16px !important;
    font-size: 14px !important;
    padding: 18px 14px !important;
  }
}


/* === TX88 final homepage/header overrides === */
/* Remove header search box completely and keep logo/actions aligned */
.tx88-search {
  display: none !important;
}

.tx88-topbar-inner {
  grid-template-columns: 205px minmax(0, 1fr) auto !important;
}

.tx88-actions {
  justify-self: end !important;
}

/* Remove homepage recent posts sidebar and make homepage content full width */
body.home .tx88-sidebar,
body.front-page .tx88-sidebar {
  display: none !important;
}

body.home .tx88-layout,
body.front-page .tx88-layout {
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 0 !important;
}

body.home .tx88-content,
body.front-page .tx88-content {
  width: 100% !important;
  max-width: 100% !important;
}

/* Remove footer social icons if old cached footer markup exists */
.tx88-social,
.tx88-footer-social,
.tx88-socials,
.tx88-social-links,
.tx88-footer-socials,
.footer-social,
.social-links {
  display: none !important;
}

/* Homepage game cards: theme color, no big title bar, small bottom label */
.game-card-grid {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 26px !important;
  padding: 28px 24px !important;
  margin: 14px 0 22px !important;
  background: linear-gradient(180deg, #d9f7ff 0%, #bff0ff 100%) !important;
}

.game-card {
  position: relative !important;
  display: block !important;
  overflow: hidden !important;
  border-radius: 18px !important;
  border: 4px solid #0066c9 !important;
  background: #0066c9 !important;
  box-shadow: 0 10px 22px rgba(0, 80, 160, .25) !important;
  text-decoration: none !important;
  aspect-ratio: 0.74 / 1 !important;
  height: auto !important;
  transform: none !important;
}

.game-card img {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  border: 0 !important;
  border-radius: 13px !important;
  max-width: 100% !important;
  transform: none !important;
}

.game-card-title {
  position: absolute !important;
  left: 50% !important;
  bottom: 12px !important;
  top: auto !important;
  right: auto !important;
  z-index: 5 !important;
  transform: translateX(-50%) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: calc(100% - 24px) !important;
  height: auto !important;
  min-height: 0 !important;
  line-height: 1.1 !important;
  padding: 7px 16px !important;
  margin: 0 !important;
  background: linear-gradient(180deg, #0877e8 0%, #0057b8 100%) !important;
  border: 2px solid rgba(255,255,255,.75) !important;
  border-radius: 999px !important;
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  text-align: center !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-shadow: 0 1px 3px rgba(0,0,0,.6) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,.28) !important;
  pointer-events: none !important;
}

.game-card::before,
.game-card::after,
.game-card-title::before,
.game-card-title::after {
  display: none !important;
  content: none !important;
}

.game-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 16px 32px rgba(0, 80, 160, .38) !important;
}

.game-card:hover img {
  transform: scale(1.04) !important;
  transition: transform .25s ease !important;
}

@media (max-width: 1500px) {
  .game-card-grid {
    gap: 20px !important;
  }
  .game-card-title {
    font-size: 14px !important;
    padding: 6px 13px !important;
    bottom: 10px !important;
  }
}

@media (max-width: 1100px) {
  .game-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .game-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    padding: 18px 12px !important;
  }
  .game-card {
    border-radius: 12px !important;
    border-width: 3px !important;
  }
  .game-card img {
    border-radius: 9px !important;
  }
  .game-card-title {
    font-size: 12px !important;
    padding: 5px 10px !important;
    bottom: 8px !important;
  }
}


.tx88-footer {
    padding: 34px 28px 0 !important;
    overflow: hidden !important;
}


.tx88-footer-columns {
    display: grid !important;
    grid-template-columns: 1.15fr 1.05fr 1.15fr 1.35fr !important;
    gap: 34px !important;
    align-items: flex-start !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
}


.tx88-footer h3,
.tx88-footer-title,
.tx88-footer-heading {
    font-size: 24px !important;
    line-height: 1.25 !important;
    margin: 0 0 22px !important;
    color: #0052b8 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0 !important;
}


.tx88-footer-columns section:nth-child(2) h3,
.tx88-footer-columns .tx88-footer-guide h3 {
    font-size: 22px !important;
}


.tx88-footer-columns section:nth-child(3) h3 {
    font-size: 22px !important;
    color: #555b66 !important;
}


.tx88-footer-columns section:nth-child(4) h3 {
    font-size: 24px !important;
    white-space: nowrap !important;
}


.tx88-footer p,
.tx88-footer li,
.tx88-footer a {
    font-size: 17px !important;
    line-height: 1.7 !important;
}


.tx88-footer-columns section:nth-child(1) p {
    font-size: 18px !important;
    line-height: 1.75 !important;
}


.tx88-footer-columns section:nth-child(2) li,
.tx88-footer-columns section:nth-child(2) a {
    font-size: 18px !important;
    line-height: 1.65 !important;
}


.tx88-footer-columns section:nth-child(3),
.tx88-footer-columns section:nth-child(3) p,
.tx88-footer-columns section:nth-child(3) div {
    font-size: 17px !important;
    line-height: 1.65 !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
}


.tx88-footer-columns section:nth-child(4) {
    min-width: 0 !important;
    max-width: 100% !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
}

.tx88-footer-columns section:nth-child(4) li,
.tx88-footer-columns section:nth-child(4) p,
.tx88-footer-columns section:nth-child(4) a {
    font-size: 17px !important;
    line-height: 1.7 !important;
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
}


.tx88-footer-logo img {
    max-width: 260px !important;
    max-height: 120px !important;
    height: auto !important;
}


.tx88-footer li {
    margin: 8px 0 !important;
}

.tx88-footer section:nth-child(2) a::before,
.footer-guide-menu a::before {
    margin-right: 8px !important;
}


@media (max-width: 1200px) {
    .tx88-footer-columns {
        grid-template-columns: 1fr 1fr !important;
        gap: 28px 40px !important;
    }

    .tx88-footer h3 {
        font-size: 22px !important;
    }
}


@media (max-width: 680px) {
    .tx88-footer {
        padding: 28px 18px 0 !important;
    }

    .tx88-footer-columns {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .tx88-footer h3 {
        font-size: 21px !important;
    }

    .tx88-footer p,
    .tx88-footer li,
    .tx88-footer a {
        font-size: 16px !important;
    }
}


.tx88-footer {
    overflow: visible !important;
    padding: 34px 24px 0 !important;
}

.tx88-footer-columns {
    display: grid !important;
    grid-template-columns: 1.1fr 1fr 1.05fr 1.25fr !important;
    gap: 28px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    align-items: flex-start !important;
}


.tx88-footer-columns > section,
.tx88-footer-columns > div {
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: visible !important;
}


.tx88-footer-columns section:nth-child(4),
.tx88-footer-columns > div:nth-child(4) {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-width: 0 !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
}


.tx88-footer h3,
.tx88-footer-title,
.tx88-footer-heading {
    white-space: normal !important;
    font-size: 22px !important;
    line-height: 1.25 !important;
    margin-bottom: 18px !important;
}


.tx88-footer-columns section:nth-child(4) h3,
.tx88-footer-columns > div:nth-child(4) h3 {
    white-space: normal !important;
    font-size: 22px !important;
    line-height: 1.25 !important;
}


.tx88-footer p,
.tx88-footer li,
.tx88-footer a {
    font-size: 16px !important;
    line-height: 1.65 !important;
}


.tx88-footer-columns section:nth-child(4) p,
.tx88-footer-columns section:nth-child(4) li,
.tx88-footer-columns section:nth-child(4) a,
.tx88-footer-columns > div:nth-child(4) p,
.tx88-footer-columns > div:nth-child(4) li,
.tx88-footer-columns > div:nth-child(4) a {
    font-size: 16px !important;
    line-height: 1.65 !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
}


.tx88-footer-logo img {
    max-width: 230px !important;
    max-height: 105px !important;
}


@media (max-width: 1100px) {
    .tx88-footer-columns {
        grid-template-columns: 1fr 1fr !important;
        gap: 28px 36px !important;
    }
}


@media (max-width: 680px) {
    .tx88-footer-columns {
        grid-template-columns: 1fr !important;
    }
}


.tx88-footer {
    width: 100% !important;
    padding: 34px 34px 0 !important;
    overflow: hidden !important;
}


.tx88-footer-columns {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;

    display: grid !important;
    grid-template-columns: 260px 220px 280px minmax(0, 1fr) !important;
    gap: 26px !important;
    align-items: flex-start !important;
}


.tx88-footer-columns > section,
.tx88-footer-columns > div {
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: hidden !important;
}


.tx88-footer h3,
.tx88-footer-title,
.tx88-footer-heading {
    font-size: 21px !important;
    line-height: 1.25 !important;
    margin: 0 0 18px !important;
    white-space: normal !important;
}


.tx88-footer-columns section:nth-child(2) h3,
.tx88-footer-columns section:nth-child(3) h3,
.tx88-footer-columns section:nth-child(4) h3 {
    font-size: 21px !important;
    white-space: normal !important;
}


.tx88-footer p,
.tx88-footer li,
.tx88-footer a {
    font-size: 15px !important;
    line-height: 1.62 !important;
}


.tx88-footer-columns section:nth-child(1) p {
    font-size: 15px !important;
    line-height: 1.7 !important;
}


.tx88-footer-logo img {
    max-width: 230px !important;
    max-height: 105px !important;
    height: auto !important;
}


.tx88-footer-columns section:nth-child(2) li,
.tx88-footer-columns section:nth-child(2) a {
    font-size: 15px !important;
    line-height: 1.6 !important;
}


.tx88-footer-columns section:nth-child(3),
.tx88-footer-columns section:nth-child(3) p,
.tx88-footer-columns section:nth-child(3) div {
    font-size: 15px !important;
    line-height: 1.6 !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
}


.tx88-footer-columns section:nth-child(4),
.tx88-footer-columns > div:nth-child(4) {
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: hidden !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
}


.tx88-footer-columns section:nth-child(4) p,
.tx88-footer-columns section:nth-child(4) li,
.tx88-footer-columns section:nth-child(4) a,
.tx88-footer-columns > div:nth-child(4) p,
.tx88-footer-columns > div:nth-child(4) li,
.tx88-footer-columns > div:nth-child(4) a {
    font-size: 15px !important;
    line-height: 1.6 !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
}


.tx88-footer li {
    margin: 7px 0 !important;
}


@media (max-width: 1150px) {
    .tx88-footer-columns {
        grid-template-columns: 1fr 1fr !important;
        gap: 28px 36px !important;
    }
}


@media (max-width: 680px) {
    .tx88-footer {
        padding: 28px 18px 0 !important;
    }

    .tx88-footer-columns {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }
}


:root {
  --tx88-wrap: 1280px !important;
}

body .tx88-site {
  width: 100% !important;
  max-width: var(--tx88-wrap) !important;
  overflow: hidden !important;
}


body .tx88-search,
body.home .tx88-sidebar,
body.front-page .tx88-sidebar,
body .tx88-download,
body.home .tx88-download,
body.front-page .tx88-download {
  display: none !important;
}

body.home .tx88-layout,
body.front-page .tx88-layout {
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 0 !important;
}

body.home .tx88-content,
body.front-page .tx88-content {
  width: 100% !important;
  max-width: 100% !important;
}


body .tx88-footer-new,
body footer.tx88-footer-new,
body .tx88-footer {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  padding: 34px 28px 0 !important;
  margin: 0 !important;
  background-color:#f3f3f3;
}


body .tx88-footer-new .tx88-footer-columns,
body .tx88-footer .tx88-footer-columns {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 auto !important;
  padding: 0 0 28px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .9fr) minmax(0, 1fr) minmax(0, 1.2fr) !important;
  gap: 22px !important;
  align-items: flex-start !important;
  box-sizing: border-box !important;
  overflow: visible !important;
  border-bottom: 1px solid rgba(0, 95, 190, .22) !important;
}

body .tx88-footer-new .tx88-footer-columns > *,
body .tx88-footer .tx88-footer-columns > * {
  min-width: 0 !important;
  max-width: 100% !important;
  width: auto !important;
  overflow: visible !important;
  box-sizing: border-box !important;
}


body .tx88-footer-new .tx88-footer-contact,
body .tx88-footer-new .tx88-footer-columns > :nth-child(4),
body .tx88-footer .tx88-footer-columns > :nth-child(4) {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  min-width: 0 !important;
  max-width: 100% !important;
  overflow: visible !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
}


body .tx88-footer-new .tx88-footer-logo,
body .tx88-footer .tx88-footer-logo {
  display: inline-block !important;
  margin: 0 0 16px !important;
}

body .tx88-footer-new .tx88-footer-logo img,
body .tx88-footer .tx88-footer-logo img {
  display: block !important;
  width: auto !important;
  max-width: 210px !important;
  max-height: 82px !important;
  height: auto !important;
  object-fit: contain !important;
}


body .tx88-footer-new h3,
body .tx88-footer h3,
body .tx88-footer-title,
body .tx88-footer-heading {
  margin: 0 0 16px !important;
  padding: 0 !important;
  color: #004ea8 !important;
  font-size: 20px !important;
  line-height: 1.25 !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
  list-style: none;
}

body .tx88-footer-new .tx88-footer-hashtag h3,
body .tx88-footer-new .tx88-footer-columns > :nth-child(3) h3,
body .tx88-footer .tx88-footer-columns > :nth-child(3) h3 {
  color: #555a64 !important;
}


body .tx88-footer-new p,
body .tx88-footer-new li,
body .tx88-footer-new a,
body .tx88-footer-new .tx88-footer-keywords-text,
body .tx88-footer p,
body .tx88-footer li,
body .tx88-footer a {
  color: #24495b !important;
  font-size: 14px !important;
  line-height: 1.62 !important;
  font-weight: 400 !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
}

body .tx88-footer-new p,
body .tx88-footer p {
  margin: 0 0 14px !important;
}


body .tx88-footer-new .tx88-footer-guide-menu,
body .tx88-footer .tx88-footer-guide-menu,
body .footer-guide-menu {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

body .tx88-footer-new .tx88-footer-guide-menu li,
body .tx88-footer .tx88-footer-guide-menu li,
body .footer-guide-menu li {
  position: relative !important;
  margin: 0 0 10px !important;
  padding-left: 24px !important;
}

body .tx88-footer-new .tx88-footer-guide-menu li::before,
body .tx88-footer .tx88-footer-guide-menu li::before,
body .footer-guide-menu li::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: .05em !important;
  color: #111 !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
  font-weight: 900 !important;
}

body .tx88-footer-new .tx88-footer-guide-menu a,
body .tx88-footer .tx88-footer-guide-menu a,
body .footer-guide-menu a {
  color: #005ecb !important;
  text-decoration: none !important;
  font-size: 14px !important;
  line-height: 1.62 !important;
}


body .tx88-footer-new .tx88-footer-keywords-text,
body .tx88-footer-new .tx88-footer-hashtag,
body .tx88-footer-new .tx88-footer-columns > :nth-child(3),
body .tx88-footer .tx88-footer-columns > :nth-child(3) {
  max-width: 100% !important;
  min-width: 0 !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
}


body .tx88-footer-new .tx88-footer-contact ul,
body .tx88-footer-new .tx88-footer-columns > :nth-child(4) ul,
body .tx88-footer .tx88-footer-columns > :nth-child(4) ul {
  list-style: disc !important;
  padding-left: 18px !important;
  margin: 0 !important;
}

body .tx88-footer-new .tx88-footer-contact li,
body .tx88-footer-new .tx88-footer-columns > :nth-child(4) li,
body .tx88-footer .tx88-footer-columns > :nth-child(4) li {
  display: list-item !important;
  position: static !important;
  padding-left: 0 !important;
  margin: 0 0 12px !important;
  max-width: 100% !important;
  overflow: visible !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
  list-style: none;
}

body .tx88-footer-new .tx88-footer-contact li::before,
body .tx88-footer-new .tx88-footer-columns > :nth-child(4) li::before,
body .tx88-footer .tx88-footer-columns > :nth-child(4) li::before {
  content: none !important;
}


body .tx88-social,
body .tx88-footer-social,
body .tx88-socials,
body .tx88-social-links,
body .tx88-footer-socials,
body .footer-social,
body .social-links {
  display: none !important;
}


body .tx88-footer-new .tx88-brand-strip,
body .tx88-footer .tx88-brand-strip,
body .tx88-brand-strip {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto 18px !important;
  padding: 14px 0 !important;
  text-align: center !important;
  border-top: 1px solid rgba(0, 95, 190, .22) !important;
  border-bottom: 1px solid rgba(0, 95, 190, .22) !important;
  background: transparent !important;
}

body .tx88-footer-new .tx88-brand-strip-image,
body .tx88-footer .tx88-brand-strip-image,
body .tx88-brand-strip-image {
  display: block !important;
  max-width: 100% !important;
  max-height: 76px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  margin: 0 auto !important;
}


body .tx88-keywords,
body .tx88-footer-new .tx88-keywords {
  display: none !important;
}


body .tx88-footer-new .tx88-copyright,
body .tx88-footer .tx88-copyright,
body .tx88-copyright {
  display: block !important;
  width: auto !important;
  margin: 0 -28px !important;
  padding: 18px 14px !important;
  background: #071d34 !important;
  color: #e8f7ff !important;
  text-align: center !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  font-weight: 500 !important;
}


@media (max-width: 1100px) {
  body .tx88-footer-new .tx88-footer-columns,
  body .tx88-footer .tx88-footer-columns {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px 36px !important;
  }
}


@media (max-width: 680px) {
  body .tx88-footer-new,
  body footer.tx88-footer-new,
  body .tx88-footer {
    padding: 28px 16px 0 !important;
  }

  body .tx88-footer-new .tx88-footer-columns,
  body .tx88-footer .tx88-footer-columns {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    padding-bottom: 24px !important;
  }

  body .tx88-footer-new h3,
  body .tx88-footer h3 {
    font-size: 20px !important;
    margin-bottom: 12px !important;
  }

  body .tx88-footer-new p,
  body .tx88-footer-new li,
  body .tx88-footer-new a,
  body .tx88-footer-new .tx88-footer-keywords-text,
  body .tx88-footer p,
  body .tx88-footer li,
  body .tx88-footer a {
    font-size: 14px !important;
    line-height: 1.58 !important;
  }

  body .tx88-footer-new .tx88-footer-logo img,
  body .tx88-footer .tx88-footer-logo img {
    max-width: 210px !important;
    max-height: 80px !important;
  }

  body .tx88-footer-new .tx88-copyright,
  body .tx88-footer .tx88-copyright,
  body .tx88-copyright {
    margin: 0 -16px !important;
    font-size: 13px !important;
    padding: 16px 12px !important;
  }
}


.tx88-header {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    background: transparent !important;
    overflow: visible !important;
}


.tx88-topbar {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 78px !important;
    max-height: none !important;
    padding: 10px 24px 8px !important;
    background: linear-gradient(180deg, #c8efff, #94dafb) !important;
    box-sizing: border-box !important;
}


.tx88-topbar-inner {
    display: grid !important;
    grid-template-columns: 260px 1fr auto !important;
    align-items: center !important;
    gap: 18px !important;
    width: 100% !important;
    height: auto !important;
    min-height: 70px !important;
}


.tx88-logo {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: auto !important;
    height: auto !important;
    min-height: 70px !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.tx88-logo img {
    display: block !important;
    width: auto !important;
    max-width: 230px !important;
    max-height: 72px !important;
    height: auto !important;
    object-fit: contain !important;
    visibility: visible !important;
    opacity: 1 !important;
}


.tx88-search {
    display: none !important;
}


.tx88-actions {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 12px !important;
}


.tx88-nav-wrap {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 48px !important;
    max-height: none !important;
    background: linear-gradient(180deg, #11a9f8, #0090e4) !important;
    border-top: 1px solid rgba(255,255,255,.45) !important;
    border-bottom: 1px solid rgba(0,87,151,.32) !important;
    overflow: hidden !important;
    position: relative !important;
}

.tx88-nav-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: auto !important;
    min-height: 48px !important;
    padding: 0 18px !important;
    overflow: hidden !important;
}

.tx88-menu {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    width: 100% !important;
    height: auto !important;
    min-height: 48px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

.tx88-menu li {
    flex: 0 0 auto !important;
    height: auto !important;
    min-height: 48px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.tx88-menu a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 48px !important;
    min-height: 48px !important;
    padding: 0 20px !important;
    color: #061f2d !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
}


.tx88-menu a:hover,
.tx88-menu .current-menu-item > a,
.tx88-menu .current_page_item > a {
    color: #ffffff !important;
    background: rgba(0, 51, 91, .18) !important;
}


.tx88-hero {
    margin-bottom: 16px !important;
    overflow: hidden !important;
}

.tx88-hero img {
    width: 100% !important;
    max-height: 460px !important;
    height: auto !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    border-radius: 3px !important;
}


body.home .tx88-hero img,
body.front-page .tx88-hero img {
    aspect-ratio: 16 / 7 !important;
    height: auto !important;
    max-height: 460px !important;
    object-fit: cover !important;
}


body.home .tx88-main,
body.front-page .tx88-main {
    padding-top: 18px !important;
}


@media (max-width: 1100px) {
    .tx88-topbar-inner {
        grid-template-columns: 220px 1fr auto !important;
    }

    .tx88-logo img {
        max-width: 200px !important;
        max-height: 64px !important;
    }

    .tx88-menu a {
        font-size: 13px !important;
        padding: 0 12px !important;
    }

    body.home .tx88-hero img,
    body.front-page .tx88-hero img {
        max-height: 360px !important;
        aspect-ratio: 16 / 8 !important;
    }
}


@media (max-width: 680px) {
    .tx88-topbar-inner {
        grid-template-columns: 1fr auto !important;
    }

    .tx88-logo img {
        max-width: 160px !important;
        max-height: 54px !important;
    }

    .tx88-actions {
        display: none !important;
    }

    .tx88-menu {
        flex-wrap: wrap !important;
    }

    .tx88-menu a {
        font-size: 12px !important;
        padding: 0 8px !important;
    }

    body.home .tx88-hero img,
    body.front-page .tx88-hero img {
        max-height: 260px !important;
        aspect-ratio: 16 / 9 !important;
    }
}


:root {
  --tx88-wrap: 1280px !important;
}

html body .tx88-site {
  width: 100% !important;
  max-width: var(--tx88-wrap) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  overflow: hidden !important;
}


html body .tx88-header {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  overflow: visible !important;
  border: 0 !important;
  box-shadow: none !important;
  position: relative !important;
}

html body .tx88-topbar {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  min-height: 88px !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 8px 28px !important;
  background: linear-gradient(180deg, #d9f5ff 0%, #a8e4fb 100%) !important;
  border: 0 !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}

html body .tx88-topbar-inner {
  display: grid !important;
  grid-template-columns: 250px minmax(0, 1fr) auto !important;
  align-items: center !important;
  justify-content: stretch !important;
  gap: 18px !important;
  width: 100% !important;
  height: auto !important;
  min-height: 72px !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

html body .tx88-logo,
html body .tx88-logo:hover {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: auto !important;
  height: auto !important;
  min-height: 72px !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  visibility: visible !important;
  opacity: 1 !important;
  overflow: visible !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

html body .tx88-logo img {
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: 230px !important;
  max-height: 72px !important;
  margin: 0 !important;
  object-fit: contain !important;
  visibility: visible !important;
  opacity: 1 !important;
}

html body .tx88-search {
  display: none !important;
}

html body .tx88-actions {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  justify-self: end !important;
  gap: 12px !important;
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
  opacity: 1 !important;
}

html body .tx88-pill {
  min-height: 40px !important;
  padding: 7px 18px !important;
  border-radius: 22px !important;
  font-size: 14px !important;
  line-height: 1.1 !important;
}


html body .tx88-nav-wrap {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  min-height: 52px !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: linear-gradient(180deg, #fefefe 0%, #0072ff 100%) !important;
  border-top: 1px solid rgba(255,255,255,.48) !important;
  border-bottom: 1px solid rgba(0,76,135,.34) !important;
  box-shadow: none !important;
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  overflow: hidden !important;
}

html body .tx88-nav-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: nowrap !important;
  width: 100% !important;
  height: auto !important;
  min-height: 52px !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 14px !important;
  overflow: hidden !important;
}

html body ul.tx88-menu,
html body #tx88-primary-menu {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  width: 100% !important;
  height: auto !important;
  min-height: 52px !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  list-style: none !important;
}

html body ul.tx88-menu > li,
html body #tx88-primary-menu > li {
  display: block !important;
  flex: 0 1 auto !important;
  width: auto !important;
  height: auto !important;
  min-height: 52px !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
}

html body ul.tx88-menu > li > a,
html body #tx88-primary-menu > li > a,
html body ul.tx88-menu > li.current-menu-item > a,
html body ul.tx88-menu > li.current_page_item > a,
html body #tx88-primary-menu > li.current-menu-item > a,
html body #tx88-primary-menu > li.current_page_item > a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  height: 52px !important;
  min-height: 52px !important;
  max-height: 52px !important;
  margin: 0 !important;
  padding: 0 22px !important;
  color: #102033 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-shadow: none !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  opacity: 1 !important;
  transform: none !important;
}

html body ul.tx88-menu > li > a:hover,
html body #tx88-primary-menu > li > a:hover,
html body ul.tx88-menu > li.current-menu-item > a,
html body ul.tx88-menu > li.current_page_item > a,
html body #tx88-primary-menu > li.current-menu-item > a,
html body #tx88-primary-menu > li.current_page_item > a {
  color: #ffffff !important;
  background: rgba(0, 65, 125, .23) !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  opacity: 1 !important;
}


html body.home .tx88-main,
html body.front-page .tx88-main {
  padding-top: 18px !important;
}

html body.home .tx88-hero,
html body.front-page .tx88-hero {
  width: 100% !important;
  max-width: 980px !important;
  margin: 0 auto 18px !important;
  padding: 0 !important;
  overflow: hidden !important;
}

html body.home .tx88-hero img,
html body.front-page .tx88-hero img,
html body .tx88-hero img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  margin: 0 auto !important;
  border-radius: 4px !important;
}


html body.header-is-fixed .tx88-site {
  padding-top: 0 !important;
}

html body.header-is-fixed .tx88-topbar,
html body.header-is-fixed .tx88-nav-wrap {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  width: 100% !important;
  box-shadow: none !important;
}

@media (max-width: 1100px) {
  html body .tx88-topbar-inner {
    grid-template-columns: 210px minmax(0, 1fr) auto !important;
  }

  html body .tx88-logo img {
    max-width: 190px !important;
    max-height: 64px !important;
  }

  html body ul.tx88-menu > li > a,
  html body #tx88-primary-menu > li > a {
    padding: 0 12px !important;
    font-size: 12px !important;
  }

  html body.home .tx88-hero,
  html body.front-page .tx88-hero {
    max-width: 900px !important;
  }
}

@media (max-width: 820px) {
  html body .tx88-topbar {
    min-height: 68px !important;
    padding: 6px 14px !important;
  }

  html body .tx88-topbar-inner {
    grid-template-columns: 1fr auto !important;
    min-height: 56px !important;
  }

  html body .tx88-logo,
  html body .tx88-logo:hover {
    min-height: 56px !important;
  }

  html body .tx88-logo img {
    max-width: 160px !important;
    max-height: 54px !important;
  }

  html body .tx88-actions {
    display: none !important;
  }

  html body .tx88-nav-inner {
    min-height: 50px !important;
    padding: 6px 12px !important;
    justify-content: space-between !important;
    overflow: visible !important;
  }

  html body .tx88-menu-toggle {
    display: inline-flex !important;
  }

  html body ul.tx88-menu,
  html body #tx88-primary-menu {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 12px !important;
    right: 12px !important;
    z-index: 9999 !important;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    background: #008fdc !important;
    overflow: hidden !important;
  }

  html body ul.tx88-menu.is-open,
  html body #tx88-primary-menu.is-open {
    display: flex !important;
  }

  html body ul.tx88-menu > li,
  html body #tx88-primary-menu > li,
  html body ul.tx88-menu > li > a,
  html body #tx88-primary-menu > li > a {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
  }

  html body ul.tx88-menu > li > a,
  html body #tx88-primary-menu > li > a {
    justify-content: flex-start !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    border-top: 1px solid rgba(255,255,255,.18) !important;
  }

  html body.home .tx88-hero,
  html body.front-page .tx88-hero {
    max-width: 100% !important;
  }
}


.tx88-pill {
    position: relative !important;
    overflow: hidden !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-height: 34px !important;
    padding: 7px 18px !important;
    border-radius: 999px !important;

    color: #ffffff !important;
    background: linear-gradient(180deg, #ff2d2d 0%, #d80000 48%, #8b0000 100%) !important;
    border: 2px solid #ffe066 !important;

    font-size: 14px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    text-decoration: none !important;

    text-shadow:
        0 1px 2px rgba(0, 0, 0, .75),
        0 0 8px rgba(255, 255, 255, .45) !important;

    box-shadow:
        0 0 0 2px rgba(255, 224, 102, .35),
        0 0 12px rgba(255, 0, 0, .75),
        0 4px 0 rgba(90, 0, 0, .75) !important;

    animation: tx88-pill-flash 1.05s infinite ease-in-out !important;
}

.tx88-pill:hover {
    color: #ffffff !important;
    transform: translateY(-2px) scale(1.04) !important;
    box-shadow:
        0 0 0 2px rgba(255, 224, 102, .65),
        0 0 20px rgba(255, 0, 0, .95),
        0 5px 0 rgba(90, 0, 0, .75) !important;
}


.tx88-pill::before {
    content: "" !important;
    position: absolute !important;
    top: -50% !important;
    left: -70% !important;
    width: 45% !important;
    height: 200% !important;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, .15) 35%,
        rgba(255, 255, 255, .9) 50%,
        rgba(255, 255, 255, .15) 65%,
        transparent 100%
    ) !important;
    transform: rotate(25deg) !important;
    animation: tx88-pill-shine 1.8s infinite linear !important;
    pointer-events: none !important;
}


@keyframes tx88-pill-flash {
    0%, 100% {
        filter: brightness(1) saturate(1.1);
        box-shadow:
            0 0 0 2px rgba(255, 224, 102, .35),
            0 0 10px rgba(255, 0, 0, .65),
            0 4px 0 rgba(90, 0, 0, .75);
    }

    50% {
        filter: brightness(1.35) saturate(1.45);
        box-shadow:
            0 0 0 3px rgba(255, 224, 102, .85),
            0 0 24px rgba(255, 0, 0, 1),
            0 0 34px rgba(255, 214, 0, .85),
            0 4px 0 rgba(90, 0, 0, .75);
    }
}


@keyframes tx88-pill-shine {
    0% {
        left: -75%;
    }

    55% {
        left: 125%;
    }

    100% {
        left: 125%;
    }
}


@media (max-width: 980px) {
  html body .tx88-site {
    max-width: 100% !important;
    overflow: visible !important;
  }

  html body .tx88-header {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    overflow: visible !important;
    position: relative !important;
    z-index: 1000 !important;
  }

  html body .tx88-topbar {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    padding: 12px 12px 14px !important;
    margin: 0 !important;
    background: linear-gradient(180deg, #d8f7ff 0%, #aeeaff 100%) !important;
    overflow: visible !important;
    position: relative !important;
    z-index: 1002 !important;
  }

  html body .tx88-topbar-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
  }

  html body .tx88-logo,
  html body .tx88-logo:hover {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    padding: 0 !important;
    margin: 0 auto !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    transform: none !important;
  }

  html body .tx88-logo img {
    display: block !important;
    width: auto !important;
    max-width: 220px !important;
    max-height: 86px !important;
    height: auto !important;
    object-fit: contain !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  html body .tx88-search {
    display: none !important;
  }

  
  html body .tx88-topbar .tx88-actions,
  html body .tx88-header .tx88-actions,
  html body .tx88-actions {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
  }

  html body .tx88-topbar .tx88-actions .tx88-pill,
  html body .tx88-header .tx88-actions .tx88-pill,
  html body .tx88-actions .tx88-pill {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 138px !important;
    min-height: 42px !important;
    height: auto !important;
    padding: 8px 16px !important;
    margin: 0 !important;
    font-size: 15px !important;
    line-height: 1.1 !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 1003 !important;
  }

  html body .tx88-nav-wrap {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    padding: 12px 14px 14px !important;
    margin: 0 !important;
    background: linear-gradient(180deg, #12aaf8 0%, #0090df 100%) !important;
    border: 0 !important;
    position: relative !important;
    overflow: visible !important;
    z-index: 1001 !important;
  }

  html body .tx88-nav-inner {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    position: relative !important;
  }

  html body .tx88-menu-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 150px !important;
    height: 54px !important;
    min-height: 54px !important;
    max-height: none !important;
    padding: 0 24px !important;
    margin: 0 !important;
    border: 2px solid rgba(255,255,255,.62) !important;
    border-radius: 10px !important;
    background: rgba(255,255,255,.2) !important;
    color: #ffffff !important;
    font-size: 24px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    position: relative !important;
    z-index: 1010 !important;
    touch-action: manipulation !important;
  }

  html body .tx88-menu-toggle:active {
    transform: scale(.98) !important;
  }

  
  html body ul.tx88-menu,
  html body #tx88-primary-menu {
    display: none !important;
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 12px 0 0 !important;
    padding: 0 !important;
    list-style: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    background: rgba(0, 82, 184, .98) !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    z-index: 1009 !important;
  }

  html body ul.tx88-menu.is-open,
  html body #tx88-primary-menu.is-open,
  html body.tx88-menu-open ul.tx88-menu,
  html body.tx88-menu-open #tx88-primary-menu {
    display: flex !important;
  }

  html body ul.tx88-menu > li,
  html body #tx88-primary-menu > li {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    white-space: normal !important;
  }

  html body ul.tx88-menu > li > a,
  html body #tx88-primary-menu > li > a,
  html body ul.tx88-menu > li.current-menu-item > a,
  html body #tx88-primary-menu > li.current-menu-item > a,
  html body ul.tx88-menu > li.current_page_item > a,
  html body #tx88-primary-menu > li.current_page_item > a {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    padding: 14px 18px !important;
    margin: 0 !important;
    color: #ffffff !important;
    background: transparent !important;
    border: 0 !important;
    border-top: 1px solid rgba(255,255,255,.16) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    text-decoration: none !important;
    text-transform: none !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    line-height: 1.35 !important;
    white-space: normal !important;
    pointer-events: auto !important;
  }

  html body ul.tx88-menu > li > a:hover,
  html body #tx88-primary-menu > li > a:hover {
    color: #ffffff !important;
    background: rgba(255,255,255,.14) !important;
  }
}

@media (max-width: 420px) {
  html body .tx88-logo img {
    max-width: 190px !important;
    max-height: 74px !important;
  }

  html body .tx88-actions {
    gap: 8px !important;
  }

  html body .tx88-actions .tx88-pill {
    min-width: 126px !important;
    min-height: 38px !important;
    padding: 7px 12px !important;
    font-size: 13px !important;
  }

  html body .tx88-menu-toggle {
    min-width: 138px !important;
    height: 50px !important;
    font-size: 22px !important;
  }
}


:root {
  --tx88-primary: #0072ff !important;
  --tx88-primary-dark: #0072ff !important;
  --tx88-primary-light: #e8f8e8 !important;
  --tx88-accent: #0072ff !important;
  --tx88-text: #102033 !important;
  --tx88-muted: #5d7288 !important;
  --tx88-border: rgba(54, 166, 56, .32) !important;
  --tx88-card: #ffffff !important;
  --tx88-white: #ffffff !important;
  --tx88-shadow: 0 6px 18px rgba(25, 115, 30, .16) !important;
}

body {
  color: #102033 !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(54, 166, 56, .18) 0%, transparent 32%),
    linear-gradient(180deg, #eaf9ea 0%, #c9efca 45%, #0072ff 100%) !important;
}

body .tx88-site {
  background: #ffffff !important;
  box-shadow: 0 0 34px rgba(25, 115, 30, .24) !important;
}

body .tx88-header,
body .tx88-topbar,
body .tx88-nav-wrap {
  background: #0072ff !important;
  border-color: rgba(255,255,255,.28) !important;
}

body .tx88-topbar {
  background: linear-gradient(180deg, #43bf46 0%, #0072ff 100%) !important;
}

body .tx88-nav-wrap {
  background: linear-gradient(180deg, #0072ff 0%, #0072ff 100%) !important;
  border-bottom: 3px solid #ffffff !important;
}

body .tx88-menu a,
body #tx88-primary-menu > li > a {
  color: #ffffff !important;
}

body .tx88-menu a:hover,
body .tx88-menu .current-menu-item > a,
body .tx88-menu .current_page_item > a,
body #tx88-primary-menu > li > a:hover {
  color: #ffffff !important;
  background: rgba(255,255,255,.16) !important;
  border-color: rgba(255,255,255,.55) !important;
}

body .tx88-menu-toggle {
  background: rgba(255,255,255,.18) !important;
  border: 2px solid rgba(255,255,255,.55) !important;
  color: #ffffff !important;
}

body .tx88-pill,
body .tx88-store-btn,
body .tx88-404-btn,
body .back-top-btn {
  background: linear-gradient(180deg, #0072ff 0%, #0072ff 52%, #0072ff 100%) !important;
  color: #ffffff !important;
  border-color: rgba(255,255,255,.72) !important;
  box-shadow: 0 4px 0 rgba(20, 90, 24, .55), 0 0 14px rgba(54, 166, 56, .48) !important;
}

body .tx88-pill:hover,
body .tx88-store-btn:hover,
body .tx88-404-btn:hover,
body .back-top-btn:hover {
  color: #ffffff !important;
  filter: brightness(1.08) !important;
}

body .tx88-main {
  background: #ffffff !important;
  overflow: visible !important;
}

body .tx88-content,
body .tx88-layout,
body .tx88-article,
body .tx88-card,
body .tx88-post-card,
body .tx88-home-article-panel,
body .tx88-home-article-scrollbox,
body .tx88-card-body,
body .entry-content {
  background: #ffffff !important;
}

body .tx88-article,
body .tx88-card,
body .tx88-home-article-panel,
body .tx88-post-card {
  border-color: rgba(54, 166, 56, .28) !important;
  box-shadow: 0 6px 18px rgba(25, 115, 30, .12) !important;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body .tx88-article h1,
body .tx88-article .entry-content h2,
body .tx88-article .entry-content h3,
body .tx88-home-article-title,
body .tx88-card-title,
body .tx88-widget-title,
body .article-toc-title {
  color: #0072ff !important;
}

body .tx88-article .entry-content h2,
body .tx88-article .entry-content h3,
body .tx88-home-article-body h2,
body .tx88-home-article-body h3 {
  border-left-color: #0072ff !important;
}

body a,
body .entry-content a,
body .tx88-home-article-body a,
body .tx88-footer a,
body .footer-guide-menu a,
body .article-toc-link {
  color: #0072ff !important;
}

body a:hover,
body .entry-content a:hover,
body .tx88-footer a:hover,
body .footer-guide-menu a:hover,
body .article-toc-link:hover {
  color: #0072ff !important;
}

body .tx88-hero img,
body .tx88-article img.wp-post-image,
body .tx88-article .post-thumbnail img,
body .tx88-article .featured-image img,
body .tx88-article > figure:first-of-type img {
  box-shadow: 0 6px 18px rgba(25, 115, 30, .18) !important;
}

body .game-card,
body .tx88-icon-card {
  border-color: #0072ff !important;
  box-shadow: 0 8px 18px rgba(25, 115, 30, .18) !important;
}

body .game-card-title {
  background: linear-gradient(180deg, #0072ff 0%, #0072ff 100%) !important;
  color: #ffffff !important;
  border-color: rgba(255,255,255,.72) !important;
}

body .tx88-footer,
body .tx88-footer-new {
  background:
    radial-gradient(circle at 18% 0%, rgba(54, 166, 56, .18), transparent 34%),
    linear-gradient(180deg, #f6fff6 0%, #e5f7e6 100%) !important;
  border-top-color: rgba(54, 166, 56, .35) !important;
}

body .tx88-footer h3,
body .tx88-footer-new h3 {
  color: #0072ff !important;
}

body .tx88-copyright {
  background: #0072ff !important;
  color: #ffffff !important;
}


body .tx88-article table,
body .tx88-home-article-body table,
body .entry-content table {
  width: 100% !important;
  border-collapse: collapse !important;
  background: #ffffff !important;
  border: 1px solid rgba(54, 166, 56, .35) !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  box-shadow: 0 6px 18px rgba(25, 115, 30, .12) !important;
}

body .tx88-article table thead th,
body .tx88-home-article-body table thead th,
body .entry-content table thead th {
  background: linear-gradient(180deg, #0072ff 0%, #0072ff 100%) !important;
  color: #ffffff !important;
}

body .tx88-article table td,
body .tx88-article table th,
body .tx88-home-article-body table td,
body .tx88-home-article-body table th,
body .entry-content table td,
body .entry-content table th {
  border: 1px solid rgba(54, 166, 56, .22) !important;
}

body .tx88-article table tbody tr:nth-child(odd),
body .tx88-home-article-body table tbody tr:nth-child(odd),
body .entry-content table tbody tr:nth-child(odd) {
  background: #ffffff !important;
}

body .tx88-article table tbody tr:nth-child(even),
body .tx88-home-article-body table tbody tr:nth-child(even),
body .entry-content table tbody tr:nth-child(even) {
  background: #ffffff !important;
}

@media (max-width: 980px) {
  body .tx88-header,
  body .tx88-topbar,
  body .tx88-nav-wrap {
    background: #0072ff !important;
  }
  body ul.tx88-menu,
  body #tx88-primary-menu {
    background: #0072ff !important;
  }
}


.tx88-article img.wp-post-image,
.tx88-article .post-thumbnail img,
.tx88-article .tx88-post-thumbnail img,
.tx88-article .featured-image img,
.tx88-article > figure:first-of-type img,
.tx88-article img.wp-post-image,
.tx88-article .post-thumbnail img,
.tx88-article .tx88-post-thumbnail img,
.tx88-article .featured-image img,
.tx88-article > figure:first-of-type img {
    display: block !important;
    width: 100% !important;
    max-width: 860px !important;
    max-height: 420px !important;
    height: auto !important;
    object-fit: cover !important;
    object-position: center center !important;
    border-radius: 10px !important;
    box-shadow: 0 6px 18px rgba(13, 137, 221, .22) !important;
}

/* =========================================================
   TX88 mobile icon row: show 3 cards per row
   ========================================================= */
@media (max-width: 820px) {
  body .tx88-icon-row,
  body.home .tx88-icon-row,
  body.front-page .tx88-icon-row {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 12px 0 18px !important;
    padding: 0 !important;
    overflow: visible !important;
    box-sizing: border-box !important;
  }

  body .tx88-icon-row .game-card-grid,
  body.home .tx88-icon-row .game-card-grid,
  body.front-page .tx88-icon-row .game-card-grid,
  body .game-card-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 10px 0 16px !important;
    padding: 8px 6px !important;
    box-sizing: border-box !important;
  }

  body .tx88-icon-row .game-card,
  body .game-card {
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    aspect-ratio: 0.74 / 1 !important;
    border-width: 3px !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  body .tx88-icon-row .game-card img,
  body .game-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    border-radius: 7px !important;
  }

  body .tx88-icon-row .game-card-title,
  body .game-card-title {
    bottom: 6px !important;
    max-width: calc(100% - 10px) !important;
    padding: 4px 7px !important;
    font-size: 10px !important;
    line-height: 1.1 !important;
    border-width: 1px !important;
    border-radius: 999px !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 420px) {
  body .tx88-icon-row .game-card-grid,
  body.home .tx88-icon-row .game-card-grid,
  body.front-page .tx88-icon-row .game-card-grid,
  body .game-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 6px !important;
    padding: 6px 4px !important;
  }

  body .tx88-icon-row .game-card,
  body .game-card {
    border-width: 2px !important;
    border-radius: 8px !important;
  }

  body .tx88-icon-row .game-card img,
  body .game-card img {
    border-radius: 6px !important;
  }

  body .tx88-icon-row .game-card-title,
  body .game-card-title {
    bottom: 5px !important;
    max-width: calc(100% - 8px) !important;
    padding: 3px 5px !important;
    font-size: 9px !important;
  }
}


:root {
  --tx88-primary: #0072ff !important;
  --tx88-primary-dark: #16a9d1 !important;
  --tx88-primary-light: #eaf8ff !important;
  --tx88-accent: #0072ff !important;
  --tx88-card: #ffffff !important;
  --tx88-white: #ffffff !important;
}

body {
  background:
    radial-gradient(circle at 50% 0%, rgba(70, 212, 252, .32) 0%, transparent 30%),
    linear-gradient(180deg, #eafaff 0%, #b7efff 44%, #0072ff 100%) !important;
}

.tx88-site {
  background: #ffffff !important;
  box-shadow: 0 0 34px rgba(70, 212, 252, .34) !important;
}

.tx88-topbar {
  background: linear-gradient(180deg, #effdff 0%, #b9f1ff 100%) !important;
}

.tx88-nav-wrap {
  background: linear-gradient(180deg, #0072ff 0%, #1eb8e6 100%) !important;
  border-top: 1px solid rgba(255,255,255,.65) !important;
  border-bottom: 3px solid #ffffff !important;
}

.tx88-menu a,
.tx88-menu .current-menu-item > a,
.tx88-menu .current_page_item > a {
  color: #062836 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

.tx88-menu a:hover,
.tx88-menu .current-menu-item > a:hover,
.tx88-menu .current_page_item > a:hover {
  color: #ffffff !important;
  background: rgba(0, 92, 125, .32) !important;
}

.tx88-main,
.tx88-content,
.tx88-article,
.tx88-card,
.tx88-post-card,
.tx88-home-article-panel,
.tx88-home-article-scrollbox,
.tx88-headline-box,
.tx88-recent-item,
.tx88-sidebar .tx88-widget,
body.home .tx88-content,
body.front-page .tx88-content {
  background: #ffffff !important;
}

.tx88-main::before {
  display: none !important;
}

.tx88-article,
.tx88-card,
.tx88-home-article-panel,
.tx88-post-card,
.tx88-recent-item {
  border-color: rgba(70, 212, 252, .55) !important;
  box-shadow: 0 6px 18px rgba(70, 212, 252, .16) !important;
}

h1,
h2,
h3,
h4,
h5,
.entry-title,
.page-title,
.tx88-article h1,
.tx88-article .entry-content h1,
.tx88-article .entry-content h2,
.tx88-article .entry-content h3,
.tx88-article .entry-content h4,
.tx88-article .entry-content h5,
.tx88-home-article-title,
.tx88-home-article-body h1,
.tx88-home-article-body h2,
.tx88-home-article-body h3,
.tx88-card-title,
.tx88-footer h3 {
  color: #16a9d1 !important;
}

.entry-content a,
.tx88-home-article-body a,
.tx88-card-body a,
.tx88-footer a,
.footer-guide-menu a,
.article-toc-link {
  color: #139ec5 !important;
}

.tx88-pill,
.tx88-store-btn,
.tx88-404-btn {
  background: linear-gradient(180deg, #0072ff 0%, #19b4df 100%) !important;
  border-color: #ffffff !important;
  color: #062836 !important;
  box-shadow: 0 4px 0 rgba(0, 94, 125, .42), 0 0 16px rgba(70, 212, 252, .45) !important;
}

.tx88-pill:hover,
.tx88-store-btn:hover,
.tx88-404-btn:hover {
  color: #062836 !important;
  filter: brightness(1.06) !important;
}

.game-card,
.tx88-feature-game-card,
.tx88-icon-card {
  border-color: #0072ff !important;
  box-shadow: 0 8px 20px rgba(70, 212, 252, .26) !important;
}

.game-card-title,
.tx88-feature-game-title {
  background: linear-gradient(180deg, #0072ff 0%, #16a9d1 100%) !important;
  color: #062836 !important;
  text-shadow: none !important;
}

.tx88-footer,
.tx88-footer-new {
  background: linear-gradient(180deg, #effdff 0%, #b9f1ff 100%) !important;
  border-top-color: rgba(70, 212, 252, .8) !important;
}

.tx88-copyright,
.tx88-footer-new .tx88-copyright {
  background: #0b6f8a !important;
  color: #ffffff !important;
}

.tx88-article table,
.tx88-home-article-body table,
.entry-content table {
  background: #ffffff !important;
  border-color: rgba(70, 212, 252, .55) !important;
  box-shadow: 0 6px 18px rgba(70, 212, 252, .14) !important;
}

.tx88-article table thead th,
.tx88-home-article-body table thead th,
.entry-content table thead th {
  background: linear-gradient(180deg, #0072ff 0%, #16a9d1 100%) !important;
  color: #062836 !important;
}

.tx88-article table td,
.tx88-article table th,
.tx88-home-article-body table td,
.tx88-home-article-body table th,
.entry-content table td,
.entry-content table th {
  border-color: rgba(70, 212, 252, .32) !important;
}

@media (max-width: 820px) {
  .tx88-nav-wrap {
    background: linear-gradient(180deg, #0072ff 0%, #19b4df 100%) !important;
  }
  body ul.tx88-menu,
  body #tx88-primary-menu {
    background: #18afd8 !important;
  }
}


:root {
  --tx88-primary: #0072ff !important;
  --tx88-primary-dark: #003d99 !important;
  --tx88-primary-light: #eaf8ff !important;
  --tx88-accent: #00c6ff !important;
  --tx88-card: #ffffff !important;
  --tx88-brand-gradient: linear-gradient(135deg, #003d99, #0072ff, #00c6ff) !important;
}

body {
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 198, 255, .28) 0%, transparent 28%),
    linear-gradient(180deg, #002b70 0%, #0072ff 45%, #00c6ff 100%) !important;
}

body .tx88-site,
body .tx88-main,
body .tx88-content,
body .tx88-article,
body .tx88-card,
body .tx88-post-card,
body .tx88-home-article-panel,
body .tx88-home-article-scrollbox,
body .tx88-home-article-body,
body .entry-content {
  background: #ffffff !important;
}

body .tx88-site {
  box-shadow: 0 0 36px rgba(0, 61, 153, .35) !important;
}

body .tx88-header,
body .tx88-nav-wrap,
body .tx88-menu.is-open,
body #tx88-primary-menu.is-open,
body .tx88-store-btn,
body .tx88-404-code,
body .tx88-404-btn-outline,
body .tx88-pagination .current,
body .back-top-btn {
  background: linear-gradient(135deg, #003d99, #0072ff, #00c6ff) !important;
}

body .tx88-topbar {
  background: linear-gradient(180deg, #ffffff 0%, #eaf8ff 100%) !important;
}

body .tx88-menu a,
body #tx88-primary-menu a {
  color: #ffffff !important;
}

body .tx88-menu a:hover,
body .tx88-menu .current-menu-item > a,
body .tx88-menu .current_page_item > a,
body #tx88-primary-menu a:hover,
body #tx88-primary-menu .current-menu-item > a,
body #tx88-primary-menu .current_page_item > a {
  color: #ffffff !important;
  background: rgba(255, 255, 255, .18) !important;
}

body .tx88-pill {
  background: linear-gradient(135deg, #003d99, #0072ff, #00c6ff) !important;
  border-color: rgba(255,255,255,.75) !important;
  color: #ffffff !important;
  box-shadow: 0 0 14px rgba(0, 114, 255, .55), 0 4px 0 rgba(0, 61, 153, .55) !important;
}

body .tx88-headline-box,
body .tx88-home-article-title,
body .tx88-card-title,
body .tx88-article h1,
body .tx88-article .entry-content h2,
body .tx88-article .entry-content h3,
body .tx88-home-article-body h1,
body .tx88-home-article-body h2,
body .tx88-home-article-body h3,
body .tx88-home-article-body h4,
body h1,
body h2,
body h3,
body h4,
body h5 {
  color: #003d99 !important;
}

body a,
body .entry-content a,
body .tx88-home-article-body a,
body .tx88-footer a,
body .footer-guide-menu a,
body .article-toc-link {
  color: #0072ff !important;
}

body a:hover,
body .entry-content a:hover,
body .tx88-home-article-body a:hover,
body .tx88-footer a:hover,
body .footer-guide-menu a:hover {
  color: #003d99 !important;
}

body .tx88-main {
  background: #ffffff !important;
}

body .tx88-article,
body .tx88-home-article-panel,
body .tx88-card,
body .tx88-post-card,
body .tx88-recent-item {
  border-color: rgba(0, 114, 255, .28) !important;
  box-shadow: 0 6px 18px rgba(0, 114, 255, .12) !important;
}

body .tx88-icon-row,
body .game-card-grid {
  background: #ffffff !important;
}

body .game-card {
  border-color: #0072ff !important;
  background: #ffffff !important;
  box-shadow: 0 10px 22px rgba(0, 114, 255, .22) !important;
}

body .game-card-title {
  color: #ffffff !important;
  background: linear-gradient(135deg, #003d99, #0072ff, #00c6ff) !important;
  border-color: rgba(255,255,255,.75) !important;
  text-shadow: 0 1px 3px rgba(0,0,0,.45) !important;
}

body .tx88-footer,
body .tx88-footer-new {
  background: linear-gradient(180deg, #ffffff 0%, #eaf8ff 100%) !important;
  border-top-color: rgba(0, 114, 255, .35) !important;
}

body .tx88-footer h3,
body .tx88-footer-new h3 {
  color: #003d99 !important;
}

body .tx88-copyright {
  background: #003d99 !important;
  color: #ffffff !important;
}

body table thead th,
body .entry-content table thead th,
body .tx88-article table thead th,
body .tx88-home-article-body table thead th {
  background: linear-gradient(135deg, #003d99, #0072ff, #00c6ff) !important;
  color: #ffffff !important;
}

body table,
body .entry-content table,
body .tx88-article table,
body .tx88-home-article-body table {
  background: #ffffff !important;
  border-color: rgba(0, 114, 255, .28) !important;
}

body table td,
body table th,
body .entry-content table td,
body .entry-content table th,
body .tx88-article table td,
body .tx88-article table th,
body .tx88-home-article-body table td,
body .tx88-home-article-body table th {
  border-color: rgba(0, 114, 255, .18) !important;
}


:root {
  --tx88-header-final-bg: #ffffff;
  --tx88-header-final-text: #30323a;
  --tx88-header-final-muted: #737783;
  --tx88-header-final-blue: #0072ff;
  --tx88-header-final-cyan: #00c6ff;
  --tx88-header-final-dark: #003d99;
  --tx88-header-final-gradient: linear-gradient(135deg, #003d99, #0072ff, #00c6ff);
  --tx88-header-live-h: 92px;
}

html body .tx88-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 99990 !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  overflow: visible !important;
  background: var(--tx88-header-final-bg) !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(0, 114, 255, .16) !important;
  box-shadow: none !important;
  transform: none !important;
}

html body.admin-bar .tx88-header {
  top: 32px !important;
}

html body .tx88-header-inner {
  width: 100% !important;
  max-width: 1280px !important;
  min-height: 92px !important;
  margin: 0 auto !important;
  padding: 0 28px !important;
  display: grid !important;
  grid-template-columns: 230px minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 28px !important;
  background: #ffffff !important;
  box-sizing: border-box !important;
}

html body .tx88-logo,
html body .tx88-logo:hover {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  text-decoration: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

html body .tx88-logo img {
  display: block !important;
  width: auto !important;
  max-width: 190px !important;
  max-height: 68px !important;
  height: auto !important;
  object-fit: contain !important;
  opacity: 1 !important;
  visibility: visible !important;
}

html body .tx88-nav-wrap {
  position: static !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

html body .tx88-nav-inner {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
  flex-wrap: nowrap !important;
}

html body .tx88-menu-toggle {
  display: none !important;
}

html body ul.tx88-menu,
html body #tx88-primary-menu {
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 28px !important;
  overflow: visible !important;
  position: static !important;
  list-style: none !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
}

html body ul.tx88-menu > li,
html body #tx88-primary-menu > li {
  flex: 0 0 auto !important;
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  position: relative !important;
  overflow: visible !important;
  white-space: nowrap !important;
}

html body ul.tx88-menu > li > a,
html body #tx88-primary-menu > li > a,
html body ul.tx88-menu > li.current-menu-item > a,
html body ul.tx88-menu > li.current_page_item > a,
html body #tx88-primary-menu > li.current-menu-item > a,
html body #tx88-primary-menu > li.current_page_item > a {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 92px !important;
  min-height: 92px !important;
  max-height: 92px !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--tx88-header-final-muted) !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  text-shadow: none !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: .2px !important;
  opacity: 1 !important;
  transform: none !important;
}

html body ul.tx88-menu > li > a::after,
html body #tx88-primary-menu > li > a::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 21px !important;
  height: 4px !important;
  border-radius: 99px !important;
  background: var(--tx88-header-final-blue) !important;
  opacity: 0 !important;
  transform: scaleX(.28) !important;
  transition: opacity .22s ease, transform .22s ease !important;
}

html body ul.tx88-menu > li > a:hover,
html body #tx88-primary-menu > li > a:hover,
html body ul.tx88-menu > li.current-menu-item > a,
html body ul.tx88-menu > li.current_page_item > a,
html body #tx88-primary-menu > li.current-menu-item > a,
html body #tx88-primary-menu > li.current_page_item > a {
  color: var(--tx88-header-final-text) !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-shadow: none !important;
  opacity: 1 !important;
}

html body ul.tx88-menu > li > a:hover::after,
html body #tx88-primary-menu > li > a:hover::after,
html body ul.tx88-menu > li.current-menu-item > a::after,
html body ul.tx88-menu > li.current_page_item > a::after,
html body #tx88-primary-menu > li.current-menu-item > a::after,
html body #tx88-primary-menu > li.current_page_item > a::after {
  opacity: 1 !important;
  transform: scaleX(1) !important;
}

html body .tx88-menu .sub-menu,
html body #tx88-primary-menu .sub-menu {
  display: none !important;
}

html body .tx88-actions {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 16px !important;
  width: auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  visibility: visible !important;
  opacity: 1 !important;
}

html body .tx88-actions .tx88-pill {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 132px !important;
  min-height: 54px !important;
  padding: 0 24px !important;
  border-radius: 999px !important;
  background: var(--tx88-header-final-gradient) !important;
  border: 3px solid rgba(0, 198, 255, .9) !important;
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  text-shadow: 0 2px 4px rgba(0, 30, 90, .5) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.32),
    0 0 0 3px rgba(0, 114, 255, .16),
    0 8px 18px rgba(0, 114, 255, .24) !important;
  overflow: hidden !important;
  animation: none !important;
}

html body .tx88-actions .tx88-pill:hover {
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.45),
    0 0 0 3px rgba(0, 198, 255, .32),
    0 10px 24px rgba(0, 114, 255, .34) !important;
}


html body.tx88-header-fixed .tx88-header {
  position: fixed !important;
  top: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: min(100vw, var(--tx88-wrap, 1280px)) !important;
  z-index: 99999 !important;
  background: rgba(255, 255, 255, .96) !important;
  box-shadow: 0 10px 28px rgba(0, 61, 153, .18) !important;
  backdrop-filter: blur(10px) !important;
}

html body.admin-bar.tx88-header-fixed .tx88-header {
  top: 32px !important;
}

html body.tx88-header-fixed .tx88-main {
  padding-top: calc(var(--tx88-header-live-h, 92px) + 22px) !important;
}

html body.tx88-header-fixed .tx88-header-inner {
  min-height: 78px !important;
}

html body.tx88-header-fixed ul.tx88-menu > li > a,
html body.tx88-header-fixed #tx88-primary-menu > li > a {
  height: 78px !important;
  min-height: 78px !important;
  max-height: 78px !important;
}

html body.tx88-header-fixed .tx88-logo img {
  max-height: 58px !important;
}

html body.tx88-header-fixed .tx88-actions .tx88-pill {
  min-height: 48px !important;
}

@media (max-width: 1180px) {
  html body .tx88-header-inner {
    grid-template-columns: 190px minmax(0, 1fr) auto !important;
    gap: 18px !important;
    padding: 0 20px !important;
  }

  html body .tx88-logo img {
    max-width: 165px !important;
  }

  html body ul.tx88-menu,
  html body #tx88-primary-menu {
    gap: 18px !important;
  }

  html body ul.tx88-menu > li > a,
  html body #tx88-primary-menu > li > a {
    font-size: 14px !important;
  }

  html body .tx88-actions .tx88-pill {
    min-width: 118px !important;
    min-height: 48px !important;
    padding: 0 18px !important;
    font-size: 14px !important;
  }
}

@media (max-width: 980px) {
  html body.admin-bar .tx88-header,
  html body.admin-bar.tx88-header-fixed .tx88-header {
    top: 0px !important;
  }

  html body .tx88-header,
  html body.tx88-header-fixed .tx88-header {
    position: sticky !important;
    top: 0 !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    background: #ffffff !important;
  }

  html body.tx88-header-fixed .tx88-main {
    padding-top: 0 !important;
  }

  html body .tx88-header-inner {
    min-height: 0 !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    padding: 12px 14px !important;
    justify-items: center !important;
  }

  html body .tx88-logo img {
    max-width: 180px !important;
    max-height: 58px !important;
  }

  html body .tx88-actions {
    order: 2 !important;
    width: 100% !important;
    justify-content: center !important;
    gap: 10px !important;
  }

  html body .tx88-actions .tx88-pill {
    min-width: 126px !important;
    min-height: 42px !important;
    padding: 0 18px !important;
    font-size: 14px !important;
  }

  html body .tx88-nav-wrap {
    order: 3 !important;
    width: 100% !important;
    padding: 10px 12px !important;
    background: var(--tx88-header-final-gradient) !important;
    border-radius: 0 !important;
    overflow: visible !important;
  }

  html body .tx88-nav-inner {
    display: block !important;
  }

  html body .tx88-menu-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 150px !important;
    min-height: 50px !important;
    padding: 0 22px !important;
    border: 2px solid rgba(255,255,255,.64) !important;
    border-radius: 10px !important;
    background: rgba(255,255,255,.18) !important;
    color: #ffffff !important;
    font-size: 22px !important;
    font-weight: 900 !important;
    cursor: pointer !important;
  }

  html body ul.tx88-menu,
  html body #tx88-primary-menu {
    display: none !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 12px 0 0 !important;
    padding: 0 !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    background: rgba(0, 61, 153, .96) !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    position: static !important;
  }

  html body ul.tx88-menu.is-open,
  html body #tx88-primary-menu.is-open {
    display: flex !important;
  }

  html body ul.tx88-menu > li,
  html body #tx88-primary-menu > li {
    display: block !important;
    width: 100% !important;
    height: auto !important;
  }

  html body ul.tx88-menu > li > a,
  html body #tx88-primary-menu > li > a,
  html body ul.tx88-menu > li.current-menu-item > a,
  html body ul.tx88-menu > li.current_page_item > a,
  html body #tx88-primary-menu > li.current-menu-item > a,
  html body #tx88-primary-menu > li.current_page_item > a {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    justify-content: flex-start !important;
    padding: 14px 16px !important;
    color: #ffffff !important;
    background: transparent !important;
    border-top: 1px solid rgba(255,255,255,.15) !important;
    font-size: 16px !important;
  }

  html body ul.tx88-menu > li > a::after,
  html body #tx88-primary-menu > li > a::after {
    display: none !important;
  }
}

@media (max-width: 520px) {
  html body .tx88-actions .tx88-pill {
    min-width: 118px !important;
    min-height: 40px !important;
    padding: 0 14px !important;
    font-size: 13px !important;
  }
}

/* =========================================================
   TX88 FINAL COLOR OVERRIDE
   Primary color: #db135c
   Content area: #ffffff
   ========================================================= */
:root {
  --tx88-primary: #db135c !important;
  --tx88-primary-dark: #9f0038 !important;
  --tx88-primary-light: #fff0f6 !important;
  --tx88-accent: #db135c !important;
  --tx88-border: rgba(219, 19, 92, .32) !important;
  --tx88-card: #ffffff !important;
  --tx88-white: #ffffff !important;
  --tx88-brand-gradient: linear-gradient(135deg, #8d0030, #db135c, #ff5c9b) !important;
}

body {
  background:
    radial-gradient(circle at 50% 0%, rgba(219, 19, 92, .25) 0%, transparent 30%),
    linear-gradient(180deg, #fff1f7 0%, #ffd4e5 45%, #db135c 100%) !important;
}

body .tx88-site,
body .tx88-main,
body .tx88-content,
body .tx88-article,
body .tx88-card,
body .tx88-post-card,
body .tx88-home-article-panel,
body .tx88-home-article-scrollbox,
body .tx88-home-article-body,
body .tx88-card-body,
body .entry-content {
  background: #ffffff !important;
}

body .tx88-site {
  box-shadow: 0 0 36px rgba(219, 19, 92, .25) !important;
}

body .tx88-header,
body .tx88-nav-wrap,
body .tx88-menu.is-open,
body #tx88-primary-menu.is-open,
body .tx88-store-btn,
body .tx88-404-code,
body .tx88-404-btn-outline,
body .tx88-pagination .current,
body .back-top-btn {
  background: var(--tx88-brand-gradient) !important;
}

body .tx88-topbar,
html body .tx88-header,
html body .tx88-header-inner {
  background: #ffffff !important;
}

html body.tx88-header-fixed .tx88-header {
  background: rgba(255, 255, 255, .96) !important;
  box-shadow: 0 10px 28px rgba(219, 19, 92, .18) !important;
}

body .tx88-menu a,
body #tx88-primary-menu a {
  color: #6b6670 !important;
}

body .tx88-menu a:hover,
body .tx88-menu .current-menu-item > a,
body .tx88-menu .current_page_item > a,
body #tx88-primary-menu a:hover,
body #tx88-primary-menu .current-menu-item > a,
body #tx88-primary-menu .current_page_item > a {
  color: #1d1d24 !important;
  background: transparent !important;
}

body .tx88-menu a::after,
body #tx88-primary-menu a::after {
  background: #db135c !important;
}

body .tx88-pill,
body .tx88-actions .tx88-pill,
body .tx88-store-btn,
body .tx88-404-btn {
  background: var(--tx88-brand-gradient) !important;
  border-color: rgba(255,255,255,.76) !important;
  color: #ffffff !important;
  box-shadow: 0 0 14px rgba(219, 19, 92, .42), 0 4px 0 rgba(130, 0, 45, .45) !important;
}

body .tx88-pill:hover,
body .tx88-store-btn:hover,
body .tx88-404-btn:hover {
  color: #ffffff !important;
  filter: brightness(1.06) !important;
}

body .tx88-headline-box,
body .tx88-home-article-title,
body .tx88-card-title,
body .tx88-article h1,
body .tx88-article .entry-content h2,
body .tx88-article .entry-content h3,
body .tx88-home-article-body h1,
body .tx88-home-article-body h2,
body .tx88-home-article-body h3,
body .tx88-home-article-body h4,
body h1,
body h2,
body h3,
body h4,
body h5 {
  color: #9f0038 !important;
}

body a,
body .entry-content a,
body .tx88-home-article-body a,
body .tx88-footer a,
body .footer-guide-menu a,
body .article-toc-link {
  color: #db135c !important;
}

body a:hover,
body .entry-content a:hover,
body .tx88-footer a:hover,
body .footer-guide-menu a:hover {
  color: #9f0038 !important;
}

body .tx88-article,
body .tx88-home-article-panel,
body .tx88-card,
body .tx88-post-card,
body .tx88-recent-item {
  border-color: rgba(219, 19, 92, .24) !important;
  box-shadow: 0 6px 18px rgba(219, 19, 92, .10) !important;
}

body .tx88-icon-row,
body .game-card-grid {
  background: #ffffff !important;
}

body .game-card,
body .tx88-icon-card {
  border-color: #db135c !important;
  background: #ffffff !important;
  box-shadow: 0 10px 22px rgba(219, 19, 92, .18) !important;
}

body .game-card-title,
body .tx88-feature-game-title {
  color: #ffffff !important;
  background: var(--tx88-brand-gradient) !important;
  border-color: rgba(255,255,255,.75) !important;
  text-shadow: 0 1px 3px rgba(0,0,0,.45) !important;
}

body .tx88-footer,
body .tx88-footer-new {
  background: linear-gradient(180deg, #ffffff 0%, #fff0f6 100%) !important;
  border-top-color: rgba(219, 19, 92, .35) !important;
}

body .tx88-footer h3,
body .tx88-footer-new h3 {
  color: #9f0038 !important;
}

body .tx88-copyright {
  background: #9f0038 !important;
  color: #ffffff !important;
}

body table thead th,
body .entry-content table thead th,
body .tx88-article table thead th,
body .tx88-home-article-body table thead th {
  background: var(--tx88-brand-gradient) !important;
  color: #ffffff !important;
}

body table,
body .entry-content table,
body .tx88-article table,
body .tx88-home-article-body table {
  background: #ffffff !important;
  border-color: rgba(219, 19, 92, .24) !important;
}

body table td,
body table th,
body .entry-content table td,
body .entry-content table th,
body .tx88-article table td,
body .tx88-article table th,
body .tx88-home-article-body table td,
body .tx88-home-article-body table th {
  border-color: rgba(219, 19, 92, .18) !important;
}

@media (max-width: 980px) {
  html body .tx88-nav-wrap {
    background: var(--tx88-brand-gradient) !important;
  }

  html body ul.tx88-menu,
  html body #tx88-primary-menu {
    background: #9f0038 !important;
  }

  html body ul.tx88-menu > li > a,
  html body #tx88-primary-menu > li > a {
    color: #ffffff !important;
  }
}


/* ===== TX88 header/footer UI refresh ===== */
.tx88-site {
  max-width: 100%;
  background: #fff7fb;
  box-shadow: none;
}

.tx88-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

.admin-bar .tx88-header {
  top: 32px;
}

.tx88-header-top {
  background: #121013;
  padding: 14px 0;
}

.tx88-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.tx88-logo img {
  max-height: 118px;
  width: auto;
}

.tx88-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.tx88-pill {
  min-width: 168px;
  min-height: 58px;
  padding: 12px 26px;
  border-radius: 0;
  border: none;
  background: #d60000;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .3px;
  box-shadow: none;
}

.tx88-pill:hover {
  color: #fff;
  transform: translateY(-1px);
  opacity: .92;
}

.tx88-nav-wrap {
  position: relative;
  top: auto;
  z-index: 1;
  background: #e40b63;
  border: none;
}

.tx88-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 116px;
  padding: 0 24px;
  justify-content: center;
}

.tx88-menu {
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 30px;
}

.tx88-menu a {
  position: relative;
  padding: 14px 6px 18px;
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
}

.tx88-menu a:hover,
.tx88-menu .current-menu-item > a,
.tx88-menu .current-page-ancestor > a {
  color: #fff;
  background: transparent;
}

.tx88-menu .current-menu-item > a::after,
.tx88-menu .current-page-ancestor > a::after,
.tx88-menu a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  width: 76px;
  height: 5px;
  margin: 0 auto;
  background: rgba(255,255,255,.95);
}

.tx88-main {
  padding-top: 28px;
}

.tx88-footer {
  margin-top: 48px;
  background: #000;
  color: #fff;
}

.tx88-footer-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 46px 42px 24px;
}

.tx88-footer-columns {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.tx88-footer h3 {
  margin: 0 0 26px;
  color: #fff;
  font-size: 26px;
  font-weight: 500;
  text-transform: uppercase;
}

.tx88-footer-brand img {
  max-width: 330px;
  width: 100%;
  max-height: none;
}

.tx88-footer-brand p {
  margin: 26px 0 0;
  color: #fff;
  font-size: 26px;
  line-height: 1.75;
  letter-spacing: .2px;
}

.tx88-footer-brand p strong,
.tx88-footer-brand p b {
  color: #d9d116;
}

.tx88-footer-menu,
.tx88-footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tx88-footer-menu li {
  margin-bottom: 22px;
}

.tx88-footer-menu a {
  position: relative;
  display: inline-block;
  padding-left: 22px;
  color: #d8d019;
  font-size: 24px;
  line-height: 1.5;
}

.tx88-footer-menu a::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
}

.tx88-footer-menu a:hover,
.tx88-footer-contact a:hover {
  color: #fff06a;
}

.tx88-footer-sitemap-wrap {
  margin-top: 34px;
}

.tx88-footer-sitemap-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 340px;
  min-height: 82px;
  padding: 14px 30px;
  border: 3px solid #d6b304;
  color: #f4d40f;
  background: transparent;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
}

.tx88-footer-sitemap-btn::before {
  content: "›";
  margin-right: 18px;
  font-size: 40px;
  line-height: 1;
}

.tx88-footer-contact-list li,
.tx88-footer-keywords-block {
  margin-bottom: 24px;
  color: #fff;
  font-size: 24px;
  line-height: 1.55;
}

.tx88-footer-contact-list strong {
  color: #d8d019;
}

.tx88-footer-contact-list a,
.tx88-footer-keywords-block strong {
  color: #d8d019;
}

.tx88-footer-keywords-text {
  margin: 8px 0 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.6;
  word-break: break-word;
}

.tx88-footer-partners {
  margin-top: 34px;
}

.tx88-footer-partner-row {
  text-align: center;
}

.tx88-footer-partner-row + .tx88-footer-partner-row {
  margin-top: 16px;
  padding-top: 22px;
  border-top: 3px solid rgba(255,255,255,.7);
}

.tx88-footer-partner-row img {
  width: 100%;
  max-width: 1280px;
  display: block;
  margin: 0 auto;
}

.tx88-copyright {
  margin-top: 30px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.75);
  text-align: center;
  font-size: 22px;
}

@media (max-width: 1200px) {
  .tx88-header-inner,
  .tx88-nav-inner,
  .tx88-footer-main {
    padding-left: 20px;
    padding-right: 20px;
  }

  .tx88-menu a {
    font-size: 22px;
  }

  .tx88-footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tx88-footer-brand p,
  .tx88-footer-menu a,
  .tx88-footer-contact-list li,
  .tx88-footer-keywords-text {
    font-size: 22px;
  }
}

@media (max-width: 900px) {
  .tx88-header { position: static; }
  .admin-bar .tx88-header { top: auto; }

  .tx88-header-inner {
    flex-direction: column;
    align-items: center;
  }

  .tx88-logo img {
    max-height: 96px;
  }

  .tx88-actions {
    width: 100%;
    justify-content: center;
    gap: 14px;
  }

  .tx88-pill {
    min-width: 150px;
    min-height: 48px;
    font-size: 18px;
  }

  .tx88-nav-inner {
    min-height: 76px;
    justify-content: flex-start;
  }

  .tx88-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border: 2px solid rgba(255,255,255,.55);
    border-radius: 10px;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
  }

  .tx88-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-top: 16px;
    padding: 12px;
    background: rgba(0,0,0,.18);
    border-radius: 12px;
  }

  .tx88-menu.is-open {
    display: flex;
  }

  .tx88-menu li,
  .tx88-menu a {
    width: 100%;
  }

  .tx88-menu a {
    padding: 12px 10px;
    font-size: 18px;
  }

  .tx88-menu .current-menu-item > a::after,
  .tx88-menu .current-page-ancestor > a::after,
  .tx88-menu a:hover::after {
    display: none;
  }

  .tx88-footer-main {
    padding: 34px 18px 22px;
  }

  .tx88-footer-columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .tx88-footer h3 {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .tx88-footer-brand p,
  .tx88-footer-menu a,
  .tx88-footer-contact-list li,
  .tx88-footer-keywords-text,
  .tx88-copyright {
    font-size: 18px;
  }

  .tx88-footer-menu li,
  .tx88-footer-contact-list li,
  .tx88-footer-keywords-block {
    margin-bottom: 16px;
  }

  .tx88-footer-sitemap-btn {
    min-width: 0;
    width: 100%;
    min-height: 60px;
    font-size: 22px;
  }
}

/* ===== TX88 definitive top + footer UI override ===== */
html body .tx88-site {
  max-width: 100% !important;
  background: #fff7fb !important;
  box-shadow: none !important;
  overflow: visible !important;
}

html body .tx88-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 99999 !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  background: #121013 !important;
  border: 0 !important;
  box-shadow: 0 6px 18px rgba(0,0,0,.32) !important;
  overflow: visible !important;
  transform: none !important;
}

html body.admin-bar .tx88-header { top: 32px !important; }

html body .tx88-header-top {
  width: 100% !important;
  background: #121013 !important;
  padding: 12px 0 10px !important;
  border: 0 !important;
}

html body .tx88-header-inner {
  width: 100% !important;
  max-width: 1280px !important;
  min-height: 132px !important;
  height: auto !important;
  margin: 0 auto !important;
  padding: 0 46px !important;
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  background: #121013 !important;
  border: 0 !important;
  box-shadow: none !important;
}

html body .tx88-logo,
html body .tx88-logo:hover {
  order: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

html body .tx88-logo img {
  display: block !important;
  width: auto !important;
  max-width: 260px !important;
  max-height: 124px !important;
  height: auto !important;
  object-fit: contain !important;
  opacity: 1 !important;
  visibility: visible !important;
}

html body .tx88-actions {
  order: 2 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 28px !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

html body .tx88-actions .tx88-pill,
html body .tx88-pill {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 170px !important;
  min-height: 58px !important;
  height: 58px !important;
  padding: 0 28px !important;
  margin: 0 !important;
  border-radius: 0 !important;
  border: 0 !important;
  background: #d60000 !important;
  color: #ffffff !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  text-shadow: none !important;
  box-shadow: inset 0 -8px 0 rgba(0,0,0,.08) !important;
  animation: none !important;
  overflow: hidden !important;
}

html body .tx88-actions .tx88-pill::before,
html body .tx88-pill::before {
  display: none !important;
  content: none !important;
}

html body .tx88-actions .tx88-pill:hover,
html body .tx88-pill:hover {
  color: #ffffff !important;
  background: #e30000 !important;
  transform: translateY(-1px) !important;
}

html body .tx88-nav-wrap {
  order: 3 !important;
  flex: 0 0 100% !important;
  width: 100vw !important;
  max-width: none !important;
  min-height: 96px !important;
  height: auto !important;
  margin: 0 calc(50% - 50vw) !important;
  padding: 0 !important;
  display: block !important;
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  background: #e30b61 !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

html body .tx88-nav-inner {
  width: 100% !important;
  max-width: 1280px !important;
  min-height: 96px !important;
  height: auto !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  overflow: visible !important;
}

html body .tx88-menu-toggle { display: none !important; }

html body ul.tx88-menu,
html body #tx88-primary-menu {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px 34px !important;
  width: 100% !important;
  min-height: 96px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  background: transparent !important;
  border: 0 !important;
  overflow: visible !important;
}

html body ul.tx88-menu > li,
html body #tx88-primary-menu > li {
  display: block !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
  white-space: nowrap !important;
}

html body ul.tx88-menu > li > a,
html body #tx88-primary-menu > li > a,
html body ul.tx88-menu > li.current-menu-item > a,
html body ul.tx88-menu > li.current_page_item > a,
html body #tx88-primary-menu > li.current-menu-item > a,
html body #tx88-primary-menu > li.current_page_item > a {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  height: 96px !important;
  min-height: 96px !important;
  max-height: 96px !important;
  margin: 0 !important;
  padding: 0 2px !important;
  color: #ffffff !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-shadow: none !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  font-size: 27px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  opacity: 1 !important;
}

html body ul.tx88-menu > li > a::after,
html body #tx88-primary-menu > li > a::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 23px !important;
  width: 78px !important;
  height: 5px !important;
  margin: 0 auto !important;
  background: #ffffff !important;
  opacity: 0 !important;
  transform: scaleX(.3) !important;
}

html body ul.tx88-menu > li > a:hover,
html body #tx88-primary-menu > li > a:hover,
html body ul.tx88-menu > li.current-menu-item > a,
html body ul.tx88-menu > li.current_page_item > a,
html body #tx88-primary-menu > li.current-menu-item > a,
html body #tx88-primary-menu > li.current_page_item > a {
  color: #ffffff !important;
  background: transparent !important;
  opacity: 1 !important;
}

html body ul.tx88-menu > li > a:hover::after,
html body #tx88-primary-menu > li > a:hover::after,
html body ul.tx88-menu > li.current-menu-item > a::after,
html body ul.tx88-menu > li.current_page_item > a::after,
html body #tx88-primary-menu > li.current-menu-item > a::after,
html body #tx88-primary-menu > li.current_page_item > a::after {
  opacity: 1 !important;
  transform: scaleX(1) !important;
}

html body .tx88-menu .sub-menu,
html body #tx88-primary-menu .sub-menu { display: none !important; }

html body .tx88-footer,
html body .tx88-footer-new,
html body .tx88-footer-black {
  margin-top: 48px !important;
  padding: 0 !important;
  background: #000000 !important;
  color: #ffffff !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

html body .tx88-footer-main {
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 54px 42px 28px !important;
  background: #000000 !important;
}

html body .tx88-footer-columns {
  display: grid !important;
  grid-template-columns: 1.15fr 1fr 1fr 1.1fr !important;
  gap: 44px !important;
  align-items: start !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  padding: 0 !important;
  border: 0 !important;
}

html body .tx88-footer h3,
html body .tx88-footer-new h3 {
  margin: 0 0 28px !important;
  color: #ffffff !important;
  font-size: 26px !important;
  font-weight: 500 !important;
  line-height: 1.25 !important;
  text-transform: uppercase !important;
}

html body .tx88-footer-brand img,
html body .tx88-footer-logo img {
  display: block !important;
  width: 100% !important;
  max-width: 330px !important;
  max-height: none !important;
  height: auto !important;
  object-fit: contain !important;
}

html body .tx88-footer-brand p {
  margin: 26px 0 0 !important;
  color: #ffffff !important;
  font-size: 26px !important;
  line-height: 1.75 !important;
}

html body .tx88-footer-brand p strong,
html body .tx88-footer-brand p b,
html body .tx88-footer-contact-list strong { color: #d8d019 !important; }

html body .tx88-footer-menu,
html body .tx88-footer-contact-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

html body .tx88-footer-menu li { margin: 0 0 22px !important; }

html body .tx88-footer-menu a {
  position: relative !important;
  display: inline-block !important;
  padding-left: 22px !important;
  color: #d8d019 !important;
  font-size: 24px !important;
  line-height: 1.5 !important;
  text-decoration: none !important;
}

html body .tx88-footer-menu a::before {
  content: "›" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  color: #ffffff !important;
}

html body .tx88-footer-menu a:hover,
html body .tx88-footer-contact a:hover { color: #fff06a !important; }

html body .tx88-footer-sitemap-wrap { margin-top: 34px !important; }

html body .tx88-footer-sitemap-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 340px !important;
  min-height: 82px !important;
  padding: 14px 30px !important;
  border: 3px solid #d6b304 !important;
  color: #f4d40f !important;
  background: transparent !important;
  font-size: 28px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}

html body .tx88-footer-sitemap-btn::before {
  content: "›" !important;
  margin-right: 18px !important;
  font-size: 40px !important;
  line-height: 1 !important;
}

html body .tx88-footer-contact-list li,
html body .tx88-footer-keywords-block {
  margin: 0 0 24px !important;
  color: #ffffff !important;
  font-size: 24px !important;
  line-height: 1.55 !important;
}

html body .tx88-footer-contact-list a,
html body .tx88-footer-keywords-block strong { color: #d8d019 !important; }

html body .tx88-footer-keywords-text {
  margin: 8px 0 0 !important;
  color: #ffffff !important;
  font-size: 24px !important;
  line-height: 1.6 !important;
  word-break: break-word !important;
}

html body .tx88-footer-partners { margin-top: 38px !important; }
html body .tx88-footer-partner-row { text-align: center !important; }

html body .tx88-footer-partner-row + .tx88-footer-partner-row {
  margin-top: 16px !important;
  padding-top: 22px !important;
  border-top: 3px solid rgba(255,255,255,.7) !important;
}

html body .tx88-footer-partner-row img {
  width: 100% !important;
  max-width: 1280px !important;
  display: block !important;
  margin: 0 auto !important;
}

html body .tx88-copyright {
  margin: 34px 0 0 !important;
  padding: 20px 0 0 !important;
  border-top: 1px solid rgba(255,255,255,.15) !important;
  background: transparent !important;
  color: rgba(255,255,255,.72) !important;
  text-align: center !important;
  font-size: 22px !important;
}

@media (max-width: 980px) {
  html body .tx88-header,
  html body.admin-bar .tx88-header {
    position: static !important;
    top: auto !important;
  }

  html body .tx88-header-inner {
    min-height: 0 !important;
    padding: 16px 18px !important;
    flex-direction: column !important;
    justify-content: center !important;
  }

  html body .tx88-logo img {
    max-width: 240px !important;
    max-height: 98px !important;
  }

  html body .tx88-actions {
    justify-content: center !important;
    gap: 14px !important;
    width: 100% !important;
  }

  html body .tx88-actions .tx88-pill,
  html body .tx88-pill {
    min-width: 142px !important;
    min-height: 48px !important;
    height: 48px !important;
    padding: 0 18px !important;
    font-size: 17px !important;
  }

  html body .tx88-nav-inner {
    min-height: 74px !important;
    justify-content: flex-start !important;
  }

  html body .tx88-menu-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 48px !important;
    padding: 0 20px !important;
    border: 2px solid rgba(255,255,255,.62) !important;
    border-radius: 10px !important;
    background: rgba(255,255,255,.14) !important;
    color: #ffffff !important;
    font-size: 22px !important;
    font-weight: 800 !important;
  }

  html body ul.tx88-menu,
  html body #tx88-primary-menu {
    display: none !important;
    width: 100% !important;
    min-height: 0 !important;
    margin-top: 14px !important;
    padding: 10px !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    background: rgba(0,0,0,.18) !important;
    border-radius: 12px !important;
  }

  html body ul.tx88-menu.is-open,
  html body #tx88-primary-menu.is-open { display: flex !important; }

  html body ul.tx88-menu > li,
  html body #tx88-primary-menu > li,
  html body ul.tx88-menu > li > a,
  html body #tx88-primary-menu > li > a {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
  }

  html body ul.tx88-menu > li > a,
  html body #tx88-primary-menu > li > a {
    justify-content: flex-start !important;
    padding: 14px 12px !important;
    font-size: 18px !important;
  }

  html body ul.tx88-menu > li > a::after,
  html body #tx88-primary-menu > li > a::after { display: none !important; }

  html body .tx88-footer-main { padding: 34px 18px 22px !important; }
  html body .tx88-footer-columns { grid-template-columns: 1fr !important; gap: 30px !important; }
  html body .tx88-footer h3 { font-size: 22px !important; margin-bottom: 18px !important; }

  html body .tx88-footer-brand p,
  html body .tx88-footer-menu a,
  html body .tx88-footer-contact-list li,
  html body .tx88-footer-keywords-text,
  html body .tx88-copyright { font-size: 18px !important; }

  html body .tx88-footer-sitemap-btn {
    min-width: 0 !important;
    width: 100% !important;
    min-height: 60px !important;
    font-size: 22px !important;
  }
}

/* ===== TX88 compact typography + content spacing fix ===== */

/* Content area: restore left/right spacing and centered readable width */
html body .tx88-main {
  padding: 28px 28px 0 !important;
  background: #ffffff !important;
}

html body .tx88-layout,
html body .tx88-content,
html body.home .tx88-layout,
html body.front-page .tx88-layout {
  max-width: 1280px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
}

html body .tx88-content,
html body .tx88-article,
html body .tx88-home-article-panel,
html body .entry-content {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

html body .tx88-article,
html body .tx88-home-article-panel {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Header spacing and font size compact */
html body .tx88-header-inner {
  max-width: 1280px !important;
  min-height: 104px !important;
  padding: 0 34px !important;
}

html body .tx88-header-top {
  padding: 10px 0 !important;
}

html body .tx88-logo img {
  max-width: 220px !important;
  max-height: 96px !important;
}

html body .tx88-actions {
  gap: 20px !important;
}

html body .tx88-actions .tx88-pill,
html body .tx88-pill {
  min-width: 132px !important;
  min-height: 46px !important;
  height: 46px !important;
  padding: 0 20px !important;
  font-size: 16px !important;
  letter-spacing: 0 !important;
}

/* Pink menu bar: smaller and cleaner */
html body .tx88-nav-wrap {
  min-height: 72px !important;
}

html body .tx88-nav-inner {
  min-height: 72px !important;
}

html body ul.tx88-menu,
html body #tx88-primary-menu {
  min-height: 72px !important;
  gap: 8px 26px !important;
}

html body ul.tx88-menu > li > a,
html body #tx88-primary-menu > li > a,
html body ul.tx88-menu > li.current-menu-item > a,
html body ul.tx88-menu > li.current_page_item > a,
html body #tx88-primary-menu > li.current-menu-item > a,
html body #tx88-primary-menu > li.current_page_item > a {
  height: 72px !important;
  min-height: 72px !important;
  max-height: 72px !important;
  font-size: 20px !important;
  padding: 0 2px !important;
}

html body ul.tx88-menu > li > a::after,
html body #tx88-primary-menu > li > a::after {
  bottom: 13px !important;
  width: 62px !important;
  height: 4px !important;
}

/* Footer typography compact */
html body .tx88-footer-main {
  max-width: 1280px !important;
  padding: 42px 34px 24px !important;
}

html body .tx88-footer-columns {
  gap: 34px !important;
}

html body .tx88-footer h3,
html body .tx88-footer-new h3 {
  font-size: 20px !important;
  margin-bottom: 20px !important;
}

html body .tx88-footer-brand img,
html body .tx88-footer-logo img {
  max-width: 260px !important;
}

html body .tx88-footer-brand p {
  font-size: 18px !important;
  line-height: 1.65 !important;
  margin-top: 18px !important;
}

html body .tx88-footer-menu li {
  margin-bottom: 14px !important;
}

html body .tx88-footer-menu a {
  font-size: 18px !important;
  line-height: 1.45 !important;
  padding-left: 18px !important;
}

html body .tx88-footer-contact-list li,
html body .tx88-footer-keywords-block {
  font-size: 18px !important;
  line-height: 1.5 !important;
  margin-bottom: 16px !important;
}

html body .tx88-footer-keywords-text {
  font-size: 18px !important;
  line-height: 1.5 !important;
}

html body .tx88-footer-sitemap-wrap {
  margin-top: 24px !important;
}

html body .tx88-footer-sitemap-btn {
  min-width: 260px !important;
  min-height: 58px !important;
  padding: 10px 22px !important;
  font-size: 20px !important;
  border-width: 2px !important;
}

html body .tx88-copyright {
  font-size: 16px !important;
  margin-top: 26px !important;
  padding-top: 16px !important;
}

/* Article text scale */
html body .tx88-article {
  padding: 22px 24px !important;
}

html body .tx88-article h1 {
  font-size: 26px !important;
}

html body .tx88-article .entry-content,
html body .tx88-home-article-body {
  font-size: 16px !important;
  line-height: 1.75 !important;
}

/* Desktop wide screens */
@media (min-width: 1281px) {
  html body .tx88-main {
    padding-left: 36px !important;
    padding-right: 36px !important;
  }
}

/* Tablet */
@media (max-width: 1200px) {
  html body .tx88-main {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }

  html body .tx88-header-inner {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  html body ul.tx88-menu,
  html body #tx88-primary-menu {
    gap: 8px 20px !important;
  }

  html body ul.tx88-menu > li > a,
  html body #tx88-primary-menu > li > a {
    font-size: 18px !important;
  }

  html body .tx88-footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Mobile */
@media (max-width: 980px) {
  html body .tx88-main {
    padding: 18px 14px 0 !important;
  }

  html body .tx88-header-inner {
    min-height: 0 !important;
    padding: 14px 16px !important;
  }

  html body .tx88-logo img {
    max-width: 190px !important;
    max-height: 80px !important;
  }

  html body .tx88-actions .tx88-pill,
  html body .tx88-pill {
    min-width: 122px !important;
    min-height: 40px !important;
    height: 40px !important;
    padding: 0 14px !important;
    font-size: 14px !important;
  }

  html body .tx88-nav-wrap,
  html body .tx88-nav-inner {
    min-height: 64px !important;
  }

  html body .tx88-menu-toggle {
    min-height: 42px !important;
    padding: 0 18px !important;
    font-size: 18px !important;
  }

  html body ul.tx88-menu > li > a,
  html body #tx88-primary-menu > li > a {
    font-size: 16px !important;
  }

  html body .tx88-article {
    padding: 18px 14px !important;
  }

  html body .tx88-footer-main {
    padding: 30px 16px 22px !important;
  }

  html body .tx88-footer-brand p,
  html body .tx88-footer-menu a,
  html body .tx88-footer-contact-list li,
  html body .tx88-footer-keywords-text,
  html body .tx88-copyright {
    font-size: 15px !important;
  }
}

/* ===== TX88 final compact header + no scroll article fix ===== */

/* Header should stay full-width when scrolling, not shrink to center */
html body .tx88-header,
html body.admin-bar .tx88-header {
  position: sticky !important;
  top: 0 !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  background: #121013 !important;
  z-index: 99999 !important;
  box-shadow: 0 6px 16px rgba(0,0,0,.26) !important;
}

html body.admin-bar .tx88-header {
  top: 32px !important;
}

/* Remove old fixed/floating states that squeeze the header */
html body.header-is-fixed .tx88-site,
html body.tx88-header-fixed .tx88-site,
html body._tx88-header-fixed .tx88-site {
  padding-top: 0 !important;
}

html body.header-is-fixed .tx88-header,
html body.tx88-header-fixed .tx88-header,
html body._tx88-header-fixed .tx88-header,
html body.header-is-fixed .tx88-topbar,
html body.header-is-fixed .tx88-nav-wrap {
  position: sticky !important;
  top: 0 !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* Top area more compact */
html body .tx88-header-top {
  width: 100% !important;
  background: #121013 !important;
  padding: 8px 0 !important;
}

html body .tx88-header-inner {
  width: 100% !important;
  max-width: 1280px !important;
  min-height: 92px !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 auto !important;
  padding: 0 34px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
  background: #121013 !important;
}

html body .tx88-logo img {
  max-width: 205px !important;
  max-height: 86px !important;
}

html body .tx88-actions {
  gap: 18px !important;
}

html body .tx88-actions .tx88-pill,
html body .tx88-pill {
  min-width: 122px !important;
  min-height: 42px !important;
  height: 42px !important;
  padding: 0 18px !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

/* Pink nav smaller */
html body .tx88-nav-wrap {
  width: 100vw !important;
  max-width: none !important;
  min-height: 60px !important;
  height: auto !important;
  margin: 0 calc(50% - 50vw) !important;
  padding: 0 !important;
  background: #e30b61 !important;
  position: relative !important;
  overflow: visible !important;
}

html body .tx88-nav-inner {
  max-width: 1280px !important;
  min-height: 60px !important;
  padding: 0 24px !important;
}

html body ul.tx88-menu,
html body #tx88-primary-menu {
  min-height: 60px !important;
  gap: 6px 24px !important;
}

html body ul.tx88-menu > li > a,
html body #tx88-primary-menu > li > a,
html body ul.tx88-menu > li.current-menu-item > a,
html body ul.tx88-menu > li.current_page_item > a,
html body #tx88-primary-menu > li.current-menu-item > a,
html body #tx88-primary-menu > li.current_page_item > a {
  height: 60px !important;
  min-height: 60px !important;
  max-height: 60px !important;
  padding: 0 1px !important;
  font-size: 17px !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  color: #ffffff !important;
}

html body ul.tx88-menu > li > a::after,
html body #tx88-primary-menu > li > a::after {
  bottom: 8px !important;
  width: 48px !important;
  height: 3px !important;
}

/* Main content spacing */
html body .tx88-main {
  padding: 26px 32px 0 !important;
  background: #ffffff !important;
  overflow: visible !important;
}

html body .tx88-layout,
html body .tx88-content,
html body.home .tx88-layout,
html body.front-page .tx88-layout {
  width: 100% !important;
  max-width: 1280px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Homepage article: no internal scroll, show full content */
html body .tx88-home-article-panel {
  overflow: visible !important;
}

html body .tx88-home-article-scrollbox,
html body .tx88-home-article-body {
  max-height: none !important;
  height: auto !important;
  overflow: visible !important;
  overflow-y: visible !important;
  padding-right: 14px !important;
  scrollbar-width: auto !important;
}

html body .tx88-home-article-scrollbox::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

html body .tx88-home-article-scrollbox::-webkit-scrollbar-track,
html body .tx88-home-article-scrollbox::-webkit-scrollbar-thumb {
  display: none !important;
}

/* Article/body typography smaller */
html body .tx88-article {
  padding: 22px 24px !important;
}

html body .tx88-article h1 {
  font-size: 24px !important;
  line-height: 1.35 !important;
}

html body .tx88-article .entry-content,
html body .tx88-home-article-body {
  font-size: 15px !important;
  line-height: 1.75 !important;
}

/* Footer compact */
html body .tx88-footer-main {
  max-width: 1280px !important;
  padding: 38px 34px 22px !important;
}

html body .tx88-footer h3,
html body .tx88-footer-new h3 {
  font-size: 18px !important;
  margin-bottom: 16px !important;
}

html body .tx88-footer-brand img,
html body .tx88-footer-logo img {
  max-width: 230px !important;
}

html body .tx88-footer-brand p {
  font-size: 16px !important;
  line-height: 1.65 !important;
  margin-top: 16px !important;
}

html body .tx88-footer-menu li {
  margin-bottom: 11px !important;
}

html body .tx88-footer-menu a,
html body .tx88-footer-contact-list li,
html body .tx88-footer-keywords-block,
html body .tx88-footer-keywords-text {
  font-size: 16px !important;
  line-height: 1.5 !important;
}

html body .tx88-footer-sitemap-btn {
  min-width: 230px !important;
  min-height: 50px !important;
  padding: 8px 18px !important;
  font-size: 16px !important;
}

html body .tx88-copyright {
  font-size: 14px !important;
  margin-top: 20px !important;
}

/* Tablet */
@media (max-width: 1200px) {
  html body .tx88-header-inner,
  html body .tx88-nav-inner {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }

  html body ul.tx88-menu,
  html body #tx88-primary-menu {
    gap: 6px 18px !important;
  }

  html body ul.tx88-menu > li > a,
  html body #tx88-primary-menu > li > a {
    font-size: 15px !important;
  }

  html body .tx88-main {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }
}

/* Mobile */
@media (max-width: 980px) {
  html body .tx88-header,
  html body.admin-bar .tx88-header {
    position: sticky !important;
    top: 0 !important;
  }

  html body.admin-bar .tx88-header {
    top: 0 !important;
  }

  html body .tx88-header-inner {
    min-height: 0 !important;
    padding: 12px 16px !important;
    flex-direction: column !important;
    justify-content: center !important;
  }

  html body .tx88-logo img {
    max-width: 170px !important;
    max-height: 70px !important;
  }

  html body .tx88-actions {
    width: 100% !important;
    justify-content: center !important;
    gap: 10px !important;
  }

  html body .tx88-actions .tx88-pill,
  html body .tx88-pill {
    min-width: 112px !important;
    min-height: 36px !important;
    height: 36px !important;
    padding: 0 12px !important;
    font-size: 13px !important;
  }

  html body .tx88-nav-wrap,
  html body .tx88-nav-inner {
    min-height: 56px !important;
  }

  html body .tx88-nav-inner {
    justify-content: flex-start !important;
  }

  html body .tx88-menu-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 40px !important;
    padding: 0 16px !important;
    border: 2px solid rgba(255,255,255,.62) !important;
    border-radius: 8px !important;
    background: rgba(255,255,255,.14) !important;
    color: #ffffff !important;
    font-size: 17px !important;
    font-weight: 800 !important;
  }

  html body ul.tx88-menu,
  html body #tx88-primary-menu {
    display: none !important;
    width: 100% !important;
    min-height: 0 !important;
    margin-top: 10px !important;
    padding: 8px !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    background: rgba(0,0,0,.18) !important;
    border-radius: 10px !important;
  }

  html body ul.tx88-menu.is-open,
  html body #tx88-primary-menu.is-open {
    display: flex !important;
  }

  html body ul.tx88-menu > li,
  html body #tx88-primary-menu > li,
  html body ul.tx88-menu > li > a,
  html body #tx88-primary-menu > li > a {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
  }

  html body ul.tx88-menu > li > a,
  html body #tx88-primary-menu > li > a {
    justify-content: flex-start !important;
    padding: 12px 10px !important;
    font-size: 15px !important;
  }

  html body ul.tx88-menu > li > a::after,
  html body #tx88-primary-menu > li > a::after {
    display: none !important;
  }

  html body .tx88-main {
    padding: 16px 12px 0 !important;
  }

  html body .tx88-article {
    padding: 16px 12px !important;
  }

  html body .tx88-footer-main {
    padding: 28px 16px 20px !important;
  }

  html body .tx88-footer-columns {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  html body .tx88-footer-brand p,
  html body .tx88-footer-menu a,
  html body .tx88-footer-contact-list li,
  html body .tx88-footer-keywords-text,
  html body .tx88-copyright {
    font-size: 14px !important;
  }
}

/* ===== TX88 mobile header layout v5 ===== */
@media (max-width: 980px) {
  html body .tx88-header,
  html body.admin-bar .tx88-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 99999 !important;
    background: #121013 !important;
  }

  html body .tx88-header-top {
    background: #121013 !important;
    padding: 0 !important;
  }

  html body .tx88-header-inner {
    display: grid !important;
    grid-template-columns: 48px 1fr 48px !important;
    grid-template-areas:
      "toggle logo spare"
      "actions actions actions" !important;
    align-items: center !important;
    justify-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    padding: 12px 14px 0 !important;
    gap: 10px 10px !important;
    background: #121013 !important;
  }

  html body .tx88-header-inner::after {
    content: "";
    grid-area: spare;
    display: block;
    width: 48px;
    height: 48px;
  }

  html body .tx88-menu-toggle {
    display: inline-flex !important;
    grid-area: toggle !important;
    align-items: center !important;
    justify-content: center !important;
    justify-self: start !important;
    align-self: center !important;
    width: 46px !important;
    min-width: 46px !important;
    height: 46px !important;
    min-height: 46px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #ffffff !important;
    font-size: 0 !important;
    line-height: 1 !important;
    text-indent: -9999px !important;
    overflow: hidden !important;
  }

  html body .tx88-menu-toggle::before {
    content: "☰";
    display: block;
    font-size: 34px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-indent: 0 !important;
  }

  html body .tx88-logo {
    grid-area: logo !important;
    justify-self: center !important;
    align-self: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 0 !important;
  }

  html body .tx88-logo img {
    display: block !important;
    width: auto !important;
    max-width: 220px !important;
    max-height: 70px !important;
    margin: 0 auto !important;
  }

  html body .tx88-actions {
    grid-area: actions !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 16px !important;
    width: calc(100% + 28px) !important;
    max-width: none !important;
    margin: 2px -14px 0 !important;
    padding: 10px 14px 10px !important;
    background: #e50c67 !important;
    border-radius: 0 !important;
  }

  html body .tx88-actions .tx88-pill,
  html body .tx88-pill {
    min-width: 0 !important;
    width: 170px !important;
    max-width: calc(50vw - 28px) !important;
    height: 54px !important;
    min-height: 54px !important;
    padding: 0 14px !important;
    border-radius: 0 !important;
    background: linear-gradient(180deg, #c72d1a 0%, #b6190f 100%) !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
    box-shadow: inset 0 2px 0 rgba(255,255,255,.18) !important;
    animation: none !important;
  }

  html body .tx88-actions .tx88-pill::before,
  html body .tx88-pill::before {
    display: none !important;
  }

  html body .tx88-nav-wrap {
    display: none !important;
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 14px 14px !important;
    background: #e50c67 !important;
    box-shadow: none !important;
    position: static !important;
    overflow: visible !important;
  }

  html body.tx88-menu-open .tx88-nav-wrap {
    display: block !important;
  }

  html body .tx88-nav-inner {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    padding: 0 !important;
    display: block !important;
  }

  html body ul.tx88-menu,
  html body #tx88-primary-menu {
    display: none !important;
    width: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 10px 0 !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    background: rgba(0, 0, 0, .18) !important;
    border-radius: 12px !important;
  }

  html body ul.tx88-menu.is-open,
  html body #tx88-primary-menu.is-open {
    display: flex !important;
  }

  html body ul.tx88-menu > li,
  html body #tx88-primary-menu > li {
    width: 100% !important;
  }

  html body ul.tx88-menu > li > a,
  html body #tx88-primary-menu > li > a,
  html body ul.tx88-menu > li.current-menu-item > a,
  html body ul.tx88-menu > li.current_page_item > a,
  html body #tx88-primary-menu > li.current-menu-item > a,
  html body #tx88-primary-menu > li.current_page_item > a {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
    padding: 12px 14px !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1.35 !important;
  }

  html body ul.tx88-menu > li > a::after,
  html body #tx88-primary-menu > li > a::after {
    display: none !important;
  }
}

/* ===== TX88 home hero slider ===== */
html body .tx88-hero.tx88-hero-slider {
  width: 100vw !important;
  max-width: none !important;
  margin: 0 calc(50% - 50vw) 24px !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 0 !important;
  background: #111 !important;
}

html body .tx88-slider {
  position: relative !important;
  width: 100% !important;
  overflow: hidden !important;
  background: #111 !important;
}

html body .tx88-slider-track {
  position: relative !important;
  width: 100% !important;
  min-height: 300px !important;
  overflow: hidden !important;
}

html body .tx88-slide {
  position: absolute !important;
  inset: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity .5s ease, visibility .5s ease !important;
}

html body .tx88-slide.is-active {
  position: relative !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 1 !important;
}

html body .tx88-slide img,
html body .tx88-hero.tx88-hero-slider img {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  object-position: center center !important;
  margin: 0 auto !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

html body .tx88-slider-arrow {
  position: absolute !important;
  top: 50% !important;
  z-index: 5 !important;
  width: 44px !important;
  height: 44px !important;
  margin-top: -22px !important;
  border-radius: 50% !important;
  border: 2px solid rgba(255,255,255,.75) !important;
  background: rgba(0,0,0,.18) !important;
  color: #ffffff !important;
  font-size: 42px !important;
  line-height: 34px !important;
  font-weight: 300 !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
}

html body .tx88-slider-prev {
  left: 26px !important;
}

html body .tx88-slider-next {
  right: 26px !important;
}

html body .tx88-slider-arrow:hover {
  background: rgba(219, 19, 92, .72) !important;
  border-color: #ffffff !important;
}

html body .tx88-slider-dots {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 18px !important;
  z-index: 6 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
}

html body .tx88-slider-dot {
  display: block !important;
  width: 12px !important;
  height: 12px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,.5) !important;
  cursor: pointer !important;
}

html body .tx88-slider-dot.is-active {
  background: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(255,255,255,.22) !important;
}

@media (max-width: 980px) {
  html body .tx88-hero.tx88-hero-slider {
    margin-bottom: 16px !important;
  }

  html body .tx88-slider-track {
    min-height: 160px !important;
  }

  html body .tx88-slider-arrow {
    width: 34px !important;
    height: 34px !important;
    margin-top: -17px !important;
    font-size: 30px !important;
    line-height: 26px !important;
  }

  html body .tx88-slider-prev {
    left: 12px !important;
  }

  html body .tx88-slider-next {
    right: 12px !important;
  }

  html body .tx88-slider-dots {
    bottom: 10px !important;
  }

  html body .tx88-slider-dot {
    width: 9px !important;
    height: 9px !important;
  }
}

/* ===== TX88 hero slider mobile/drag fix ===== */
html body .tx88-hero.tx88-hero-slider {
  width: 100vw !important;
  max-width: none !important;
  margin: 0 calc(50% - 50vw) 24px !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: #111111 !important;
  border-radius: 0 !important;
}

html body .tx88-slider {
  position: relative !important;
  width: 100% !important;
  overflow: hidden !important;
  background: #111111 !important;
  cursor: grab !important;
  user-select: none !important;
  touch-action: pan-y !important;
}

html body .tx88-slider.is-dragging {
  cursor: grabbing !important;
}

html body .tx88-slider-track {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 1920 / 520 !important;
  min-height: 0 !important;
  height: auto !important;
  overflow: hidden !important;
  background: #111111 !important;
}

html body .tx88-slide,
html body .tx88-slide.is-active {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  transition: opacity .48s ease, visibility .48s ease !important;
}

html body .tx88-slide {
  opacity: 0 !important;
  visibility: hidden !important;
  z-index: 1 !important;
}

html body .tx88-slide.is-active {
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 2 !important;
}

html body .tx88-slide img,
html body .tx88-hero.tx88-hero-slider img {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  object-position: center center !important;
  margin: 0 auto !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  pointer-events: none !important;
  user-select: none !important;
  -webkit-user-drag: none !important;
}

html body .tx88-slider-arrow {
  position: absolute !important;
  top: 50% !important;
  z-index: 9 !important;
  width: 44px !important;
  height: 44px !important;
  margin-top: -22px !important;
  border-radius: 50% !important;
  border: 2px solid rgba(255,255,255,.78) !important;
  background: rgba(0,0,0,.18) !important;
  color: #ffffff !important;
  font-size: 42px !important;
  line-height: 34px !important;
  font-weight: 300 !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
}

html body .tx88-slider-prev {
  left: 28px !important;
}

html body .tx88-slider-next {
  right: 28px !important;
}

html body .tx88-slider-arrow:hover {
  background: rgba(219, 19, 92, .72) !important;
  border-color: #ffffff !important;
}

html body .tx88-slider-dots {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 18px !important;
  z-index: 10 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  pointer-events: auto !important;
}

html body .tx88-slider-dot {
  display: block !important;
  width: 13px !important;
  height: 13px !important;
  min-width: 13px !important;
  min-height: 13px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,.48) !important;
  cursor: pointer !important;
}

html body .tx88-slider-dot.is-active {
  background: #ffffff !important;
  box-shadow: 0 0 0 4px rgba(255,255,255,.22) !important;
}

@media (max-width: 980px) {
  html body .tx88-hero.tx88-hero-slider {
    margin-bottom: 16px !important;
  }

  html body .tx88-slider-track {
    aspect-ratio: 1920 / 560 !important;
    min-height: 0 !important;
    height: auto !important;
  }

  html body .tx88-slider-arrow {
    width: 34px !important;
    height: 34px !important;
    margin-top: -17px !important;
    font-size: 30px !important;
    line-height: 26px !important;
  }

  html body .tx88-slider-prev {
    left: 14px !important;
  }

  html body .tx88-slider-next {
    right: 14px !important;
  }

  html body .tx88-slider-dots {
    bottom: 10px !important;
  }

  html body .tx88-slider-dot {
    width: 9px !important;
    height: 9px !important;
    min-width: 9px !important;
    min-height: 9px !important;
  }
}

@media (max-width: 520px) {
  html body .tx88-slider-track {
    aspect-ratio: 375 / 138 !important;
  }

  html body .tx88-slider-arrow {
    width: 30px !important;
    height: 30px !important;
    margin-top: -15px !important;
    font-size: 28px !important;
    line-height: 24px !important;
  }

  html body .tx88-slider-prev {
    left: 10px !important;
  }

  html body .tx88-slider-next {
    right: 10px !important;
  }

  html body .tx88-slider-dots {
    bottom: 8px !important;
  }
}


html body .tx88-hero.tx88-hero-slider {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto 24px !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: transparent !important;
  border-radius: 0 !important;
}


html body .tx88-slider-track {
  position: relative !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  overflow: hidden !important;
  background: transparent !important;
}


html body .tx88-slide {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: auto !important;
  opacity: 0 !important;
  visibility: hidden !important;
  z-index: 1 !important;
}


html body .tx88-slide.is-active {
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  height: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 2 !important;
}


html body .tx88-slide img,
html body .tx88-hero.tx88-hero-slider img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  margin: 0 auto !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}


html body .tx88-slider-dots {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 12px !important;
  z-index: 10 !important;
}


html body .tx88-slider-arrow {
  top: 50% !important;
  transform: translateY(-50%) !important;
  margin-top: 0 !important;
}


@media (max-width: 980px) {
  html body .tx88-hero.tx88-hero-slider {
    margin-bottom: 16px !important;
  }

  html body .tx88-slider-track {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: auto !important;
  }

  html body .tx88-slide img,
  html body .tx88-hero.tx88-hero-slider img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
  }

  html body .tx88-slider-dots {
    bottom: 8px !important;
  }
}