@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700;800;900&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@view-transition {
    navigation: auto;
}

::view-transition-old(root) {
    animation: fade-out 0.35s ease-in forwards;
}

::view-transition-new(root) {
    animation: fade-in 0.55s ease-out forwards;
}

@keyframes fade-out {
    to {
        opacity: 0;
        filter: blur(3px);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
        filter: blur(3px);
    }

    to {
        opacity: 1;
        filter: blur(0);
    }
}

html,
body {
  min-height: 100%;
}

html {
  --iootoo-header-height: 78px;
}

body {
  min-height: 100vh;
  padding-top: var(--iootoo-header-height);
  color: #fff;
  background-color: #0b0f13;
  background-image: url("../img/wallpaper.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

html body,
html body *:not(svg):not(path):not(circle):not(line):not(polyline):not(rect):not(polygon) {
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

footer,
#footer {
  position: relative;
  margin: 7% 0 2%;
  text-align: center;
}

.site-footer-copy {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.6;
}

.site-footer-copy a,
.site-footer-copy a:visited,
#footer a,
#footer a:visited {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.site-footer-copy a:hover,
#footer a:hover {
  color: #f0d06d;
}

.hidden-email-field,
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Source: lang/fr/contact.php */

.hp-field {
  left: -9999px;
  opacity: 0;
  position: absolute;
  top: auto;
  width: 1px;
}

body.contact-page {
  background: #0b1529;
  color: #fff;
}

.contact-main {
  width: min(100% - 36px, 760px);
  margin: 0 auto;
  padding: 92px 0 0;
}

.contact-card {
  width: 100%;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  background: #4d4d4d;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.contact-logo {
  display: block;
  width: 150px;
  height: auto;
  margin: 0 auto 22px;
  border-radius: 28px;
}

.contact-title {
  margin: 0 0 10px;
  color: #fff;
  text-align: center;
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.contact-intro {
  max-width: 540px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-size: 15px;
  line-height: 1.45;
}

.contact-form {
  display: grid;
  gap: 34px;
  width: min(100%, 520px);
  margin: 0 auto;
}

.contact-field {
  display: grid;
  gap: 10px;
}

.contact-field label {
  color: rgba(255, 255, 255, 0.86);
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.contact-field input,
    .contact-field select,
    .contact-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 1.4px solid rgba(255, 255, 255, 0.34);
  border-radius: 28px;
  outline: 0;
  color: #fff;
  background: #0f1a2e;
  font-size: 15px;
  font-weight: 500;
  appearance: none;
  -webkit-appearance: none;
}

.contact-field textarea {
  min-height: 132px;
  padding-top: 16px;
  resize: vertical;
  border-radius: 20px;
}

.contact-field input::placeholder,
    .contact-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.contact-field input:focus,
    .contact-field select:focus,
    .contact-field textarea:focus {
  border-color: rgba(0, 102, 255, 0.92);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.12);
}

.contact-submit {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 240px;
  min-height: 42px;
  border: 0;
  border-radius: 22px;
  color: #fff;
  background: #be9235;
  cursor: pointer;
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.contact-submit:hover {
  color: #be9235;
  background: #fff;
}

.contact-details {
  display: grid;
  gap: 10px;
  width: min(100%, 520px);
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  text-align: center;
}

.contact-details a {
  color: #fff;
  text-decoration: none;
}

.contact-details a:hover {
  opacity: 0.72;
}

@media (max-width: 760px) {
  .contact-main {
    width: min(100% - 30px, 560px);
    padding-top: 68px;
  }

  .contact-card {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .contact-logo {
    width: 132px;
    border-radius: 24px;
  }
}

/* Source: lang/fr/laws/cgv.php */

body.legal-page {
  background: #0b1529;
  color: #fff;
}

footer {
  text-align: center;
  position: relative;
  margin-top: 7%;
  margin-bottom: 2%;
}

.legal-main {
  width: min(100% - 36px, 780px);
  margin: 0 auto;
  padding: 92px 0 0;
}

.legal-card {
  padding: 30px 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  background: #4d4d4d;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.legal-logo {
  display: block;
  width: 150px;
  height: auto;
  margin: 0 auto 24px;
  border-radius: 28px;
}

.legal-title {
  margin: 0 0 10px;
  color: #fff;
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.12;
  text-align: center;
}

.legal-updated {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  text-align: center;
}

.legal-section {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.legal-section:first-of-type {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.legal-section h2,
    .legal-section h3,
    .legal-section strong {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.legal-section h2 {
  margin: 0 0 12px;
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
  font-size: 22px;
  font-weight: 700;
}

.legal-section h3 {
  margin: 16px 0 8px;
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
  font-size: 18px;
  font-weight: 700;
}

.legal-section p,
    .legal-section li {
  color: rgba(255, 255, 255, 0.76) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.76) !important;
  font-size: 14px;
  line-height: 1.58;
}

.legal-section p {
  margin: 0 0 12px;
}

.legal-section ul {
  display: grid;
  gap: 8px;
  margin: 0 0 12px;
  padding-left: 20px;
}

.legal-section a,
    .legal-section a:visited {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 760px) {
  .legal-main {
    width: min(100% - 28px, 560px);
    padding-top: 76px;
  }

  .legal-card {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .legal-title {
    font-size: 27px;
  }

  .legal-logo {
    width: 132px;
  }
}

/* =========================================================
   IOOTOO HOME
   ========================================================= */

body.home-index-page {
  --iootoo-panel: rgba(18, 22, 27, 0.84);
  --iootoo-panel-2: rgba(23, 27, 32, 0.92);
  --iootoo-text: #f3f1e8;
  --iootoo-muted: #a9abb0;
  --iootoo-gold: #d9af42;
  --iootoo-gold-soft: #f0d06d;
  --iootoo-border: rgba(217, 175, 66, 0.26);
  --iootoo-line: rgba(255, 255, 255, 0.075);
  --iootoo-green: #8bd6a3;
  --iootoo-orange: #e8bb68;
}

body.home-index-page .hero {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: min(100%, 1050px) !important;
  margin: 0 auto !important;
  padding: 38px 20px 84px !important;
  text-align: center !important;
  background: transparent !important;
}

body.home-index-page .brand-logo {
  display: block !important;
  width: 335px !important;
  max-width: 72vw !important;
  height: auto !important;
  margin: 0 auto -6px !important;
}

body.home-index-page .hero-content {
  width: min(930px, 100%) !important;
  margin: 70px auto 0 !important;
  text-align: center !important;
}

body.home-index-page .hero-content h1 {
  margin: 0 !important;
  color: #fff !important;
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
  font-size: clamp(23px, 2.7vw, 32px) !important;
  font-weight: 700 !important;
  line-height: 1.08 !important;
}

body.home-index-page .hero-copy {
  max-width: 730px !important;
  margin: 16px auto 26px !important;
  color: #bec0c4 !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
}

body.home-index-page .search-box {
  display: grid !important;
  grid-template-columns: 42px minmax(0, 1fr) auto !important;
  align-items: center !important;
  width: min(840px, 100%) !important;
  margin: 0 auto !important;
  padding: 6px !important;
  border: 1px solid rgba(217, 175, 66, 0.42) !important;
  border-radius: 12px !important;
  background: rgba(5, 8, 11, 0.76) !important;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.035) !important;
}

body.home-index-page .search-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--iootoo-gold) !important;
  font-size: 27px !important;
  line-height: 1 !important;
  transform: translateY(-2px) !important;
}

body.home-index-page .search-box input {
  display: block !important;
  min-width: 0 !important;
  width: 100% !important;
  height: 48px !important;
  padding: 0 12px 0 2px !important;
  border: 0 !important;
  outline: 0 !important;
  color: #fff !important;
  background: transparent !important;
  font-size: 15px !important;
}

body.home-index-page .search-box input::placeholder {
  color: #767b82 !important;
  opacity: 1 !important;
}

body.home-index-page .search-box button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 48px !important;
  min-width: 136px !important;
  padding: 0 27px !important;
  border: 1px solid #efcd66 !important;
  border-radius: 8px !important;
  color: #111318 !important;
  background: linear-gradient(180deg, #efd369 0%, #c99b2a 100%) !important;
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  cursor: pointer !important;
}

.crypto-examples {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  width: min(900px, 100%);
  margin: 14px auto 0;
  padding: 2px 4px 4px;
  overflow: visible;
}

.crypto-examples-label,
.crypto-example {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  border-radius: 999px;
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.crypto-examples-label {
  padding: 0 9px;
  color: #9aa0a7;
}

.crypto-example {
  min-width: 48px;
  padding: 0 10px;
  border: 1px solid rgba(217, 175, 66, 0.42);
  color: #f2f4f7;
  background: rgba(5, 8, 11, 0.66);
  cursor: pointer;
}

.crypto-example:hover,
.crypto-example:focus-visible {
  border-color: rgba(239, 205, 102, 0.92);
  color: #05080a;
  background: linear-gradient(180deg, #efd369 0%, #c99b2a 100%);
  outline: none;
}

.crypto-examples-dropdown {
  display: none;
}

.crypto-examples-dropdown summary {
  list-style: none;
}

.crypto-examples-dropdown summary::-webkit-details-marker {
  display: none;
}

.radar-examples {
  margin-top: 12px;
}







body.home-index-page .preview-section {
  width: min(100%, 1050px) !important;
  margin: 0 auto !important;
  padding: 18px 20px 62px !important;
}

body.home-index-page .section-heading {
  margin: 0 0 25px !important;
  text-align: center !important;
}

body.home-index-page .section-heading > span {
  color: var(--iootoo-gold) !important;
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  letter-spacing: 0.22em !important;
}

body.home-index-page .section-heading h2 {
  margin: 8px 0 7px !important;
  color: #fff !important;
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
  font-size: 25px !important;
}

body.home-index-page .section-heading p {
  color: #898e94 !important;
  font-size: 13px !important;
}

body.home-index-page .risk-card {
  width: min(780px, 100%) !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  border: 1px solid var(--iootoo-border) !important;
  border-radius: 14px !important;
  background: linear-gradient(180deg, rgba(25, 29, 33, 0.89), rgba(11, 15, 18, 0.93)) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25) !important;
}

body.home-index-page .asset-head,
body.home-index-page .risk-row,
body.home-index-page .card-footer {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
  padding: 18px 22px !important;
  border-bottom: 1px solid var(--iootoo-line) !important;
}

body.home-index-page .asset-symbol {
  display: inline-grid !important;
  place-items: center !important;
  width: 45px !important;
  height: 45px !important;
  margin-right: 11px !important;
  border-radius: 50% !important;
  color: #111 !important;
  background: linear-gradient(180deg, #f4db72, #bf8e22) !important;
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
  font-weight: 900 !important;
}

.sol-mark img {
  display: block;
  width: 62%;
  height: 62%;
  object-fit: contain;
}

.market-icon-fallback {
  display: grid;
  place-items: center;
  width: 72%;
  height: 72%;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8d24a, #c9951e);
  color: #05080a;
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
}

body.home-index-page .asset-name {
  color: #fff !important;
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 800 !important;
}

body.home-index-page .demo-badge {
  padding: 6px 10px !important;
  border: 1px solid rgba(217, 175, 66, 0.4) !important;
  border-radius: 999px !important;
  color: var(--iootoo-gold-soft) !important;
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
  font-size: 9px !important;
  font-weight: 800 !important;
  letter-spacing: 0.16em !important;
}

body.home-index-page .risk-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

body.home-index-page .risk-row:nth-child(odd) {
  border-right: 1px solid var(--iootoo-line) !important;
}

body.home-index-page .risk-row span {
  color: #c9cbce !important;
  font-size: 13px !important;
}

body.home-index-page .risk-row strong {
  font-size: 12px !important;
}

body.home-index-page .risk-row strong.ok {
  color: var(--iootoo-green) !important;
}

body.home-index-page .risk-row strong.warn {
  color: var(--iootoo-orange) !important;
}

body.home-index-page .risk-row strong.event,
body.home-index-page .card-footer a {
  color: var(--iootoo-gold-soft) !important;
}

body.home-index-page .card-footer p {
  max-width: 535px !important;
  color: #777d83 !important;
  font-size: 10px !important;
  line-height: 1.55 !important;
  text-align: left !important;
}

body.home-index-page .sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

@media (max-width: 820px) {
  body.home-index-page .search-box {
    grid-template-columns: 34px minmax(0, 1fr) !important;
    grid-template-areas:
      "icon input"
      "button button" !important;
    row-gap: 10px !important;
  }

  body.home-index-page .risk-grid {
    grid-template-columns: 1fr !important;
  }

  body.home-index-page .search-icon {
    grid-area: icon !important;
    justify-content: center !important;
    transform: none !important;
  }

  body.home-index-page .search-box input {
    grid-area: input !important;
    height: 46px !important;
    padding-left: 0 !important;
    font-size: 18px !important;
  }

  body.home-index-page .search-box button {
    grid-area: button !important;
    width: 100% !important;
  }

  body.home-index-page .crypto-examples {
    display: block !important;
    width: min(100%, 360px) !important;
    margin-top: 18px !important;
    padding: 0 !important;
  }

  body.home-index-page .crypto-examples-label,
  body.home-index-page .crypto-example {
    display: none !important;
  }

  body.home-index-page .crypto-examples-dropdown {
    position: relative !important;
    display: block !important;
    width: 100% !important;
  }

  body.home-index-page .crypto-examples-dropdown summary {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 50px !important;
    padding: 0 18px !important;
    border: 1px solid rgba(217, 175, 66, 0.72) !important;
    border-radius: 10px !important;
    color: #111318 !important;
    background: linear-gradient(180deg, #efd369 0%, #c99b2a 100%) !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
  }

  body.home-index-page .crypto-examples-dropdown summary::after {
    content: "" !important;
    width: 9px !important;
    height: 9px !important;
    border-right: 2px solid #111318 !important;
    border-bottom: 2px solid #111318 !important;
    transform: translateY(-3px) rotate(45deg) !important;
  }

  body.home-index-page .crypto-examples-dropdown[open] summary::after {
    transform: translateY(3px) rotate(225deg) !important;
  }

  body.home-index-page .crypto-examples-menu {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 30 !important;
    display: grid !important;
    max-height: 310px !important;
    overflow-y: auto !important;
    border: 1px solid rgba(217, 175, 66, 0.72) !important;
    border-radius: 10px !important;
    background: #0b0f13 !important;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45) !important;
  }

  body.home-index-page .crypto-example-option {
    display: grid !important;
    grid-template-columns: minmax(92px, 34%) minmax(0, 1fr) !important;
    gap: 10px !important;
    align-items: center !important;
    min-height: 44px !important;
    padding: 0 14px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(217, 175, 66, 0.18) !important;
    color: #f7f7f7 !important;
    background: transparent !important;
    text-align: left !important;
    cursor: pointer !important;
  }

  body.home-index-page .crypto-example-option:hover,
  body.home-index-page .crypto-example-option:focus-visible {
    color: #111318 !important;
    background: linear-gradient(180deg, #efd369 0%, #c99b2a 100%) !important;
    outline: none !important;
  }

  body.home-index-page .crypto-example-option strong {
    min-width: 0 !important;
    overflow: hidden !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  body.home-index-page .crypto-example-option span {
    min-width: 0 !important;
    overflow: hidden !important;
    color: inherit !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  body.home-index-page .risk-row:nth-child(odd) {
    border-right: 0 !important;
  }
}

@media (max-width: 560px) {
  body.home-index-page .hero,
  body.home-index-page .preview-section {
    padding-right: 14px !important;
    padding-left: 14px !important;
  }

  body.home-index-page .brand-logo {
    width: 245px !important;
  }

  body.home-index-page .hero-content {
    margin-top: 47px !important;
  }
}

/* =========================================================
   IOOTOO HEADER - FINAL
   ========================================================= */

html body header.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 78px !important;
  min-height: 78px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: radial-gradient(circle at 50% -90px, rgba(255,255,255,0.08), transparent 34%), rgba(8, 11, 13, 0.98) !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(190, 146, 53, 0.42) !important;
  box-shadow: 0 1px 0 rgba(0,0,0,0.65) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  overflow: visible !important;
  z-index: 999999 !important;
}

html body header.site-header > .site-header-inner {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  width: calc(100% - 76px) !important;
  max-width: none !important;
  height: 78px !important;
  min-height: 78px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  gap: 0 !important;
  overflow: visible !important;
}

html body header.site-header .header-brand {
  position: relative !important;
  z-index: 3 !important;
  display: inline-flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
  gap: 10px !important;
  width: max-content !important;
  color: #f4c84d !important;
  -webkit-text-fill-color: #f4c84d !important;
  text-decoration: none !important;
}

html body header.site-header .header-brand img {
  display: block !important;
  width: auto !important;
  height: 54px !important;
  max-width: none !important;
  object-fit: contain !important;
}

html body header.site-header > .site-header-inner > .desktop-nav {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  z-index: 2 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  max-width: calc(100vw - 700px) !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 12px !important;
  transform: translate(-50%, -50%) !important;
}

html body header.site-header > .site-header-inner > .desktop-nav > a,
html body header.site-header > .site-header-inner > .desktop-nav > a:visited {
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 38px !important;
  min-height: 38px !important;
  min-width: 0 !important;
  padding: 0 12px !important;
  border: 1px solid transparent !important;
  border-radius: 7px !important;
  background: transparent !important;
  color: rgba(255,255,255,0.94) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.94) !important;
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  opacity: 1 !important;
}

html body header.site-header > .site-header-inner > .desktop-nav > a:hover,
html body header.site-header > .site-header-inner > .desktop-nav > a.active,
html body header.site-header > .site-header-inner > .desktop-nav > a.active:hover {
  border-color: rgba(246, 199, 74, 0.86) !important;
  background: rgba(246, 199, 74, 0.08) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

html body header.site-header > .site-header-inner > .desktop-nav > a::after,
html body header.site-header > .site-header-inner > .desktop-nav > a.active::after {
  display: none !important;
  content: none !important;
}

html body header.site-header > .site-header-inner > .header-tools {
  position: fixed !important;
  top: 39px !important;
  right: 38px !important;
  left: auto !important;
  z-index: 1000000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  width: 132px !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 13px !important;
  transform: translateY(-50%) !important;
}

html body header.site-header .language-picker {
  position: relative !important;
  display: block !important;
  width: 76px !important;
  min-width: 76px !important;
  height: 36px !important;
}

html body header.site-header .language-picker summary {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 76px !important;
  height: 36px !important;
  padding: 0 !important;
  gap: 7px !important;
  border: 1px solid rgba(246, 199, 74, 0.54) !important;
  border-radius: 999px !important;
  background: rgba(246, 199, 74, 0.06) !important;
  color: #fff !important;
  cursor: pointer !important;
  list-style: none !important;
}

html body header.site-header .language-picker summary::-webkit-details-marker {
  display: none !important;
}

html body header.site-header .language-picker img {
  display: block !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
}

html body header.site-header .language-picker span,
html body header.site-header .language-menu span {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

html body header.site-header .language-menu {
  position: absolute !important;
  top: 37px !important;
  right: 0 !important;
  display: grid !important;
  width: 76px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

html body header.site-header .language-picker:not([open]) .language-menu {
  display: none !important;
}

html body header.site-header .language-menu a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 76px !important;
  height: 36px !important;
  gap: 7px !important;
  padding: 0 !important;
  border: 1px solid rgba(246, 199, 74, 0.54) !important;
  border-radius: 999px !important;
  background: #090d10 !important;
  text-decoration: none !important;
}

html body header.site-header .language-menu a:hover {
  background: #10151a !important;
}

html body header.site-header .header-separator {
  display: block !important;
  width: 1px !important;
  height: 38px !important;
  background: rgba(255,255,255,0.16) !important;
}

html body header.site-header .header-account {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  flex: 0 0 34px !important;
  min-width: 34px !important;
  max-width: 34px !important;
  min-height: 34px !important;
  max-height: 34px !important;
  width: 34px !important;
  height: 34px !important;
  padding: 0 !important;
  border: 1.5px solid #f6cf54 !important;
  border-radius: 999px !important;
  color: #f6cf54 !important;
  -webkit-text-fill-color: #f6cf54 !important;
  text-decoration: none !important;
}

html body header.site-header .header-account svg {
  display: block !important;
  width: 20px !important;
  height: 20px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.7 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

html body header.site-header .mobile-nav {
  display: none !important;
}

html body header.site-header > .site-header-inner > .header-tools > a.header-account {
  aspect-ratio: 1 / 1 !important;
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  max-width: 34px !important;
  min-height: 34px !important;
  max-height: 34px !important;
  border-radius: 50% !important;
}

@media (max-width: 1320px) and (min-width: 901px) {
  html body header.site-header > .site-header-inner {
    width: calc(100% - 40px) !important;
  }

  html body header.site-header > .site-header-inner > .desktop-nav {
    max-width: calc(100vw - 430px) !important;
    gap: 5px !important;
  }

  html body header.site-header > .site-header-inner > .desktop-nav > a,
  html body header.site-header > .site-header-inner > .desktop-nav > a:visited {
    padding: 0 8px !important;
    font-size: 14px !important;
  }

}

@media (max-width: 900px) {
  html {
    --iootoo-header-height: 68px;
  }

  html body header.site-header {
    height: 68px !important;
    min-height: 68px !important;
  }

  html body header.site-header > .site-header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: calc(100% - 20px) !important;
    height: 68px !important;
    min-height: 68px !important;
    margin: 0 auto !important;
    gap: 10px !important;
  }

  html body header.site-header .header-brand img {
    width: auto !important;
    height: 42px !important;
  }

  html body header.site-header > .site-header-inner > .desktop-nav {
    display: none !important;
  }

  html body header.site-header > .site-header-inner > .header-tools {
    order: 3 !important;
    position: static !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex: 0 0 auto !important;
    width: auto !important;
    gap: 8px !important;
    margin: 0 4px 0 auto !important;
    transform: none !important;
  }

  html body header.site-header .language-picker,
  html body header.site-header .language-picker summary {
    width: 68px !important;
    min-width: 68px !important;
    height: 40px !important;
  }

  html body header.site-header .language-picker {
    min-width: 68px !important;
  }

  html body header.site-header .language-picker summary {
    min-width: 68px !important;
    min-height: 40px !important;
  }

  html body header.site-header .language-picker img {
    width: 18px !important;
    height: 18px !important;
  }

  html body header.site-header .language-picker span,
  html body header.site-header .language-menu span {
    font-size: 11px !important;
  }

  html body header.site-header .language-menu {
    top: 41px !important;
    width: 68px !important;
  }

  html body header.site-header .language-menu a {
    width: 68px !important;
    height: 40px !important;
  }

  html body header.site-header .header-separator {
    height: 40px !important;
  }

  html body header.site-header > .site-header-inner > .header-tools > a.header-account,
  html body header.site-header .header-account {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    flex-basis: 40px !important;
  }

  html body header.site-header .mobile-nav {
    order: 2 !important;
    position: relative !important;
    z-index: 1000000 !important;
    display: block !important;
    margin: 0 0 0 10px !important;
  }

  html body header.site-header .mobile-nav > summary {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    border: 1px solid #be9235 !important;
    border-radius: 8px !important;
    background: rgba(190,146,53,0.07) !important;
    cursor: pointer !important;
  }

  html body header.site-header .mobile-nav > summary span {
    display: block !important;
    width: 18px !important;
    height: 2px !important;
    margin: 2.5px 0 !important;
    border-radius: 999px !important;
    background: #fff !important;
  }

  html body header.site-header .mobile-nav[open] > summary span:nth-child(1) {
    transform: translateY(7px) rotate(45deg) !important;
  }

  html body header.site-header .mobile-nav[open] > summary span:nth-child(2) {
    opacity: 0 !important;
  }

  html body header.site-header .mobile-nav[open] > summary span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg) !important;
  }

  html body header.site-header .mobile-nav-panel {
    position: fixed !important;
    top: 68px !important;
    right: 10px !important;
    left: 10px !important;
    z-index: 1000001 !important;
    display: grid !important;
    width: auto !important;
    padding: 10px !important;
    gap: 5px !important;
    border: 1px solid rgba(190,146,53,.50) !important;
    border-radius: 14px !important;
    background: rgba(30,32,34,.98) !important;
    box-shadow: 0 22px 55px rgba(0,0,0,.45) !important;
  }

  html body header.site-header .mobile-nav:not([open]) .mobile-nav-panel {
    display: none !important;
  }

  html body header.site-header .mobile-nav-panel a {
    display: flex !important;
    align-items: center !important;
    min-height: 43px !important;
    padding: 0 14px !important;
    border: 1px solid transparent !important;
    border-radius: 8px !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
  }

  html body header.site-header .mobile-nav-panel a:hover,
  html body header.site-header .mobile-nav-panel a.active {
    border-color: #be9235 !important;
    background: rgba(190,146,53,.12) !important;
  }
}

@media (max-width: 520px) {
  html body header.site-header > .site-header-inner {
    width: calc(100% - 16px) !important;
    gap: 6px !important;
  }

  html body header.site-header .header-brand img {
    height: 34px !important;
  }

  html body header.site-header > .site-header-inner > .header-tools {
    gap: 6px !important;
    margin-right: 2px !important;
  }

  html body header.site-header .language-picker,
  html body header.site-header .language-picker summary {
    width: 60px !important;
    min-width: 60px !important;
    height: 38px !important;
  }

  html body header.site-header .language-picker summary {
    gap: 4px !important;
  }

  html body header.site-header .language-picker img {
    width: 16px !important;
    height: 16px !important;
  }

  html body header.site-header .language-menu,
  html body header.site-header .language-menu a {
    width: 60px !important;
  }

  html body header.site-header .header-separator {
    display: none !important;
  }

  html body header.site-header .mobile-nav > summary {
    width: 38px !important;
    height: 38px !important;
  }

  html body header.site-header > .site-header-inner > .header-tools > a.header-account,
  html body header.site-header .header-account {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    max-width: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
    flex-basis: 38px !important;
  }
}

/* =========================================================
   IOOTOO MONITORING
   ========================================================= */

body.monitoring-page {
  --monitor-gold: #d9af42;
  --monitor-gold-2: #f0d06d;
  --monitor-border: rgba(217, 175, 66, 0.38);
  --monitor-panel: rgba(13, 17, 20, 0.84);
  --monitor-line: rgba(255, 255, 255, 0.085);
  --monitor-muted: rgba(255, 255, 255, 0.62);
  --monitor-green: #79d45c;
  --monitor-red: #ff414f;
  --monitor-orange: #ff9c1b;
  --monitor-blue: #2f9bff;
}

.monitoring-main {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
  padding: 46px 0 120px;
}

.monitoring-hero {
  text-align: center;
}

.monitoring-title {
  margin: 0 0 8px;
  color: var(--monitor-gold);
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
  font-size: clamp(46px, 7vw, 78px);
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: .94;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255,255,255,.16), 0 18px 42px rgba(217,175,66,.14);
}

.monitoring-subtitle {
  margin: 0 auto 20px;
  color: rgba(255,255,255,.78);
  font-size: 15px;
}

.monitoring-command {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px 164px;
  gap: 12px;
  margin: 0 auto 16px;
}

.monitoring-search,
.monitoring-primary,
.monitoring-card,
.monitoring-stat,
.monitoring-method {
  border: 1px solid var(--monitor-border);
  background: linear-gradient(180deg, rgba(22,26,29,.84), rgba(8,11,13,.90));
  box-shadow: 0 22px 55px rgba(0,0,0,.18);
}

.monitoring-search {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 46px;
  padding: 0 15px;
  border-radius: 8px;
}

.monitoring-search span {
  color: var(--monitor-gold);
  font-size: 24px;
}

.monitoring-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  font-size: 13px;
}

.monitoring-search input::placeholder {
  color: rgba(255,255,255,.43);
}

.monitoring-primary,
.monitoring-card-head button,
.monitoring-link {
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.monitoring-primary {
  height: 46px;
  border: 1px solid rgba(255,220,103,.74);
  border-radius: 8px;
  color: #101214;
  background: linear-gradient(180deg, #f1d264, #d09d26);
  font-size: 13px;
}

.monitoring-card h2,
.monitoring-method strong {
  color: var(--monitor-gold);
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.monitoring-stats {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.monitoring-stat {
  min-height: 135px;
  padding: 17px 16px;
  border-radius: 8px;
}

.monitoring-stat-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  border: 1px solid rgba(217,175,66,.42);
  border-radius: 50%;
  color: var(--monitor-gold);
}

.monitoring-stat-label {
  color: var(--monitor-gold);
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.monitoring-stat strong {
  display: block;
  margin-top: 15px;
  color: #fff;
  font-size: 25px;
  line-height: 1;
}

.monitoring-stat small {
  display: block;
  margin-top: 3px;
  color: var(--monitor-muted);
}

.monitoring-stat em {
  display: block;
  margin-top: 10px;
  color: var(--monitor-green);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.monitoring-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 12px;
}

.monitoring-card {
  min-width: 0;
  padding: 16px;
  border-radius: 8px;
}

.monitoring-card-wide {
  grid-column: span 1;
}

.monitoring-card-chart {
  grid-column: 1 / -1;
  justify-self: stretch;
  width: 100%;
}

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

.monitoring-card h2 {
  margin: 0;
}

.monitoring-card-head span,
.monitoring-card-head button {
  border: 0;
  color: var(--monitor-gold-2);
  background: transparent;
  font-size: 12px;
}

.monitoring-alert-row,
.monitoring-wallet-row,
.monitoring-tx-row,
.monitoring-event-row {
  display: grid;
  align-items: center;
  gap: 12px;
  min-height: 36px;
  padding: 7px 0;
  border-bottom: 1px solid var(--monitor-line);
  color: rgba(255,255,255,.78);
  font-size: 12px;
}

.monitoring-alert-row {
  grid-template-columns: 18px 128px minmax(0, 1fr) 108px 82px 68px;
}

.monitoring-wallet-row {
  grid-template-columns: 28px minmax(0, 1fr) 44px 70px 72px 64px;
}

.monitoring-tx-row {
  grid-template-columns: 16px minmax(92px, 1fr) 20px minmax(70px, 1fr) 92px 82px;
}

.monitoring-event-row {
  grid-template-columns: 16px minmax(0, 1fr) 110px 86px;
}

.monitoring-alert-row:last-child,
.monitoring-wallet-row:last-child,
.monitoring-tx-row:last-child,
.monitoring-event-row:last-child {
  border-bottom: 0;
}

.monitoring-alert-row strong {
  justify-self: start;
  padding: 4px 8px;
  border: 1px solid rgba(217,175,66,.25);
  border-radius: 4px;
  color: var(--monitor-gold-2);
  background: rgba(217,175,66,.08);
  font-size: 11px;
  text-transform: uppercase;
}

.monitoring-alert-row code,
.monitoring-tx-row code {
  color: rgba(255,255,255,.68);
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
}

.monitoring-alert-row time,
.monitoring-tx-row time,
.monitoring-event-row time {
  color: rgba(255,255,255,.54);
}

.monitoring-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--monitor-blue);
  box-shadow: 0 0 0 4px rgba(47,155,255,.10);
}

[data-level="high"] .monitoring-dot,
.monitoring-dot.danger {
  background: var(--monitor-red);
  box-shadow: 0 0 0 4px rgba(255,65,79,.11);
}

[data-level="medium"] .monitoring-dot {
  background: var(--monitor-orange);
  box-shadow: 0 0 0 4px rgba(255,156,27,.11);
}

[data-level="low"] .monitoring-dot,
.monitoring-dot.safe {
  background: var(--monitor-green);
  box-shadow: 0 0 0 4px rgba(121,212,92,.11);
}

.monitoring-avatar {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #0d1012;
  background: linear-gradient(180deg, #e3ca6a, #aa821f);
  font-weight: 900;
}

.monitoring-wallet-row small {
  justify-self: start;
  padding: 4px 7px;
  border-radius: 4px;
  color: rgba(255,255,255,.76);
  background: rgba(255,255,255,.08);
}

.monitoring-spark {
  display: block;
  width: 68px;
  height: 22px;
  border-bottom: 2px solid currentColor;
  border-radius: 45% 55% 42% 58%;
  transform: skewX(-18deg);
}

.monitoring-spark.up,
.monitoring-page .up {
  color: var(--monitor-green);
}

.monitoring-spark.down,
.monitoring-page .down {
  color: var(--monitor-red);
}

.monitoring-alert-row em,
.monitoring-wallet-row em,
.monitoring-tx-row em,
.monitoring-event-row em {
  font-style: normal;
  font-weight: 800;
}

.monitoring-link {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 14px;
  padding-top: 12px;
  border: 0;
  border-top: 1px solid var(--monitor-line);
  color: var(--monitor-gold-2);
  background: transparent;
  font-size: 12px;
}

.monitoring-chart {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 148px;
  padding: 16px 4px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
  background:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px) 0 20% / 100% 25%,
    linear-gradient(180deg, rgba(217,175,66,.09), transparent);
}

.monitoring-chart span {
  flex: 1;
  min-width: 4px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #f0d06d, rgba(217,175,66,.25));
}

.monitoring-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.monitoring-summary div {
  min-height: 88px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  background: rgba(255,255,255,.035);
}

.monitoring-summary strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 15px;
}

.monitoring-summary span {
  display: block;
  color: rgba(255,255,255,.70);
  font-size: 14px;
  line-height: 1.45;
}

.monitoring-empty {
  padding: 18px 0;
  color: var(--monitor-muted);
  font-size: 13px;
}

.monitoring-method {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  margin-top: 20px;
  padding: 22px 26px;
  border-radius: 8px;
}

.monitoring-method > div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.monitoring-method-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--monitor-border);
  border-radius: 50%;
  color: var(--monitor-gold);
  font-size: 24px;
}

.monitoring-method p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.65;
}

@media (max-width: 1100px) {
  .monitoring-command {
    grid-template-columns: 1fr 150px;
  }

  .monitoring-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .monitoring-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .monitoring-main {
    width: min(100% - 24px, 620px);
    padding-top: 34px;
  }

  .monitoring-command {
    grid-template-columns: 1fr;
  }

  .monitoring-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .monitoring-alert-row,
  .monitoring-wallet-row,
  .monitoring-tx-row,
  .monitoring-event-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px 0;
  }

  .monitoring-dot {
    display: none;
  }

  .monitoring-method {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .monitoring-stats {
    grid-template-columns: 1fr;
  }

  .monitoring-title {
    font-size: 42px;
  }

  .monitoring-card,
  .monitoring-stat,
  .monitoring-method {
    padding: 15px;
  }
}

/* IOOTOO STATIC PAGES 20260811 */
body.iootoo-page {
  --iootoo-gold: #d4a62a;
  --iootoo-gold-2: #f2cf56;
  --iootoo-panel: rgba(11, 15, 18, 0.84);
  --iootoo-line: rgba(212, 166, 42, 0.58);
  --iootoo-soft-line: rgba(255, 255, 255, 0.12);
  --iootoo-text: rgba(255, 255, 255, 0.92);
  --iootoo-muted: rgba(255, 255, 255, 0.62);
  min-height: 100vh;
  color: var(--iootoo-text);
  background: #0b0f11;
}
body.iootoo-page .iootoo-page-main {
  width: min(100% - 44px, 1240px);
  margin: 0 auto;
  padding: 54px 0 88px;
}
body.iootoo-page .iootoo-hero {
  text-align: center;
  margin-bottom: 26px;
}
body.iootoo-page .iootoo-hero h1 {
  margin: 0 0 10px;
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
  font-size: clamp(46px, 6vw, 46px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--iootoo-gold-2);
  text-shadow: 0 8px 28px rgba(212, 166, 42, 0.24);
}
body.iootoo-page .iootoo-hero p {
  margin: 0 auto 22px;
  max-width: 760px;
  color: var(--iootoo-muted);
  font-size: 16px;
}
body.iootoo-page .iootoo-search {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) 150px;
  align-items: center;
  gap: 12px;
  width: min(100%, 1040px);
  margin: 0 auto 22px;
  padding: 7px 8px 7px 18px;
  border: 1px solid var(--iootoo-line);
  border-radius: 8px;
  background: rgba(5, 8, 10, 0.86);
}
body.iootoo-page.trade-page .trade-search {
  grid-template-columns: 26px minmax(0, 1fr) 145px 150px;
}
body.iootoo-page .iootoo-search span {
  color: var(--iootoo-gold);
  font-size: 25px;
}
body.iootoo-page .iootoo-search input,
body.iootoo-page .contact-form input,
body.iootoo-page .contact-form select,
body.iootoo-page .contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 7px;
  background: rgba(4, 8, 11, 0.72);
  color: white;
  outline: none;
}
body.iootoo-page .iootoo-search input {
  border: 0;
  background: transparent;
  min-height: 48px;
  font-size: 15px;
}
body.iootoo-page.trade-page .trade-quote-menu {
  position: relative;
}
body.iootoo-page.trade-page .trade-quote-menu summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(212,166,42,.36);
  border-radius: 7px;
  background: rgba(5, 8, 10, 0.92);
  color: #fff;
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .04em;
  list-style: none;
  cursor: pointer;
}
body.iootoo-page.trade-page .trade-quote-menu summary::-webkit-details-marker {
  display: none;
}
body.iootoo-page.trade-page .trade-quote-menu summary::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 18px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) translateY(-2px);
}
body.iootoo-page.trade-page .trade-quote-menu[open] summary::after {
  transform: rotate(225deg) translateY(-2px);
}
body.iootoo-page.trade-page .trade-quote-menu div {
  position: absolute;
  z-index: 40;
  top: calc(100% + 4px);
  right: 0;
  left: 0;
  max-height: 260px;
  overflow: auto;
  border: 1px solid rgba(212,166,42,.72);
  border-radius: 8px;
  background: #d4a62a;
  box-shadow: 0 18px 38px rgba(0,0,0,.36);
  scrollbar-width: thin;
  scrollbar-color: #101214 #d4a62a;
}
body.iootoo-page.trade-page .trade-quote-menu div::-webkit-scrollbar {
  width: 8px;
}
body.iootoo-page.trade-page .trade-quote-menu div::-webkit-scrollbar-track {
  background: #d4a62a;
}
body.iootoo-page.trade-page .trade-quote-menu div::-webkit-scrollbar-thumb {
  border: 2px solid #d4a62a;
  border-radius: 999px;
  background: #101214;
}
body.iootoo-page.trade-page .trade-quote-menu div button {
  display: block;
  width: 100%;
  min-height: 34px;
  border: 0;
  border-radius: 0;
  color: #101214;
  background: #d4a62a;
  text-align: left;
  padding: 0 14px;
  font-size: 15px;
}
body.iootoo-page.trade-page .trade-quote-menu div button:hover,
body.iootoo-page.trade-page .trade-quote-menu div button:focus {
  color: #101214;
  background: #f1d264;
}
body.iootoo-page button,
body.iootoo-page .contact-form button {
  min-height: 48px;
  border: 1px solid var(--iootoo-line);
  border-radius: 8px;
  background: linear-gradient(180deg, #f7d557, #d6a72d);
  color: #050608;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  cursor: pointer;
}
body.iootoo-page .iootoo-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}
body.iootoo-page .iootoo-grid-2 {
  grid-template-columns: 1.06fr 0.94fr;
}
body.iootoo-page .iootoo-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
body.iootoo-page .chart-row {
  grid-template-columns: 2fr 1fr;
}
body.iootoo-page .iootoo-panel,
body.iootoo-page .iootoo-method {
  border: 1px solid var(--iootoo-line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(18,22,25,0.9), rgba(7,10,12,0.88));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
body.iootoo-page .iootoo-panel {
  padding: 22px;
}
body.iootoo-page .iootoo-panel h2 {
  margin: 0 0 16px;
  color: var(--iootoo-gold);
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
body.iootoo-page.about-page .about-statement {
  width: min(100%, 1040px);
  margin: 0 auto 34px;
  padding: 34px 38px;
  text-align: center;
}
body.iootoo-page.about-page .about-statement h2 {
  font-size: 24px;
  margin-bottom: 20px;
}
body.iootoo-page.about-page .about-statement p {
  max-width: 920px;
  margin: 0 auto 22px;
  color: var(--iootoo-text);
  font-size: 16px;
  line-height: 1.75;
}
body.iootoo-page.about-page .about-statement p span {
  display: block;
}
body.iootoo-page.about-page .about-statement p span + span {
  margin-top: 7px;
}
.legal-section .legal-lines span {
  display: block;
}
.legal-section .legal-lines span + span {
  margin-top: 7px;
}
body.iootoo-page.about-page .about-statement ul {
  display: grid;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin: 24px auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
}
body.iootoo-page.about-page .about-statement li {
  position: relative;
  padding-left: 18px;
  color: rgba(255,255,255,0.82);
}
body.iootoo-page.about-page .about-statement li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--iootoo-gold);
  transform: translateY(-50%) rotate(45deg);
  content: "";
}
body.iootoo-page .asset-panel {
  display: grid;
  grid-template-columns: 134px minmax(0, 1fr);
  align-items: center;
  gap: 26px;
}
body.iootoo-page .asset-badge {
  width: 116px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--iootoo-gold);
  border-radius: 50%;
  color: #0b0d10;
  background: linear-gradient(180deg, #f6d75f, #c99821);
  font-weight: 900;
}
body.iootoo-page .asset-content h2 {
  color: white;
  font-size: 30px;
  letter-spacing: 0;
}
body.iootoo-page .asset-content h2 span {
  color: var(--iootoo-gold);
}
body.iootoo-page .asset-content h2 em {
  color: var(--iootoo-muted);
  font-style: normal;
  font-weight: 400;
}
body.iootoo-page .metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
body.iootoo-page .metric-strip span {
  padding: 0 18px;
  border-left: 1px solid var(--iootoo-soft-line);
}
body.iootoo-page small,
body.iootoo-page .iootoo-muted {
  color: var(--iootoo-muted);
}
body.iootoo-page .metric-strip small,
body.iootoo-page .quick-grid small {
  display: block;
  text-transform: uppercase;
  font-size: 12px;
}
body.iootoo-page .metric-strip strong,
body.iootoo-page .quick-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 21px;
}
body.iootoo-page em {
  color: #82df4f;
  font-style: normal;
}
body.iootoo-page em.warn,
body.iootoo-page em.watch {
  color: #ffae32;
}
body.iootoo-page em.danger {
  color: #ff514f;
}
body.iootoo-page .quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--iootoo-soft-line);
  border-radius: 8px;
  overflow: hidden;
}
body.iootoo-page .quick-grid span {
  min-height: 72px;
  padding: 16px 20px;
  border-right: 1px solid var(--iootoo-soft-line);
  border-bottom: 1px solid var(--iootoo-soft-line);
}
body.iootoo-page .signal-list,
body.iootoo-page .bar-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
body.iootoo-page .signal-list li,
body.iootoo-page .bar-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  min-height: 42px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
body.iootoo-page .signal-list li:last-child,
body.iootoo-page .bar-list li:last-child {
  border-bottom: 0;
}
body.iootoo-page .bar-list i {
  width: 110px;
  height: 10px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--iootoo-gold) var(--w), rgba(255,255,255,0.1) var(--w));
}
body.iootoo-page .bar-list i.hot {
  background: linear-gradient(90deg, #f0bd37 var(--w), #ff5c50 var(--w), rgba(255,255,255,0.1) var(--w));
}
body.iootoo-page .bar-list i.good {
  background: linear-gradient(90deg, #82df4f var(--w), rgba(255,255,255,0.1) var(--w));
}
body.iootoo-page .synthetic-chart svg {
  width: 100%;
  height: 190px;
}
body.iootoo-page .synthetic-chart polyline {
  fill: none;
  stroke: var(--iootoo-gold);
  stroke-width: 3;
}
body.iootoo-page .chart-insights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.10);
}
body.iootoo-page .chart-insights span {
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 8px;
  background: rgba(255,255,255,.025);
}
body.iootoo-page .chart-insights small {
  display: block;
  margin-bottom: 6px;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  text-transform: uppercase;
}
body.iootoo-page .chart-insights strong {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body .mode-switch {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  line-height: 1.45;
}
body .mode-switch a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(212,166,42,.56);
  border-radius: 8px;
  color: var(--iootoo-gold, #d4a62a);
  background: rgba(0,0,0,.20);
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
  font-weight: 900;
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
}
body .mode-switch a:hover,
body .mode-switch a:focus {
  color: #111;
  background: var(--iootoo-gold, #d4a62a);
}

body .has-crypto-autocomplete {
  position: relative !important;
  overflow: visible !important;
  z-index: 30;
}

body .crypto-autocomplete {
  position: absolute;
  left: 48px;
  right: 8px;
  top: calc(100% + 8px);
  z-index: 80;
  display: grid;
  max-height: 320px;
  overflow: auto;
  border: 1px solid rgba(217, 175, 66, 0.58);
  border-radius: 8px;
  background: #090d10;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

body .crypto-autocomplete button {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: #f5f5f5;
  background: transparent;
  text-align: left;
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
  cursor: pointer;
}

body .crypto-autocomplete button:last-child {
  border-bottom: 0;
}

body .crypto-autocomplete button:hover,
body .crypto-autocomplete button:focus-visible {
  color: #111;
  background: linear-gradient(180deg, #efd369 0%, #d4a62a 100%);
  outline: none;
}

body .crypto-autocomplete strong {
  color: inherit;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .08em;
}

body .crypto-autocomplete span {
  min-width: 0;
  color: inherit !important;
  font-size: 15px !important;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.home-index-page .crypto-autocomplete {
  left: 48px;
  right: 8px;
}

body.radar-page .crypto-autocomplete {
  left: 56px;
  right: 8px;
}

body.iootoo-page.trade-page .crypto-autocomplete {
  right: 312px;
}

@media (max-width: 760px) {
  body .crypto-autocomplete,
  body.home-index-page .crypto-autocomplete,
  body.radar-page .crypto-autocomplete,
  body.iootoo-page.trade-page .crypto-autocomplete {
    left: 16px;
    right: 16px;
  }

  body .crypto-autocomplete button {
    grid-template-columns: 74px minmax(0, 1fr);
    min-height: 50px;
    padding: 0 16px;
  }
}
body.iootoo-page .iootoo-return-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(212,166,42,.56);
  border-radius: 8px;
  color: var(--iootoo-gold, #d4a62a);
  background: rgba(0,0,0,.20);
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
  font-weight: 900;
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
}
body.iootoo-page .iootoo-return-link:hover,
body.iootoo-page .iootoo-return-link:focus {
  color: #111;
  background: var(--iootoo-gold, #d4a62a);
}
body.iootoo-page.contact-result-page .iootoo-page-main {
  min-height: calc(100vh - 80px);
  justify-content: center;
  padding-top: 80px;
}
body.iootoo-page.contact-result-page .about-statement {
  text-align: center;
}
body.iootoo-page.contact-result-page .about-statement h2 {
  text-align: center;
}
body.iootoo-page.contact-result-page .contact-result-message span {
  display: block;
}
body.iootoo-page .iootoo-method {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 24px;
}
body.iootoo-page .iootoo-method strong {
  color: var(--iootoo-gold);
  text-transform: uppercase;
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
  font-size: 22px;
  letter-spacing: 0.08em;
}
body.iootoo-page .iootoo-method p {
  margin: 0;
  color: var(--iootoo-text);
}
body.iootoo-page .risk-disclaimer,
body.radar-page .risk-disclaimer,
body.monitoring-page .risk-disclaimer {
  width: min(100%, 1040px);
  margin: 0 auto 28px;
  padding: 18px 22px;
  border: 1px solid rgba(190, 146, 53, 0.58);
  border-radius: 8px;
  background: rgba(8, 11, 13, 0.72);
  color: rgba(255,255,255,0.74);
  font-size: 12px;
  line-height: 1.65;
  text-align: center;
}
body.iootoo-page .auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 540px);
  justify-content: center;
  margin-bottom: 34px;
}

body.monitoring-page .monitoring-main,
body.iootoo-page.indicators-page .iootoo-page-main,
body.iootoo-page.trade-page .iootoo-page-main {
  display: flex;
  flex-direction: column;
}

body.monitoring-page .risk-disclaimer,
body.iootoo-page.indicators-page .risk-disclaimer,
body.iootoo-page.trade-page .risk-disclaimer {
  order: 21;
  margin-top: 12px;
  margin-bottom: 22px;
}

body.monitoring-page .monitoring-method,
body.iootoo-page.indicators-page .iootoo-method,
body.iootoo-page.trade-page .iootoo-method {
  order: 20;
}

body.monitoring-page .monitoring-method {
  margin-top: 14px;
}

body.monitoring-page .risk-disclaimer strong,
body.iootoo-page.indicators-page .risk-disclaimer strong,
body.iootoo-page.trade-page .risk-disclaimer strong {
  font-weight: inherit !important;
}

body.monitoring-page #footer,
body.iootoo-page.indicators-page #footer,
body.iootoo-page.trade-page #footer {
  order: 30;
}
body.iootoo-page .auth-form {
  display: grid;
  gap: 16px;
}
body.iootoo-page .auth-form label {
  display: grid;
  gap: 8px;
  color: #fff;
  font-weight: 700;
}
body.iootoo-page .auth-form input {
  min-height: 46px;
  padding: 0 14px;
}
body.iootoo-page .auth-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 2px;
}
body.iootoo-page .auth-actions a,
body.iootoo-page .auth-switch a {
  color: var(--iootoo-gold);
  text-decoration: none;
}
body.iootoo-page .auth-switch {
  margin: 6px 0 0;
  color: var(--iootoo-muted);
  text-align: center;
}

/* Auth pages aligned with contact design 20260813 */
body.iootoo-page.auth-page .auth-layout {
  grid-template-columns: minmax(0, 920px) !important;
  width: 100% !important;
  margin: 0 auto 34px !important;
}

body.iootoo-page.auth-page .auth-form {
  width: 100% !important;
  padding: 34px 32px !important;
  border: 1px solid var(--iootoo-line) !important;
  border-radius: 8px !important;
  background: linear-gradient(180deg, rgba(22,26,29,.84), rgba(8,11,13,.90)) !important;
  box-shadow: 0 22px 55px rgba(0,0,0,.18) !important;
  gap: 22px !important;
}

body.iootoo-page.auth-page .auth-form h2 {
  margin: 0 0 14px !important;
  color: var(--iootoo-gold) !important;
  font-size: 24px !important;
  line-height: 1.15 !important;
  letter-spacing: .12em !important;
}

body.iootoo-page.auth-page .auth-form label {
  gap: 10px !important;
  color: #fff !important;
  font-size: 17px !important;
  font-weight: 800 !important;
}

body.iootoo-page.auth-page .auth-form input:not([type="checkbox"]) {
  width: 100% !important;
  min-height: 58px !important;
  padding: 0 20px !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  border-radius: 8px !important;
  outline: 0 !important;
  color: #fff !important;
  background: rgba(4, 8, 11, 0.72) !important;
  font-size: 17px !important;
  font-weight: 600 !important;
}

body.iootoo-page.auth-page .auth-form input:not([type="checkbox"])::placeholder {
  color: rgba(255,255,255,.38) !important;
}

body.iootoo-page.auth-page .auth-form input:not([type="checkbox"]):focus {
  border-color: rgba(217,175,66,.72) !important;
  box-shadow: 0 0 0 3px rgba(217,175,66,.10) !important;
}

body.iootoo-page.auth-page .auth-actions {
  gap: 14px !important;
  margin-top: 0 !important;
}

body.iootoo-page.auth-page .check-row {
  display: inline-flex !important;
  grid-template-columns: none !important;
  align-items: center !important;
  gap: 12px !important;
  min-width: 0 !important;
  color: rgba(255,255,255,.72) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
}

body.iootoo-page.auth-page .check-row input[type="checkbox"] {
  width: 28px !important;
  min-width: 28px !important;
  height: 28px !important;
  accent-color: var(--iootoo-gold) !important;
}

body.iootoo-page.auth-page .auth-form button[type="submit"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 58px !important;
  border: 1px solid #efcd66 !important;
  border-radius: 8px !important;
  color: #111318 !important;
  background: linear-gradient(180deg, #efd369 0%, #c99b2a 100%) !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}

body.iootoo-page.auth-page .auth-switch {
  margin-top: 10px !important;
  color: rgba(255,255,255,.62) !important;
  font-size: 16px !important;
}

@media (max-width: 760px) {
  body.iootoo-page.auth-page .auth-layout {
    width: 100% !important;
  }

  body.iootoo-page.auth-page .auth-form {
    padding: 30px 32px !important;
  }
}

@media (max-width: 520px) {
  body.iootoo-page.auth-page .auth-form {
    padding: 28px 30px !important;
  }

  body.iootoo-page.auth-page .auth-actions {
    align-items: flex-start !important;
    flex-direction: column !important;
  }

  body.iootoo-page.auth-page .auth-actions a {
    align-self: flex-start !important;
  }
}

body.iootoo-page .contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 920px);
  justify-content: center;
  gap: 24px;
  margin-bottom: 34px;
}
body.iootoo-page .contact-form {
  display: grid;
  gap: 18px;
}
body.iootoo-page .contact-form .hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
body.iootoo-page .contact-form label {
  display: grid;
  gap: 8px;
  color: white;
  font-weight: 700;
}
body.iootoo-page .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
body.iootoo-page .contact-form input,
body.iootoo-page .contact-form select {
  min-height: 42px;
  padding: 0 14px;
}
body.iootoo-page .contact-form textarea {
  min-height: 96px;
  padding: 14px;
  resize: vertical;
}
body.iootoo-page .check-row {
  display: flex !important;
  grid-template-columns: none !important;
  flex-direction: row;
  align-items: center;
  font-weight: 500 !important;
  color: var(--iootoo-muted) !important;
}
body.iootoo-page .check-row input {
  width: 20px;
  min-height: 20px;
}
body.iootoo-page .contact-values div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
body.iootoo-page .contact-values span {
  min-height: 112px;
  display: grid;
  place-items: center;
  text-align: center;
  border-right: 1px solid var(--iootoo-soft-line);
}
body.iootoo-page details summary {
  cursor: pointer;
  min-height: 38px;
}
body.iootoo-page details p {
  color: var(--iootoo-muted);
}
@media (max-width: 960px) {
  body.iootoo-page .iootoo-page-main {
    width: min(100% - 24px, 1240px);
    padding-top: 34px;
  }
  body.iootoo-page .iootoo-search,
  body.iootoo-page .asset-panel,
  body.iootoo-page .contact-layout,
  body.iootoo-page .iootoo-method,
  body.iootoo-page .form-grid {
    grid-template-columns: 1fr;
  }
  body.iootoo-page .iootoo-grid-2,
  body.iootoo-page .iootoo-grid-3,
  body.iootoo-page .chart-row {
    grid-template-columns: 1fr;
  }
  body.iootoo-page .metric-strip,
  body.iootoo-page .quick-grid,
  body.iootoo-page .chart-insights,
  body.iootoo-page .contact-values div {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  body.iootoo-page .iootoo-hero h1 {
    font-size: 42px;
  }
  body.iootoo-page .metric-strip,
  body.iootoo-page .quick-grid,
  body.iootoo-page .chart-insights,
  body.iootoo-page .contact-values div {
    grid-template-columns: 1fr;
  }
  body.iootoo-page .iootoo-search {
    padding: 10px;
  }
}
/* IOOTOO TITLE SCALE 20260811 */
body.radar-page .radar-title,
body.monitoring-page .monitoring-title,
body.iootoo-page .iootoo-hero h1 {
  font-size: clamp(34px, 4.2vw, 56px) !important;
  line-height: 1 !important;
  letter-spacing: 0.04em !important;
}

@media (max-width: 560px) {
  body.radar-page .radar-title,
  body.monitoring-page .monitoring-title,
  body.iootoo-page .iootoo-hero h1 {
    font-size: 36px !important;
  }
}
/* IOOTOO BACKGROUND TITLE ALIGN 20260811 */
body.iootoo-page {
  background-color: #0b0f13 !important;
  background-image: url("../img/wallpaper.png") !important;
  background-size: cover !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
}

body.iootoo-page .iootoo-page-main {
  padding-top: 42px !important;
}

body.iootoo-page .iootoo-hero {
  margin-bottom: 24px !important;
}

body.iootoo-page.about-page .iootoo-hero,
body.iootoo-page.contact-page .iootoo-hero {
  min-height: 118px !important;
}

body.radar-page .radar-title,
body.monitoring-page .monitoring-title,
body.iootoo-page .iootoo-hero h1 {
  font-size: clamp(28px, 3.2vw, 44px) !important;
  line-height: 1.02 !important;
  letter-spacing: 0.045em !important;
}

body.iootoo-page .iootoo-hero h1 {
  margin-top: 0 !important;
  margin-bottom: 12px !important;
}

body.radar-page .radar-hero,
body.monitoring-page .monitoring-hero,
body.iootoo-page .iootoo-hero {
  padding-top: 0 !important;
}

@media (max-width: 560px) {
  body.radar-page .radar-title,
  body.monitoring-page .monitoring-title,
  body.iootoo-page .iootoo-hero h1 {
    font-size: 30px !important;
  }

  body.iootoo-page .iootoo-page-main {
    padding-top: 30px !important;
  }
}
/* IOOTOO ALL TITLES MATCH 20260811 */
body.radar-page .radar-main,
body.monitoring-page .monitoring-main,
body.iootoo-page .iootoo-page-main {
  padding-top: 42px !important;
}

body.radar-page .radar-hero,
body.monitoring-page .monitoring-hero,
body.iootoo-page .iootoo-hero {
  min-height: 118px !important;
  margin-top: 0 !important;
  margin-bottom: 24px !important;
  padding-top: 0 !important;
  text-align: center !important;
}

body.radar-page .radar-title,
body.monitoring-page .monitoring-title,
body.iootoo-page .iootoo-hero h1 {
  margin: 0 0 12px !important;
  padding: 0 !important;
  color: #f2cf56 !important;
  -webkit-text-fill-color: #f2cf56 !important;
  background: none !important;
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
  font-size: clamp(26px, 3vw, 40px) !important;
  font-weight: 700 !important;
  line-height: 1.04 !important;
  letter-spacing: 0.045em !important;
  text-transform: uppercase !important;
  text-shadow: 0 8px 28px rgba(212, 166, 42, 0.24) !important;
}

body.radar-page .radar-subtitle,
body.monitoring-page .monitoring-subtitle,
body.iootoo-page .iootoo-hero p {
  margin-top: 0 !important;
  color: rgba(255,255,255,0.72) !important;
}

@media (max-width: 560px) {
  body.radar-page .radar-main,
  body.monitoring-page .monitoring-main,
  body.iootoo-page .iootoo-page-main {
    padding-top: 30px !important;
  }

  body.radar-page .radar-title,
  body.monitoring-page .monitoring-title,
  body.iootoo-page .iootoo-hero h1 {
    font-size: 28px !important;
  }
}
/* IOOTOO GLOBAL FONT 20260811 */
html body,
html body *:not(svg):not(path):not(circle):not(line):not(polyline):not(rect) {
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
}

html body {
  font-weight: 600 !important;
}

html body p,
html body li,
html body input,
html body select,
html body textarea,
html body small,
html body span {
  font-weight: 500 !important;
}

html body h1,
html body h2,
html body h3,
html body h4,
html body h5,
html body h6,
html body strong,
html body b,
html body label,
html body button,
html body .desktop-nav a,
html body .mobile-nav-panel a,
html body .language-picker span,
html body .language-menu span {
  font-weight: 700 !important;
}

html body button,
html body .desktop-nav a,
html body .mobile-nav-panel a,
html body .language-picker span,
html body .language-menu span {
  letter-spacing: 0.035em !important;
}

html body input,
html body select,
html body textarea {
  letter-spacing: 0.01em !important;
}

/* IOOTOO TYPOGRAPHY SYSTEM 20260811 */
html body {
  --brand-gold: #d9af42;
  --brand-gold-light: #f0d06d;
  --brand-gold-dark: #b88624;
  --type-page-title: 42px;
  --type-section-title: 22px;
  --type-card-title: 20px;
  --type-subtitle: 17px;
  --type-body: 16px;
  --type-small: 14px;
  --type-micro: 12px;
  --type-button: 14px;
  --type-metric: 24px;
  --type-asset-title: 32px;
}

html body {
  font-size: var(--type-body) !important;
  line-height: 1.55 !important;
}

body.home-index-page .hero-content h1,
body.radar-page .radar-title,
body.monitoring-page .monitoring-title,
body.iootoo-page .iootoo-hero h1,
body.legal-page .legal-title,
body.contact-page .contact-title {
  font-size: var(--type-page-title) !important;
  line-height: 1.04 !important;
  letter-spacing: 0.045em !important;
}

body.home-index-page .hero-copy,
body.radar-page .radar-subtitle,
body.monitoring-page .monitoring-subtitle,
body.iootoo-page .iootoo-hero p,
.contact-intro {
  font-size: var(--type-subtitle) !important;
  line-height: 1.55 !important;
}

body.home-index-page .section-heading h2,
body.iootoo-page .iootoo-panel h2,
body.iootoo-page.about-page .about-statement h2,
body.iootoo-page .iootoo-method strong,
body.monitoring-page .monitoring-card h2,
body.monitoring-page .monitoring-method strong,
body.radar-page .radar-card-title,
body.radar-page .method-title,
.legal-section h2,
body.iootoo-page .auth-form h2,
body.iootoo-page .contact-form h2 {
  font-size: var(--type-section-title) !important;
  line-height: 1.16 !important;
  letter-spacing: 0.08em !important;
}

body.iootoo-page .asset-content h2,
body.radar-page .asset-symbol-line,
body.radar-page .asset-symbol {
  font-size: var(--type-asset-title) !important;
  line-height: 1.08 !important;
}

body p,
body li,
body .method-text,
body .monitoring-method p,
body.iootoo-page.about-page .about-statement p,
body.iootoo-page .iootoo-method p,
.legal-section p,
.legal-section li,
body.iootoo-page .contact-form label,
body.iootoo-page .auth-form label {
  font-size: var(--type-body) !important;
  line-height: 1.6 !important;
}

body small,
body .iootoo-muted,
body .detail-key,
body .monitoring-stat-label,
body .monitoring-card-head span,
body .quick-label,
body .metric-label,
body .site-footer-copy,
body .risk-disclaimer,
body .legal-updated {
  font-size: var(--type-small) !important;
  line-height: 1.5 !important;
}

body .crypto-example,
body .crypto-examples-label,
body .category,
body .quick-grid small,
body .metric-strip small,
body .monitoring-link,
body .monitoring-alert-row code,
body .monitoring-tx-row code {
  font-size: var(--type-micro) !important;
  line-height: 1.35 !important;
}

body button,
body input,
body select,
body textarea,
body .desktop-nav a,
body .mobile-nav-panel a,
body .language-picker span,
body .language-menu span {
  font-size: var(--type-button) !important;
  line-height: 1.2 !important;
}

body .metric-value,
body .detail-value,
body .asset-stat strong,
body .quick-value,
body .quick-grid strong,
body .metric-strip strong,
body.monitoring-page .monitoring-stat strong {
  font-size: var(--type-metric) !important;
  line-height: 1.1 !important;
}

@media (max-width: 560px) {
  html body {
    --type-page-title: 34px;
    --type-section-title: 20px;
    --type-card-title: 18px;
    --type-subtitle: 15px;
    --type-body: 15px;
    --type-small: 13px;
    --type-micro: 12px;
    --type-button: 13px;
    --type-metric: 22px;
    --type-asset-title: 28px;
  }
}

/* IOOTOO GOLD SYSTEM 20260811 */
body.home-index-page,
body.monitoring-page,
body.iootoo-page,
body.radar-page {
  --iootoo-gold: var(--brand-gold) !important;
  --iootoo-gold-2: var(--brand-gold-light) !important;
  --iootoo-gold-soft: var(--brand-gold-light) !important;
  --monitor-gold: var(--brand-gold) !important;
  --monitor-gold-2: var(--brand-gold-light) !important;
  --radar-gold: var(--brand-gold) !important;
}

body.home-index-page .hero-content h1,
body.home-index-page .section-heading > span,
body.home-index-page .section-heading h2,
body.home-index-page .search-icon,
body.home-index-page .diamond,
body.radar-page .radar-title,
body.radar-page .radar-card-title,
body.radar-page .method-title,
body.monitoring-page .monitoring-title,
body.monitoring-page .monitoring-stat-icon,
body.monitoring-page .monitoring-card h2,
body.monitoring-page .monitoring-method strong,
body.monitoring-page .monitoring-method-icon,
body.iootoo-page .iootoo-hero h1,
body.iootoo-page .iootoo-panel h2,
body.iootoo-page .asset-content h2 span,
body.iootoo-page .iootoo-method strong,
body.iootoo-page .auth-actions a,
body.iootoo-page .auth-switch a,
body.legal-page .legal-title,
body.contact-page .contact-title {
  color: var(--brand-gold) !important;
  -webkit-text-fill-color: var(--brand-gold) !important;
}

body.home-index-page .search-box button,
body.home-index-page .crypto-example:hover,
body.home-index-page .crypto-example:focus-visible,
body.iootoo-page button,
body.iootoo-page .contact-form button,
body.iootoo-page .asset-badge,
body.monitoring-page .monitoring-primary,
body.monitoring-page .monitoring-avatar {
  background: linear-gradient(180deg, var(--brand-gold-light), var(--brand-gold-dark)) !important;
}

/* Radar security checklist 20260812 */
body.radar-page .security-card .detail-row.security-status-row {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center !important;
  justify-content: flex-start !important;
  min-height: 42px !important;
}

body.radar-page .security-card .security-status-row .detail-key {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  color: rgba(255,255,255,.88) !important;
  font-size: 16px !important;
  line-height: 1.25 !important;
}

body.radar-page .security-card .detail-check {
  display: inline-grid !important;
  place-items: center !important;
  width: 18px !important;
  min-width: 18px !important;
  height: 18px !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

body.radar-page .security-card .security-ok .detail-check {
  color: #79d45c !important;
}

body.radar-page .security-card .security-watch .detail-check,
body.radar-page .security-card .security-danger .detail-check {
  color: #ff414f !important;
}

body.radar-page .security-card .security-muted .detail-check {
  color: rgba(255,255,255,.40) !important;
}

/* Monitoring portfolio layout fixes 20260811 */
body.monitoring-page .monitoring-command {
  grid-template-columns: minmax(0, 1fr) 150px !important;
}

body.monitoring-page .monitoring-builder {
  width: min(100%, 1240px);
  margin: 0 auto 18px;
  padding: 14px;
  border: 1px solid var(--monitor-border);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(22,26,29,.84), rgba(8,11,13,.90));
  box-shadow: 0 22px 55px rgba(0,0,0,.18);
}

body.monitoring-page .monitoring-builder-head,
body.monitoring-page .monitoring-asset-row {
  display: grid;
  grid-template-columns: 190px minmax(220px, 360px) 154px 54px;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

body.monitoring-page .monitoring-builder-head {
  margin: 0 0 8px;
  color: var(--monitor-gold);
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
}

body.monitoring-page .monitoring-asset-rows {
  display: grid;
  gap: 8px;
}

body.monitoring-page .monitoring-asset-row input,
body.monitoring-page .monitoring-currency summary {
  width: 100%;
  height: 44px;
  min-width: 0;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  outline: 0;
  color: #fff;
  background: rgba(0,0,0,.24);
  font: 800 15px "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
}

body.monitoring-page .monitoring-asset-row input {
  padding: 0 13px;
}

body.monitoring-page .monitoring-currency {
  position: relative;
}

body.monitoring-page .monitoring-currency summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  list-style: none;
  cursor: pointer;
}

body.monitoring-page .monitoring-currency summary::-webkit-details-marker {
  display: none;
}

body.monitoring-page .monitoring-currency summary::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 18px;
  margin-right: 0;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) translateY(-2px);
}

body.monitoring-page .monitoring-currency[open] summary::after {
  transform: rotate(225deg) translateY(-2px);
}

body.monitoring-page .monitoring-currency div {
  position: absolute;
  z-index: 30;
  top: calc(100% + 4px);
  right: 0;
  left: 0;
  overflow: hidden;
  border: 1px solid rgba(212,166,42,.72);
  border-radius: 8px;
  background: #d4a62a;
  box-shadow: 0 18px 38px rgba(0,0,0,.36);
}

body.monitoring-page .monitoring-currency div button {
  display: block;
  width: 100%;
  height: 34px;
  border: 0;
  border-radius: 0;
  color: #101214;
  background: #d4a62a;
  text-align: left;
  padding: 0 14px;
  font-size: 15px;
}

body.monitoring-page .monitoring-currency div button:hover,
body.monitoring-page .monitoring-currency div button:focus {
  color: #101214;
  background: #f1d264;
}

body.monitoring-page .monitoring-asset-row button,
body.monitoring-page .monitoring-secondary {
  height: 44px;
  border: 1px solid rgba(212,166,42,.52);
  border-radius: 8px;
  color: var(--monitor-gold);
  background: rgba(0,0,0,.22);
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

body.monitoring-page .monitoring-asset-row button[data-monitoring-remove] {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: transparent;
  font-size: 0;
  font-weight: 900;
  line-height: 1;
  padding: 0;
}

body.monitoring-page .monitoring-asset-row button[data-monitoring-remove]::before,
body.monitoring-page .monitoring-asset-row button[data-monitoring-remove]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 19px;
  height: 3px;
  border-radius: 3px;
  background: var(--monitor-gold);
  transform-origin: center;
}

body.monitoring-page .monitoring-asset-row button[data-monitoring-remove]::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

body.monitoring-page .monitoring-asset-row button[data-monitoring-remove]::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

body.monitoring-page .monitoring-builder-actions {
  display: block;
  max-width: 778px;
  margin-top: 12px;
  margin-right: auto;
  margin-left: auto;
}

body.monitoring-page .monitoring-builder-note {
  margin: 10px 2px 0;
  color: rgba(255,255,255,.64);
  font-size: 13px;
  line-height: 1.45;
}

body.monitoring-page .monitoring-secondary {
  width: 100%;
  font-size: 13px;
}

body.monitoring-page .monitoring-stats {
  grid-template-columns: repeat(6, minmax(180px, 1fr)) !important;
  gap: 14px !important;
}

body.monitoring-page .monitoring-dca {
  width: 100%;
  margin: 0 auto 14px;
  padding: 18px 22px;
  border: 1px solid var(--monitor-border);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(22,26,29,.84), rgba(8,11,13,.90));
  box-shadow: 0 22px 55px rgba(0,0,0,.18);
}

body.monitoring-page .monitoring-dca h2 {
  margin: 0;
  color: var(--monitor-gold);
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

body.monitoring-page .monitoring-dca-intro {
  max-width: 980px;
  margin: 0 0 16px;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.55;
}

body.monitoring-page .monitoring-dca-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

body.monitoring-page .monitoring-dca-amount,
body.monitoring-page .monitoring-dca-targets label {
  display: grid;
  gap: 7px;
}

body.monitoring-page .monitoring-dca-amount span,
body.monitoring-page .monitoring-dca-targets span {
  color: var(--monitor-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.monitoring-page .monitoring-dca input {
  width: 100%;
  height: 42px;
  min-width: 0;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  outline: 0;
  color: #fff;
  background: rgba(0,0,0,.24);
  padding: 0 12px;
  font: 800 15px "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
}

body.monitoring-page .monitoring-dca-targets {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 12px;
}

body.monitoring-page .monitoring-dca-results {
  margin-top: 14px;
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 12px;
}

body.monitoring-page .monitoring-dca-results .monitoring-dca-result-head,
body.monitoring-page .monitoring-dca-results > div:not(.monitoring-dca-result-head) {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 7px 0;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

body.monitoring-page .monitoring-dca-results .monitoring-dca-result-head {
  color: var(--monitor-gold);
  text-transform: uppercase;
  letter-spacing: .08em;
}

body.monitoring-page .monitoring-dca-results p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.45;
}

body.monitoring-page .monitoring-stat {
  min-width: 0 !important;
  min-height: 132px !important;
  padding: 16px 15px !important;
}

body.monitoring-page .monitoring-stat-icon {
  margin-bottom: 10px !important;
}

body.monitoring-page .monitoring-stat-label {
  display: block !important;
  max-width: 100% !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

body.monitoring-page .monitoring-alert-row,
body.monitoring-page .monitoring-wallet-row,
body.monitoring-page .monitoring-tx-row,
body.monitoring-page .monitoring-event-row {
  min-width: 0 !important;
  column-gap: 14px !important;
  font-size: 13px !important;
  min-height: 34px !important;
  padding: 6px 0 !important;
}

body.monitoring-page .monitoring-alert-row {
  grid-template-columns: 16px 118px minmax(240px, 1fr) 86px 72px !important;
}

body.monitoring-page .monitoring-wallet-row {
  grid-template-columns: 28px 52px minmax(100px, 1fr) 54px 72px !important;
}

body.monitoring-page .monitoring-tx-row {
  grid-template-columns: 16px 72px 20px minmax(120px, 1fr) 82px 82px !important;
}

body.monitoring-page .monitoring-event-row {
  grid-template-columns: 16px minmax(140px, 1fr) 70px 96px !important;
}

body.monitoring-page .monitoring-card {
  padding: 15px 16px !important;
}

body.monitoring-page .monitoring-card-chart {
  width: 100% !important;
}

body.monitoring-page .monitoring-summary {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

body.monitoring-page .risk-disclaimer {
  width: 100% !important;
  max-width: none !important;
}

body.monitoring-page .monitoring-card-head {
  margin-bottom: 10px !important;
}

body.monitoring-page .monitoring-link {
  margin-top: 10px !important;
  padding-top: 10px !important;
}

body.monitoring-page .monitoring-alert-row > *,
body.monitoring-page .monitoring-wallet-row > *,
body.monitoring-page .monitoring-tx-row > *,
body.monitoring-page .monitoring-event-row > * {
  min-width: 0 !important;
}

body.monitoring-page .monitoring-alert-row span:nth-child(3),
body.monitoring-page .monitoring-wallet-row small,
body.monitoring-page .monitoring-tx-row strong,
body.monitoring-page .monitoring-event-row strong {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

body.monitoring-page .monitoring-alert-row span:nth-child(3) b {
  color: #fff !important;
  font-weight: 900 !important;
}

body.monitoring-page .monitoring-wallet-row small {
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(255,255,255,.70) !important;
}

body.monitoring-page .monitoring-alert-row time,
body.monitoring-page .monitoring-tx-row time,
body.monitoring-page .monitoring-event-row time {
  white-space: normal !important;
  line-height: 1.25 !important;
}

@media (max-width: 1180px) {
  body.monitoring-page .monitoring-stats {
    grid-template-columns: repeat(3, minmax(180px, 1fr)) !important;
  }

  body.monitoring-page .monitoring-grid {
    grid-template-columns: 1fr !important;
  }

  body.monitoring-page .monitoring-summary {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 760px) {
  body.monitoring-page .monitoring-builder-head {
    display: none !important;
  }

  body.monitoring-page .monitoring-builder {
    width: min(100% - 28px, 560px) !important;
    padding: 12px !important;
  }

  body.monitoring-page .monitoring-asset-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 48px !important;
    grid-template-areas:
      "asset value value"
      "currency currency remove" !important;
    gap: 8px !important;
    justify-content: stretch !important;
    padding-bottom: 12px !important;
    border-bottom: 1px solid rgba(255,255,255,.08) !important;
  }

  body.monitoring-page .monitoring-asset-row input[data-monitoring-symbol] {
    grid-area: asset !important;
  }

  body.monitoring-page .monitoring-asset-row input[data-monitoring-value] {
    grid-area: value !important;
  }

  body.monitoring-page .monitoring-asset-row .monitoring-currency {
    grid-area: currency !important;
  }

  body.monitoring-page .monitoring-asset-row button[data-monitoring-remove] {
    grid-area: remove !important;
    width: 48px !important;
    min-width: 48px !important;
    height: 44px !important;
  }

  body.monitoring-page .monitoring-asset-row input,
  body.monitoring-page .monitoring-currency summary {
    height: 44px !important;
    font-size: 16px !important;
  }

  body.monitoring-page .monitoring-currency div {
    right: 0 !important;
    left: 0 !important;
  }

  body.monitoring-page .monitoring-builder-actions {
    grid-template-columns: 1fr !important;
    max-width: none !important;
  }

  body.monitoring-page .monitoring-builder-note {
    text-align: center !important;
  }

  body.monitoring-page .monitoring-alert-row {
    grid-template-columns: 92px minmax(0, 1fr) !important;
    grid-template-areas:
      "tag text"
      "tag meta" !important;
    align-items: center !important;
    gap: 6px 10px !important;
    min-height: auto !important;
    padding: 12px 0 !important;
  }

  body.monitoring-page .monitoring-alert-row .monitoring-dot {
    display: none !important;
  }

  body.monitoring-page .monitoring-alert-row strong {
    grid-area: tag !important;
    justify-self: stretch !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 42px !important;
    padding: 5px 7px !important;
    text-align: center !important;
    white-space: normal !important;
    line-height: 1.05 !important;
  }

  body.monitoring-page .monitoring-alert-row span:nth-child(3) {
    grid-area: text !important;
    overflow: hidden !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  body.monitoring-page .monitoring-alert-row time {
    grid-area: meta !important;
    align-self: start !important;
    color: rgba(255,255,255,.56) !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
  }

  body.monitoring-page .monitoring-alert-row em {
    display: none !important;
  }
}

body.iootoo-page.trade-page .iootoo-page-main {
  max-width: 1240px;
}

body.iootoo-page.trade-page .trade-search {
  max-width: 980px;
}

body.iootoo-page.trade-page .trade-timeframes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

body.iootoo-page.trade-page .trade-timeframes span {
  min-height: 92px;
  padding: 16px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.025);
}

body.iootoo-page.trade-page .trade-timeframes small {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,.60);
  font-size: 12px;
  text-transform: uppercase;
}

body.iootoo-page.trade-page .trade-timeframes strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 22px;
  line-height: 1.1;
}

body.iootoo-page.trade-page .trade-timeframes em {
  font-style: normal;
}

body.iootoo-page.trade-page .trade-chart {
  min-height: 190px;
}

@media (max-width: 760px) {
  body.iootoo-page.trade-page .trade-timeframes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Trade mobile search 20260813 */
@media (max-width: 760px) {
  body.iootoo-page.trade-page .trade-search {
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) minmax(112px, 36%) !important;
    grid-template-areas:
      "icon base quote"
      "button button button" !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px !important;
  }

  body.iootoo-page.trade-page .trade-search > span {
    grid-area: icon !important;
    display: grid !important;
    place-items: center !important;
    width: 42px !important;
    min-width: 42px !important;
    height: 48px !important;
    font-size: 24px !important;
  }

  body.iootoo-page.trade-page .trade-search input[data-trade-base-input] {
    grid-area: base !important;
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 48px !important;
    padding: 0 14px !important;
    border: 1px solid rgba(255,255,255,.13) !important;
    border-radius: 8px !important;
    color: #fff !important;
    background: rgba(0,0,0,.24) !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
  }

  body.iootoo-page.trade-page .trade-quote-menu {
    grid-area: quote !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  body.iootoo-page.trade-page .trade-quote-menu summary {
    height: 48px !important;
    min-height: 48px !important;
    padding: 0 14px !important;
    font-size: 17px !important;
  }

  body.iootoo-page.trade-page .trade-search button[type="submit"] {
    grid-area: button !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 52px !important;
  }
}

@media (max-width: 420px) {
  body.iootoo-page.trade-page .trade-search {
    grid-template-columns: 36px minmax(0, 1fr) minmax(96px, 34%) !important;
    gap: 8px !important;
    padding: 8px !important;
  }

  body.iootoo-page.trade-page .trade-search > span {
    width: 36px !important;
    min-width: 36px !important;
  }

  body.iootoo-page.trade-page .trade-search input[data-trade-base-input],
  body.iootoo-page.trade-page .trade-quote-menu summary {
    font-size: 15px !important;
  }
}

/* Trade horizon spacing 20260813 */
body.iootoo-page.trade-page .trade-timeframes {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(86px, 1fr)) !important;
  gap: 12px !important;
  align-items: stretch !important;
}

body.iootoo-page.trade-page .trade-timeframes span {
  display: grid !important;
  align-content: center !important;
  justify-items: center !important;
  min-height: 116px !important;
  padding: 16px 12px !important;
  text-align: center !important;
}

body.iootoo-page.trade-page .trade-timeframes small,
body.iootoo-page.trade-page .trade-timeframes strong,
body.iootoo-page.trade-page .trade-timeframes em {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
}

body.iootoo-page.trade-page .trade-timeframes strong {
  margin: 8px 0 4px !important;
  font-size: 22px !important;
  line-height: 1 !important;
}

@media (max-width: 760px) {
  body.iootoo-page.trade-page .trade-timeframes {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  body.iootoo-page.trade-page .trade-timeframes span {
    min-height: 104px !important;
    padding: 14px 10px !important;
  }
}

/* Monitoring DCA responsive 20260813 */
@media (max-width: 1180px) {
  body.monitoring-page .monitoring-dca-layout {
    grid-template-columns: 1fr !important;
  }

  body.monitoring-page .monitoring-dca-targets {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.monitoring-page .monitoring-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  body.monitoring-page .monitoring-dca {
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding: 15px 16px !important;
  }

  body.monitoring-page .monitoring-dca h2 {
    font-size: 20px !important;
    line-height: 1.08 !important;
  }

  body.monitoring-page .monitoring-dca-targets,
  body.monitoring-page .monitoring-summary {
    grid-template-columns: 1fr !important;
  }

  body.monitoring-page .monitoring-dca-results .monitoring-dca-result-head,
  body.monitoring-page .monitoring-dca-results > div:not(.monitoring-dca-result-head) {
    font-size: 14px !important;
  }
}

/* Monitoring mobile hardening 20260813 */
@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden !important;
  }

  body.monitoring-page .monitoring-main {
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding-right: 18px !important;
    padding-left: 18px !important;
    overflow-x: hidden !important;
  }

  body.monitoring-page .monitoring-builder,
  body.monitoring-page .monitoring-stats,
  body.monitoring-page .monitoring-grid,
  body.monitoring-page .monitoring-card,
  body.monitoring-page .monitoring-method,
  body.monitoring-page .risk-disclaimer {
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  body.monitoring-page .monitoring-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  body.monitoring-page .monitoring-stat {
    min-width: 0 !important;
    overflow: hidden !important;
  }

  body.monitoring-page .monitoring-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 12px !important;
  }

  body.monitoring-page .monitoring-card-head {
    gap: 10px !important;
  }

  body.monitoring-page .monitoring-card h2 {
    min-width: 0 !important;
    overflow: hidden !important;
    font-size: 20px !important;
    line-height: 1.08 !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  body.monitoring-page .monitoring-card-head button,
  body.monitoring-page .monitoring-card-head span {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
  }

  body.monitoring-page .monitoring-wallet-row {
    grid-template-columns: 38px 48px minmax(0, 1fr) 58px 64px !important;
    gap: 8px !important;
  }

  body.monitoring-page .monitoring-tx-row {
    grid-template-columns: 48px 20px minmax(0, 1fr) 64px 72px !important;
    gap: 8px !important;
  }

  body.monitoring-page .monitoring-tx-row .monitoring-dot {
    display: none !important;
  }

  body.monitoring-page .monitoring-event-row {
    grid-template-columns: 12px minmax(0, 1fr) 54px 82px !important;
    gap: 8px !important;
  }

  body.monitoring-page .monitoring-wallet-row small,
  body.monitoring-page .monitoring-tx-row strong,
  body.monitoring-page .monitoring-event-row strong,
  body.monitoring-page .monitoring-tx-row code,
  body.monitoring-page .monitoring-wallet-row strong {
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  body.monitoring-page .monitoring-tx-row time,
  body.monitoring-page .monitoring-event-row time {
    overflow-wrap: anywhere !important;
    white-space: normal !important;
  }
}

@media (max-width: 480px) {
  body.monitoring-page .monitoring-main {
    padding-right: 14px !important;
    padding-left: 14px !important;
  }

  body.monitoring-page .monitoring-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.monitoring-page .monitoring-stat {
    padding: 14px 12px !important;
  }
}

/* Home and trade alignment refinement 20260813 */
body.home-index-page .home-growth {
  width: min(100% - 72px, 1120px) !important;
  margin-right: auto !important;
  margin-left: auto !important;
  text-align: center !important;
}

body.home-index-page .home-growth .section-heading {
  max-width: 820px !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

body.home-index-page .home-growth .growth-grid {
  width: min(100%, 1080px) !important;
  margin-right: auto !important;
  margin-left: auto !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  justify-items: stretch !important;
}

body.home-index-page .home-growth .conversion-card {
  min-height: 138px !important;
  padding: 24px !important;
}

body.iootoo-page.trade-page .iootoo-grid-3 > .iootoo-panel:first-child {
  padding: 24px 22px 26px !important;
}

body.iootoo-page.trade-page .trade-timeframes {
  grid-template-columns: repeat(4, minmax(78px, 1fr)) !important;
  gap: 14px !important;
}

body.iootoo-page.trade-page .trade-timeframes span {
  min-height: 122px !important;
  padding: 18px 10px !important;
}

body.iootoo-page.trade-page .trade-timeframes strong {
  margin: 12px 0 6px !important;
  font-size: 21px !important;
}

@media (max-width: 760px) {
  body.home-index-page .home-growth {
    width: min(100% - 32px, 560px) !important;
  }

  body.home-index-page .home-growth .growth-grid {
    grid-template-columns: 1fr !important;
  }

  body.iootoo-page.trade-page .trade-timeframes {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Indicators mobile search 20260813 */
@media (max-width: 960px) {
  body.iootoo-page.indicators-page .iootoo-search {
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) !important;
    grid-template-areas:
      "icon input"
      "button button" !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px !important;
  }

  body.iootoo-page.indicators-page .iootoo-search > span {
    grid-area: icon !important;
    display: grid !important;
    place-items: center !important;
    width: 42px !important;
    min-width: 42px !important;
    height: 48px !important;
    font-size: 24px !important;
    transform: none !important;
  }

  body.iootoo-page.indicators-page .iootoo-search input {
    grid-area: input !important;
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 48px !important;
    min-height: 48px !important;
    padding: 0 10px 0 0 !important;
    border: 0 !important;
    background: transparent !important;
    font-size: 18px !important;
  }

  body.iootoo-page.indicators-page .iootoo-search button {
    grid-area: button !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 52px !important;
  }
}

@media (max-width: 420px) {
  body.iootoo-page.indicators-page .iootoo-search {
    grid-template-columns: 36px minmax(0, 1fr) !important;
    gap: 8px !important;
    padding: 8px !important;
  }

  body.iootoo-page.indicators-page .iootoo-search > span {
    width: 36px !important;
    min-width: 36px !important;
  }

  body.iootoo-page.indicators-page .iootoo-search input {
    font-size: 16px !important;
  }
}

/* Growth / conversion pages 20260813 */
.home-growth,
.conversion-page .iootoo-page-main {
  width: min(100% - 36px, 1120px);
  margin: 0 auto;
}

.home-growth {
  padding: 36px 0 0;
  text-align: center;
}

.section-kicker {
  color: #d4aa2f;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 24px;
  text-align: center;
}

.section-heading h2,
.conversion-page h2 {
  color: #f0c847;
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: 3px;
  line-height: 1.08;
  text-transform: uppercase;
}

.section-heading p,
.conversion-page .iootoo-hero p,
.conversion-card p,
.pricing-card p,
.guide-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
}

.growth-grid,
.conversion-grid,
.pricing-grid,
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-growth .growth-grid {
  justify-content: center;
}

.conversion-card,
.pricing-card,
.guide-card {
  min-width: 0;
  border: 1px solid rgba(211, 163, 32, 0.72);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(11, 16, 20, 0.96), rgba(17, 23, 28, 0.94));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  padding: 24px;
}

.home-growth .conversion-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 138px;
  text-align: left;
}

.conversion-card h3,
.pricing-card h3,
.guide-card h3 {
  color: #f0c847;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.15;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.conversion-card ul,
.pricing-card ul,
.guide-card ul {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  list-style: none;
}

.conversion-card li,
.pricing-card li,
.guide-card li {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.conversion-card li::before,
.pricing-card li::before,
.guide-card li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  transform: rotate(45deg) translateY(-1px);
  background: #d4aa2f;
}

.pricing-card.featured {
  background: linear-gradient(145deg, rgba(18, 24, 29, 0.98), rgba(9, 13, 17, 0.98));
  border-color: #f0c847;
}

.price-value {
  display: block;
  margin: 12px 0 4px;
  color: #fff;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.price-note {
  color: #75ff57;
  font-size: 15px;
  font-weight: 800;
}

.page-actions,
.home-growth-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.iootoo-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid rgba(211, 163, 32, 0.8);
  border-radius: 8px;
  color: #f0c847;
  background: rgba(6, 10, 14, 0.58);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-decoration: none;
  text-transform: uppercase;
}

.iootoo-link-button.primary {
  color: #07090b;
  background: linear-gradient(180deg, #ffe06d, #c89521);
}

.conversion-page .iootoo-panel {
  margin-top: 24px;
}

.conversion-page .iootoo-method {
  margin-top: 22px;
}

@media (max-width: 920px) {
  .growth-grid,
  .conversion-grid,
  .pricing-grid,
  .guide-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .conversion-card,
  .pricing-card,
  .guide-card {
    padding: 20px;
  }
}

@media (max-width: 560px) {
  .home-growth,
  .conversion-page .iootoo-page-main {
    width: min(100% - 28px, 1120px);
  }

  .section-heading h2,
  .conversion-page h2 {
    font-size: 24px;
    letter-spacing: 2px;
  }

  .section-heading p,
  .conversion-page .iootoo-hero p,
  .conversion-card p,
  .pricing-card p,
  .guide-card p {
    font-size: 17px;
  }

  .page-actions,
  .home-growth-actions {
    flex-direction: column;
  }

  .iootoo-link-button {
    width: 100%;
  }
}

/* Market page */
body.market-page .iootoo-page-main.market-main,
.market-page .market-main {
  width: min(100% - 24px, 1920px);
  max-width: 1920px;
  padding-top: 54px;
}

.market-hero {
  max-width: 980px;
  margin: 0 auto 42px;
  text-align: center;
}

.market-kicker {
  margin: 0 0 10px;
  color: #e0b332;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.market-hero h1 {
  position: relative;
  margin: 0 0 18px;
  color: #e0b332;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: 3px;
  line-height: 1;
  text-transform: uppercase;
}

.market-hero h1::after {
  display: none;
  content: none;
}

.market-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.45;
}

.market-controls {
  width: 100%;
  margin: 0 auto 16px;
}

.market-search {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.market-search span {
  position: absolute;
  left: 18px;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 54px;
  color: #e0b332;
  font-size: 28px;
  pointer-events: none;
}

.market-search input,
.market-search select,
.market-search button,
.market-filter-card input,
.market-filter-card select {
  min-height: 54px;
  border: 1px solid rgba(224, 179, 50, 0.6);
  border-radius: 8px;
  color: #fff;
  background: rgba(2, 8, 12, 0.72);
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.market-search input {
  padding: 0 18px 0 58px;
}

.market-search select,
.market-filter-card select {
  padding: 0 42px 0 16px;
  appearance: auto;
}

.market-search option,
.market-filter-card option {
  color: #080b0e;
  background: #d8ad2b;
  font-weight: 900;
}

.market-search button,
.market-filter-actions button,
.market-tabs button,
.market-pagination button,
.market-action {
  cursor: pointer;
  text-transform: uppercase;
}

.market-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #f2c849;
}

.market-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.market-tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid rgba(224, 179, 50, 0.52);
  border-radius: 999px;
  color: #f5f5f5;
  background: rgba(4, 8, 12, 0.72);
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif;
  font-size: 17px;
  font-weight: 900;
}

.market-tabs button.active {
  color: #080b0e;
  background: linear-gradient(180deg, #ffe16c, #c99624);
}

.market-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  margin-bottom: 64px;
}

.market-table-card {
  margin-top: 0;
  width: 100%;
}

.market-table-card,
.market-filter-card {
  border: 1px solid rgba(224, 179, 50, 0.68);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(18, 22, 25, 0.9), rgba(7, 10, 12, 0.88));
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.28);
}

.market-table-wrap {
  overflow-x: auto;
  padding-bottom: 12px;
}

.market-table {
  width: 100%;
  min-width: 1540px;
  border-collapse: collapse;
  color: #f7f7f7;
  font-size: 13px;
}

.market-table th,
.market-table td {
  padding: 10px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}

.market-table th {
  color: #e0b332;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.7px;
}

.market-table td {
  font-weight: 700;
}

.market-table th:nth-child(1),
.market-table td:nth-child(1) {
  width: 30px;
  text-align: center;
}

.market-table th:nth-child(2),
.market-table td:nth-child(2) {
  width: 44px;
  text-align: center;
}

.market-table th:nth-child(3),
.market-table td:nth-child(3) {
  min-width: 250px;
}

.market-table th:nth-child(16),
.market-table td:nth-child(16) {
  min-width: 94px;
}

.market-favorite-cell span {
  color: rgba(255, 255, 255, 0.34);
  font-size: 17px;
  line-height: 1;
}

.market-asset {
  display: flex;
  gap: 8px;
  align-items: center;
  min-width: 0;
}

.market-asset img,
.market-asset span {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.market-asset span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #080b0e;
  background: linear-gradient(180deg, #ffe16c, #c99624);
  font-weight: 900;
}

.market-asset-name {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 128px;
}

.market-asset-name strong {
  color: #f7f7f7;
  font-size: 14px;
  line-height: 1.16;
  white-space: normal;
}

.market-asset em {
  color: #94a8c6;
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
}

.market-asset a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 56px;
  min-height: 22px;
  margin-left: 4px;
  padding: 0 7px;
  border: 1px solid rgba(224, 179, 50, 0.7);
  border-radius: 999px;
  color: #f2c849;
  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.market-table .positive {
  color: #66f15c;
}

.market-table .negative {
  color: #ff425b;
}

.market-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  min-height: 36px;
  border: 1px solid rgba(224, 179, 50, 0.74);
  border-radius: 7px;
  color: #f2c849;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.market-sparkline {
  display: block;
  width: 86px;
  height: 30px;
}

.market-sparkline polyline {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.market-sparkline.positive polyline {
  stroke: #35d37c;
}

.market-sparkline.negative polyline {
  stroke: #ff425b;
}

.market-pagination {
  display: none;
  justify-content: center;
  gap: 10px;
  padding: 22px;
}

.market-pagination button {
  min-width: 42px;
  min-height: 42px;
  border: 1px solid rgba(224, 179, 50, 0.55);
  border-radius: 7px;
  color: #fff;
  background: rgba(4, 8, 12, 0.7);
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
}

.market-pagination button.active {
  color: #080b0e;
  background: linear-gradient(180deg, #ffe16c, #c99624);
}

.market-filter-card {
  position: static;
  max-width: 650px;
  margin: 0 auto;
  padding: 28px;
  background: linear-gradient(145deg, rgba(18, 22, 25, 0.9), rgba(7, 10, 12, 0.88));
}

.market-filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.market-filter-head h2 {
  margin: 0;
  color: #e0b332;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.market-filter-grid {
  display: grid;
  gap: 14px;
}

.market-filter-row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.market-filter-row > span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 700;
}

.market-strategy-frame {
  margin: -2px 0 2px 208px;
  padding: 12px 14px;
  border: 1px solid rgba(190, 146, 53, 0.42);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(190, 146, 53, 0.08);
}

.market-strategy-frame[hidden] {
  display: none;
}

.market-strategy-frame strong {
  display: block;
  margin-bottom: 8px;
  color: #f4cf58;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.market-strategy-frame dl {
  display: grid;
  gap: 6px;
  margin: 0;
}

.market-strategy-frame div {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr);
  gap: 10px;
}

.market-strategy-frame dt,
.market-strategy-frame dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.25;
}

.market-strategy-frame dt {
  color: rgba(255, 255, 255, 0.62);
}

.market-strategy-frame dd {
  color: #fff;
  font-weight: 800;
}

@media (max-width: 760px) {
  .market-strategy-frame {
    margin-left: 0;
  }

  .market-strategy-frame div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

.market-filter-card input,
.market-filter-card select {
  width: 100%;
  min-height: 40px;
  padding: 0 14px;
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  background: rgba(4, 8, 11, 0.72);
  border-radius: 8px;
  font-size: 16px;
}

.market-filter-range {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 16px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}

.market-filter-range em {
  color: rgba(255, 255, 255, 0.44);
  font-style: normal;
  text-align: center;
}

.market-filter-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin: 28px -28px -28px;
  padding: 18px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.market-filter-actions button {
  min-width: 96px;
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif;
  font-size: 17px;
  font-weight: 900;
}

.market-filter-actions button:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  width: 48px;
  padding: 0;
  border: 1px solid rgba(224, 179, 50, 0.58);
  color: #e0b332 !important;
  background: rgba(4, 8, 11, 0.72) !important;
  box-shadow: none !important;
}

.market-filter-actions button:first-child i {
  display: none;
}

.market-filter-actions button:first-child::before {
  content: "\21bb";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e0b332;
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.market-filter-actions button:last-child {
  min-width: 96px;
  color: #080b0e;
  background: linear-gradient(180deg, #ffe16c, #c99624) !important;
}

.market-page .risk-disclaimer {
  margin: 0 auto 34px !important;
}

/* Button hover polish 20260821 */
html body button,
html body .iootoo-link-button,
html body .market-action,
html body .mode-switch a,
html body .page-actions a,
html body .home-growth-actions a,
html body .crypto-autocomplete button {
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    opacity 160ms ease !important;
}

html body button:hover,
html body button:focus-visible,
html body .iootoo-link-button:hover,
html body .iootoo-link-button:focus-visible,
html body .market-action:hover,
html body .market-action:focus-visible,
html body .mode-switch a:hover,
html body .mode-switch a:focus-visible,
html body .page-actions a:hover,
html body .page-actions a:focus-visible,
html body .home-growth-actions a:hover,
html body .home-growth-actions a:focus-visible {
  transform: translateY(-2px) !important;
  border-color: #f6d66d !important;
  box-shadow:
    0 0 0 1px rgba(246, 214, 109, 0.18),
    0 10px 24px rgba(217, 175, 66, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28) !important;
}

html body button:active,
html body .iootoo-link-button:active,
html body .market-action:active,
html body .mode-switch a:active {
  transform: translateY(0) scale(0.99) !important;
}

html body .market-filter-actions button:first-child:hover,
html body .market-filter-actions button:first-child:focus-visible {
  color: #080b0e !important;
  background: linear-gradient(180deg, #ffe16c, #c99624) !important;
}

html body .market-filter-actions button:first-child:hover::before,
html body .market-filter-actions button:first-child:focus-visible::before {
  color: #080b0e !important;
}

@media (max-width: 1180px) {
  .market-layout {
    grid-template-columns: 1fr;
  }

  .market-filter-card {
    display: block;
  }

  .market-filter-card {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .market-page .market-main {
    width: min(100% - 32px, 680px);
    padding-top: 38px;
  }

  .market-hero {
    text-align: center;
  }

  .market-hero p {
    font-size: 18px;
  }

  .market-search {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(224, 179, 50, 0.56);
    border-radius: 8px;
    background: rgba(4, 8, 12, 0.72);
  }

  .market-search span {
    left: 30px;
    top: 16px;
    width: 34px;
  }

  .market-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .market-tabs button {
    min-width: 0;
    padding: 0 10px;
  }

  .market-table {
    min-width: 0;
  }

  .market-table thead {
    display: none;
  }

  .market-table,
  .market-table tbody,
  .market-table tr,
  .market-table td {
    display: block;
    width: 100%;
  }

  .market-table tr {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .market-table td {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 9px 0;
    border-bottom: 0;
    font-size: 17px;
  }

  .market-table td::before {
    content: attr(data-label);
    color: rgba(255, 255, 255, 0.55);
    font-weight: 800;
  }

  .market-table td.market-favorite-cell {
    display: none;
  }

  .market-table td:nth-child(3)::before {
    display: none;
  }

  .market-asset {
    width: 100%;
    align-items: center;
  }

  .market-asset-name {
    flex: 1 1 auto;
    min-width: 0;
  }

  .market-asset a {
    width: max-content;
    margin-left: auto;
  }

  .market-filter-grid {
    grid-template-columns: 1fr;
  }

  .market-filter-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .market-filter-actions {
    flex-direction: row;
    align-items: center;
  }

  .market-filter-actions button:last-child {
    flex: 1;
  }
}

/* Language switch refinement 20260821 */
html body header.site-header .language-picker img,
html body header.site-header .language-menu img {
  display: none !important;
}

html body header.site-header .language-picker summary::before {
  content: "\f57d";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: #d9af42;
  font-family: "Font Awesome 6 Free";
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

html body header.site-header .language-picker span,
html body header.site-header .language-menu span {
  color: #d9af42 !important;
  -webkit-text-fill-color: #d9af42 !important;
  font-weight: 800 !important;
}

html body header.site-header .language-menu a {
  gap: 0 !important;
}

/* Unified search bars 20260821 */
html body.home-index-page .search-box,
html body.radar-page .radar-search,
html body.iootoo-page .iootoo-search,
html body .market-search {
  display: grid !important;
  grid-template-columns: 42px minmax(0, 1fr) 150px !important;
  align-items: center !important;
  gap: 10px !important;
  width: min(100%, 1040px) !important;
  margin: 0 auto 22px !important;
  padding: 7px 8px 7px 18px !important;
  border: 1px solid rgba(217, 175, 66, 0.55) !important;
  border-radius: 10px !important;
  background: rgba(5, 8, 10, 0.88) !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.035) !important;
}

html body.iootoo-page.trade-page .trade-search {
  grid-template-columns: 42px minmax(0, 1fr) 145px 150px !important;
}

html body.radar-page .radar-search {
  grid-template-columns: minmax(0, 1fr) 150px !important;
}

html body.home-index-page .search-icon,
html body.radar-page .radar-search-icon,
html body.iootoo-page .iootoo-search > span,
html body .market-search > span {
  display: grid !important;
  place-items: center !important;
  width: 42px !important;
  min-width: 42px !important;
  height: 48px !important;
  color: #d9af42 !important;
  font-size: 23px !important;
  line-height: 1 !important;
  transform: none !important;
}

html body.radar-page .radar-search-field {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  min-width: 0 !important;
  padding: 0 !important;
}

html body.home-index-page .search-box input,
html body.radar-page .radar-search input,
html body.iootoo-page .iootoo-search input,
html body .market-search input {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  height: 48px !important;
  min-height: 48px !important;
  padding: 0 10px !important;
  border: 0 !important;
  outline: 0 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: transparent !important;
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
}

html body.home-index-page .search-box input::placeholder,
html body.radar-page .radar-search input::placeholder,
html body.iootoo-page .iootoo-search input::placeholder,
html body .market-search input::placeholder {
  color: rgba(255, 255, 255, 0.46) !important;
  opacity: 1 !important;
}

html body.home-index-page .search-box button,
html body.radar-page .radar-search button,
html body.iootoo-page .iootoo-search button[type="submit"],
html body .market-search button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 150px !important;
  min-width: 150px !important;
  height: 48px !important;
  min-height: 48px !important;
  padding: 0 18px !important;
  border: 1px solid #efcd66 !important;
  border-radius: 8px !important;
  color: #111318 !important;
  -webkit-text-fill-color: #111318 !important;
  background: linear-gradient(180deg, #efd369 0%, #c99b2a 100%) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34), 0 8px 18px rgba(190, 146, 53, 0.16) !important;
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
}

html body.iootoo-page.trade-page .trade-quote-menu summary {
  min-height: 48px !important;
  height: 48px !important;
  border-radius: 8px !important;
  border-color: rgba(217, 175, 66, 0.55) !important;
}

@media (max-width: 760px) {
  html body.home-index-page .search-box,
  html body.radar-page .radar-search,
  html body.iootoo-page .iootoo-search,
  html body .market-search {
    grid-template-columns: 42px minmax(0, 1fr) !important;
    grid-template-areas:
      "icon input"
      "button button" !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px !important;
  }

  html body.iootoo-page.trade-page .trade-search {
    grid-template-columns: 42px minmax(0, 1fr) minmax(112px, 34%) !important;
    grid-template-areas:
      "icon input quote"
      "button button button" !important;
  }

  html body.radar-page .radar-search {
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-areas:
      "input"
      "button" !important;
  }

  html body.home-index-page .search-icon,
  html body.iootoo-page .iootoo-search > span,
  html body .market-search > span {
    grid-area: icon !important;
  }

  html body.radar-page .radar-search-field {
    grid-area: input !important;
  }

  html body.iootoo-page .iootoo-search input,
  html body.home-index-page .search-box input,
  html body .market-search input {
    grid-area: input !important;
    padding: 0 8px !important;
    font-size: 16px !important;
  }

  html body.iootoo-page.trade-page .trade-quote-menu {
    grid-area: quote !important;
  }

  html body.home-index-page .search-box button,
  html body.radar-page .radar-search button,
  html body.iootoo-page .iootoo-search button[type="submit"],
  html body .market-search button {
    grid-area: button !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 52px !important;
  }
}
