/* Mirrors src/page/home/index.vue + global.less (theme-default) */
:root {
  /* Brand blue (header register / CTA — aligned with reference) */
  --primary-color: #0062ff;
  --primary-color-85: rgba(0, 98, 255, 0.88);
  --primary-hover: #1380ff;
  --background-primary-color: var(--primary-color);
  --font-primary-color: var(--primary-color);
  --up-color: #2eaf70;
  --down-color: #e34949;
}

.theme-default {
  --primary-color: #0062ff;
  --primary-color-85: rgba(0, 98, 255, 0.88);
  --primary-hover: #1380ff;
  --background-primary-color: var(--primary-color);
  --font-primary-color: var(--primary-color);
  --up-color: #2eaf70;
  --down-color: #e34949;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial,
    "PingFang SC", "Microsoft YaHei", sans-serif;
  background: #fff;
  color: #04091a;
}

body.homeBg {
  background: #fff;
}

.maxWidth {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

/* —— Global header (mirrors GlobalHeader.vue + .homeBg .header_page) —— */
.homeBg .header_page {
  background: #000000 !important;
  position: sticky;
  top: 0;
  z-index: 3000;
  width: 100%;
  box-sizing: border-box;
  transition: background 0.6s;
}
.header_page .header-wrap {
  height: 60px;
  width: 100%;
  font-size: 14px;
  color: #73799a;
  background: transparent;
  box-sizing: border-box;
}
.header_page .header-wrap .container {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  gap: 24px;
}
.homeBg .header_page .container .left-content a.logo-wrap {
  color: #ffffff;
}
/* .nav-item sits under .header-desktop-nav, not direct child of .left-content */
.homeBg .header_page .container .left-content .nav-item,
.homeBg .header_page .container .left-content .nav-item .nav-label {
  color: #ffffff !important;
}
.homeBg .header_page .container .left-content .nav-item:hover .nav-label {
  color: var(--font-primary-color) !important;
}
.left-content {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  gap: 4px;
}
.header-desktop-nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  min-width: 0;
}
.left-content .logo {
  height: 24px;
  flex-shrink: 0;
  display: block;
}
.logo-wrap {
  margin: 0 6px;
  flex-shrink: 0;
}
.nav-item {
  white-space: nowrap;
  line-height: normal;
  height: 60px;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #222533;
  padding: 0 6px;
  margin: 0 6px;
  cursor: pointer;
  position: relative;
}
.nav-item > span.nav-label {
  user-select: none;
}
.nav-item:hover > .nav-label {
  color: var(--font-primary-color);
}
.nav-item.more {
  padding-right: 16px;
  background: url("assets/imgsV1/icon-select.png") right center / 16px no-repeat;
}
.nav-item.more:hover ul.hdr-dd {
  visibility: visible;
  opacity: 1;
  top: 80%;
}
.hdr-dd {
  min-width: 220px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.08);
  position: absolute;
  left: 8px;
  padding: 10px 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  top: 100%;
  z-index: 4000;
  list-style: none;
  margin: 0;
}
.hdr-dd li {
  padding: 0;
}
.hdr-dd a.dd-row {
  display: block;
  padding: 12px 12px 12px 56px;
  position: relative;
  text-decoration: none;
  color: inherit;
  margin: 0;
}
.hdr-dd a.dd-row:hover {
  background: #f8fbff;
}
.hdr-dd a.dd-row > img.dd-ico {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.hdr-dd .dd-title {
  font-size: 14px;
  font-weight: 500;
  color: #1c1c1e;
  line-height: 20px;
}
.hdr-dd .dd-intro {
  color: #5e697b;
  font-size: 12px;
  line-height: 16px;
  margin: 4px 0 0;
}
.right-content {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  flex-shrink: 0;
  user-select: none;
  gap: 4px;
  margin-left: auto;
}
.login-register-wrap {
  white-space: nowrap;
  padding-right: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.login-register-wrap button {
  display: inline-block;
  text-align: center;
  border-radius: 5px;
  background: transparent;
  padding: 0 16px;
  height: 32px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.85);
  line-height: 22px;
  min-width: 60px;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
}
.login-register-wrap button:hover,
.login-register-wrap button.active {
  background: var(--background-primary-color);
  border-color: var(--border-primary-color, var(--primary-color));
  color: #fff;
}
/* Home black header: login = plain text; register = solid primary (match production) */
.homeBg .header_page .login-register-wrap #btn-login {
  color: #ffffff;
  background: transparent;
  border: none;
}
.homeBg .header_page .login-register-wrap #btn-login:hover {
  background: var(--background-primary-color);
  color: #fff;
}
.homeBg .header_page .login-register-wrap #btn-reg {
  background: var(--background-primary-color);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: 500;
}
.homeBg .header_page .login-register-wrap #btn-reg:hover {
  background: var(--primary-hover);
  color: #fff;
}
.download-tip {
  position: relative;
  z-index: 999;
}
.download-txt {
  display: flex;
  align-items: center;
  height: 60px;
  padding: 0 8px;
  margin: 0;
  cursor: pointer;
  text-decoration: none;
}
.download-txt .icon {
  width: 22px;
  height: 22px;
  background: url("assets/imgsV2/download1@2x.png") no-repeat center center;
  background-size: auto 22px;
}
/* White outline: arrow into tray (matches production header) */
.homeBg .header_page .download-txt .icon {
  filter: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 4v9'/%3E%3Cpath d='m8 10 4 4 4-4'/%3E%3Cpath d='M5 20h14'/%3E%3Cpath d='M8 20v-2h8v2'/%3E%3C/svg%3E");
  background-size: 22px 22px;
}
.lang-panel-wrap {
  position: relative;
  margin: 0 0 0 4px;
}
.lang-opts {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0 8px;
  height: 60px;
  border: none;
  background: transparent;
}
.lang-opts .icon {
  width: 22px;
  height: 22px;
  background: url("assets/imgsV1/language1@2x.png") no-repeat center center;
  background-size: auto 22px;
}
/* White outline globe (stroke only — matches reference) */
.homeBg .header_page .lang-opts .icon {
  filter: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18'/%3E%3Cpath d='M12 3c2.8 3.4 4.5 7.2 4.5 9s-1.7 5.6-4.5 9'/%3E%3Cpath d='M12 3c-2.8 3.4-4.5 7.2-4.5 9s1.7 5.6 4.5 9'/%3E%3Cellipse cx='12' cy='12' rx='9' ry='3.5'/%3E%3C/svg%3E");
  background-size: 22px 22px;
}
.lang-dropdown {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 4px;
  min-width: 220px;
  max-height: min(70vh, 420px);
  overflow-y: auto;
  background: #fff;
  border: 1px solid #d0d3dc;
  border-radius: 6px;
  box-shadow: 0 5px 23px rgba(0, 0, 0, 0.11);
  padding: 6px 0;
  list-style: none;
  margin: 0;
  z-index: 5000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.lang-dropdown.is-open {
  visibility: visible;
  opacity: 1;
}
.lang-dropdown li button.lang-item-btn {
  display: flex;
  align-items: center;
  width: 100%;
  border: none;
  background: none;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  cursor: pointer;
  text-align: left;
  gap: 10px;
}
.lang-dropdown li button.lang-item-btn:hover {
  background: #f0f7ff;
  color: var(--primary-color);
}
.lang-dropdown li button.lang-item-btn.is-active {
  background: #f0f7ff;
  color: var(--primary-color);
}
.lang-flag-img {
  width: 28px;
  height: auto;
  display: block;
  flex-shrink: 0;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}
.lang-item-label {
  flex: 1;
  min-width: 0;
  line-height: 1.35;
}
.header-mob-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .header-desktop-nav {
    display: none !important;
  }
  .login-register-wrap,
  .download-tip {
    display: none !important;
  }
  .header-mob-only {
    display: flex !important;
    align-items: center;
    gap: 8px;
  }
  .hamburger {
    width: 44px;
    height: 44px;
    padding: 10px;
    border: none;
    background: transparent;
    cursor: pointer;
  }
  .hamburger .line {
    display: block;
    width: 22px;
    height: 2px;
    background: #f3f3f3;
    margin: 4px auto;
    border-radius: 1px;
  }
  .header_page .header-wrap {
    height: 52px;
  }
  .nav-item {
    height: 52px;
  }
  .left-content .logo {
    height: 22px;
  }
}

/* Banner */
.banner-wrap {
  background: #000;
}
.banner-wrap .bac {
  background: url("assets/imgsV2/banner-large.png") no-repeat;
  background-position: right center;
  box-sizing: border-box;
  padding: 175px 16px;
  overflow: hidden;
  background-size: auto 65% !important;
}
.banner-wrap .bac h1 {
  margin: 0;
  width: 50%;
  font-size: 52px;
  font-weight: 600;
  color: #f3f3f3;
  margin-bottom: 48px;
  line-height: 62px;
  white-space: pre-line;
}
#banner-h1 {
  white-space: pre-line;
}
.banner-form-inline {
  display: inline-flex;
  justify-content: left;
  border: 1px solid #1c1a1c;
  border-radius: 26px;
  overflow: hidden;
}
.banner-form-inline .bf-email {
  height: 50px;
  line-height: 50px;
  width: 310px;
  border: none;
  background: none;
  font-size: 16px;
  color: #f3f3f3;
  padding: 0 16px;
  outline: none;
}
.banner-form-inline .bf-email::placeholder {
  color: #909090;
}
.banner-form-submit {
  display: inline-block;
  border-radius: 26px !important;
  background-color: var(--background-primary-color);
  font-size: 16px;
  height: 48px;
  margin-top: 1px;
  margin-right: 1px;
  min-width: 104px;
  color: #ffffff;
  border: none;
  cursor: pointer;
}
.banner-form-submit:hover {
  background-color: var(--primary-hover) !important;
}

@media screen and (max-width: 768px) {
  .banner-wrap .bac {
    padding: 112px 16px 16px;
    background: url("assets/imgsV2/banner-small@3x.png") no-repeat;
    background-position: center top;
    background-size: 264px 192px;
    height: auto;
  }
  .banner-wrap .bac h1 {
    width: 100%;
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 32px;
    text-align: center;
  }
  .banner-form-inline {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .banner-form-inline .bf-email {
    flex: 1;
    width: 100%;
    height: 46px;
    font-size: 14px;
  }
  .banner-form-inline .banner-form-submit {
    font-size: 14px;
    height: 44px;
    min-width: 96px;
    padding: 0 12px !important;
  }
}

/* Notice */
.notice-wrap {
  min-height: 20px;
  padding: 60px 0 20px;
}
.notice-content {
  position: relative;
}
.notice-info {
  height: 20px;
  padding: 0 16px 0 38px;
  background: url("assets/imgsV2/icon-notice20x20.png") no-repeat 15px center;
  background-size: 20px;
}
.notice-info a,
.notice-sample {
  font-size: 14px;
  line-height: 20px;
  color: #04091a;
}
.moreLink {
  position: absolute;
  font-size: 16px;
  right: 16px;
  top: 0;
  z-index: 2;
  display: inline-block;
  background: url("assets/imgsV2/icon-right-blue@2x.png") no-repeat right center;
  background-size: 6px;
  padding-right: 14px;
  font-weight: 400;
  color: var(--font-primary-color);
  border: none;
  background-color: transparent;
  cursor: pointer;
  font: inherit;
}
.moreLink:hover {
  color: var(--font-primary-color);
}

@media screen and (max-width: 768px) {
  .notice-wrap {
    padding: 16px 0 12px;
  }
  .notice-info {
    height: auto;
    min-height: 20px;
    background-size: 16px;
    padding-left: 28px;
    background-position-x: 8px;
  }
  .moreLink {
    font-size: 14px !important;
    right: 8px;
  }
}

/* Promo banners — same column as notice; cards left-aligned; border matches live cards */
.promo-cards-wrap {
  padding: 8px 0 56px;
  background: #fff;
}
.promo-cards {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  box-sizing: border-box;
  padding: 0 16px;
}
.promo-card-img {
  flex: 0 1 420px;
  max-width: min(100%, 460px);
  padding: 0;
  margin: 0;
  border: 1px solid #e7e9f2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  cursor: pointer;
  display: block;
  line-height: 0;
  overflow: hidden;
  box-sizing: border-box;
}
.promo-card-img img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}
.promo-card-img:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

@media screen and (max-width: 768px) {
  .promo-cards-wrap {
    padding-bottom: 40px;
  }
  .promo-cards {
    flex-direction: column;
    align-items: flex-start;
  }
  .promo-card-img {
    flex: 1 1 auto;
    max-width: 100%;
  }
}

/* Markets table */
.intro-wrap .markets-info {
  background: #fff;
  padding-bottom: 80px;
}
.markets-info .title {
  font-size: 32px;
  font-weight: 500;
  color: #04091a;
  line-height: 38px;
  margin-bottom: 34px;
  padding: 0 16px;
  position: relative;
}
.currencyList .currencyType {
  margin-bottom: 22px;
  padding: 0 16px;
}
.currencyList .currencyType a,
.currencyList .currencyType button.tab-pill {
  color: #8d93a6;
  font-size: 20px;
  display: inline-block;
  margin-right: 32px;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}
.currencyList .currencyType a.active,
.currencyList .currencyType button.tab-pill.active {
  color: #04091a;
  font-weight: 500;
}

.market-table-wrap {
  width: 100%;
  overflow-x: auto;
}
.market-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}
.market-table th {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #8d93a6;
  text-align: left;
  padding: 0 16px 8px 0;
  border-bottom: 0;
}
.market-table th:last-child {
  padding-right: 16px;
}
.market-table td {
  padding: 18px 16px 18px 0;
  border-bottom: 0;
  color: #04091a;
}
.market-table tr:hover td {
  background-color: #f8fbff;
}
.market-table .cell-right {
  text-align: right;
}
.coin-info {
  display: flex;
  align-items: center;
}
.coin-info img {
  width: 28px;
  height: 28px;
  margin-right: 10px;
  object-fit: contain;
}
.coin-info .name {
  font-size: 16px;
  font-weight: 500;
  color: #1c1c1e;
  line-height: 19px;
}
.trend.add {
  color: var(--up-color);
}
.trend.reduce {
  color: var(--down-color);
}
.trend.muted {
  color: #8d93a6;
}
.spark-placeholder {
  height: 30px;
  width: 100%;
  max-width: 120px;
  background: linear-gradient(90deg, #eef1f8 0%, #f7f8fa 100%);
  border-radius: 2px;
}
.transactionBtn {
  padding: 9px 16px !important;
  background: #eef1f8 !important;
  color: #04091a;
  border-radius: 16px !important;
  line-height: 14px;
  height: auto;
  border: none;
  font-size: 14px;
  cursor: pointer;
}
.transactionBtn:hover {
  background: var(--background-primary-color) !important;
  color: #ffffff !important;
}

.more-link-center {
  text-align: center;
  padding-top: 16px;
  display: none;
}

@media screen and (max-width: 768px) {
  .intro-wrap .markets-info {
    padding-bottom: 32px;
  }
  .markets-info .title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
    padding: 0 16px;
  }
  .currencyList .currencyType a,
  .currencyList .currencyType button.tab-pill {
    font-size: 14px;
    margin-right: 16px;
  }
  .market-table th,
  .market-table td {
    font-size: 14px;
    white-space: nowrap;
  }
  .coin-info img {
    width: 24px;
    height: 24px;
  }
  .col-spark,
  .col-action {
    display: none;
  }
  .more-link-center {
    display: block;
  }
  .title .moreLink.desk-only {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .more-link-center {
    display: none !important;
  }
}

/* Why sections */
.why-wrap {
  background: linear-gradient(180deg, rgba(0, 83, 255, 0) 0%, rgba(0, 83, 255, 0.06) 100%);
}
.intro-wrap .why-info {
  padding: 80px 0 60px;
  color: #04091a;
}
.why-info h2 {
  font-size: 48px;
  line-height: 57px;
  font-weight: 500;
  margin-bottom: 80px;
  text-align: center;
}
.why-info .sliders {
  padding: 0 16px;
}
.why-info .sliders ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
}
.why-info .sliders li {
  padding-right: 54px;
  width: 25%;
  text-align: center;
  box-sizing: border-box;
}
.why-info .sliders li:last-child {
  padding-right: 0;
}
.why-info .imgcon {
  text-align: center;
  margin-bottom: 24px;
}
.why-info .imgcon img {
  width: 120px;
  height: 120px;
}
.why-info h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  color: #04091a;
}
.why-info p {
  font-size: 16px;
  font-weight: 400;
  color: #8d93a6;
  line-height: 19px;
  margin: 0;
}

.why2-info {
  padding-top: 60px;
  padding-bottom: 88px;
}
.why2-info h2 {
  font-size: 48px;
  line-height: 57px;
  font-weight: 500;
  margin-bottom: 80px;
  text-align: center;
  color: #04091a;
}
.why2-info .sliders ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0 16px;
}
.why2-info .sliders li {
  width: calc(48% - 78px);
  background: #fff;
  border: 1px solid #e7e9f2;
  border-radius: 20px;
  margin-bottom: 32px;
  padding: 40px;
  min-height: 114px;
  box-sizing: border-box;
  position: relative;
  text-align: left;
}
.why2-info .sliders li h3 {
  font-size: 20px;
  line-height: 24px;
  color: #04091a;
  margin-bottom: 12px;
  font-weight: 500;
}
.why2-info .sliders li p {
  font-size: 16px;
  color: #8d93a6;
  line-height: 19px;
  margin: 0;
  display: block;
  padding-right: 96px;
}
.why2-info .sliders li .imgcon {
  position: absolute;
  right: 40px;
  bottom: 40px;
}
.why2-info .sliders li .imgcon img {
  width: 78px;
  height: 80px;
}

@media screen and (max-width: 768px) {
  .why-info {
    padding: 32px 0;
  }
  .why-info h2 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 24px;
  }
  .why-info .sliders ul {
    flex-wrap: wrap;
  }
  .why-info .sliders li {
    width: 100%;
    padding-right: 0;
    margin-bottom: 32px;
  }
  .why2-info {
    padding-top: 16px;
    padding-bottom: 24px;
  }
  .why2-info h2 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 24px;
  }
  .why2-info .sliders ul {
    padding: 0 12px;
  }
  .why2-info .sliders li {
    width: 100%;
    padding: 20px 16px;
    margin-bottom: 12px;
    border-radius: 12px;
    height: auto;
    min-height: 0;
  }
  .why2-info .sliders li p {
    padding-right: 56px;
    font-size: 14px;
    line-height: 20px;
  }
  .why2-info .sliders li .imgcon {
    right: 16px;
    bottom: 20px;
  }
  .why2-info .sliders li .imgcon img {
    width: 56px;
    height: 58px;
  }
}

/* Start trade */
.start-trade {
  padding-top: 80px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: #000;
  padding-bottom: 80px;
}
.start-trade h2 {
  text-align: center;
  font-size: 48px;
  line-height: 57px;
  font-weight: 500;
  color: #f3f3f3;
  margin-bottom: 60px;
}
.start-trade .btnWrap {
  margin-bottom: 60px;
}
.start-trade .btnWrap ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.start-trade .btnWrap li {
  width: 212px;
  height: 66px;
  border-radius: 10px;
  border: 1px solid #232323;
  margin: 0 14px;
}
.start-trade .btnWrap a {
  display: flex;
  height: 66px;
  padding-left: 78px;
  flex-direction: column;
  justify-content: center;
  background-size: 33px 40px;
  background-position: 24px center;
  background-repeat: no-repeat;
  text-decoration: none;
  cursor: pointer;
}
.start-trade .btnWrap span {
  color: #909090;
  font-size: 14px;
  line-height: 17px;
}
.start-trade .btnWrap p {
  color: #f3f3f3;
  font-size: 22px;
  line-height: 26px;
  margin: 0;
}
.start-trade .iosWrap {
  background-image: url("assets/imgsV2/apple@2x.png");
}
.start-trade .androldWrap {
  background-image: url("assets/imgsV2/anzhuo@2x.png");
}
.start-trade .content {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.start-trade .left img {
  width: 386px;
  max-width: 100%;
  height: auto;
}
.start-trade .right {
  padding-left: 100px;
  max-width: 480px;
}
.start-trade .right .intro {
  padding: 24px;
  border: 1px solid #232323;
  border-radius: 10px;
}
.start-trade .right .intro:first-child {
  margin-bottom: 40px;
}
.start-trade .right h3 {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 400;
  color: #f3f3f3;
}
.start-trade .right p {
  font-size: 14px;
  color: #909090;
  line-height: 20px;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .start-trade {
    padding: 40px 16px 48px;
  }
  .start-trade h2 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 32px;
  }
  .start-trade .btnWrap ul {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .start-trade .btnWrap li {
    width: 100%;
    max-width: 280px;
    margin: 0;
  }
  .start-trade .right {
    padding-left: 0;
  }
  .start-trade .content {
    flex-direction: column;
  }
}

/* Overlay */
.maint-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.maint-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.maint-dialog {
  width: 100%;
  max-width: 360px;
  padding: 28px 24px 20px;
  border-radius: 14px;
  background: #1e293b;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
  text-align: center;
}
.maint-dialog-msg {
  margin: 0 0 22px;
  font-size: 1.05rem;
  color: #f1f5f9;
  line-height: 1.55;
}
.maint-dialog-btn {
  min-width: 120px;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  cursor: pointer;
  background: #3b82f6;
  color: #fff;
}

html[dir="rtl"] .market-table .cell-right {
  text-align: left;
}
html[dir="rtl"] .start-trade .right {
  padding-left: 0;
  padding-right: 0;
}
