/* Reset and Core Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 使用系统字体栈，避免字体文件阻塞 */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif !important;
  margin: 0;
  padding: 0;
  background-color: #0a1929;
  color: #ffffff;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  line-height: 1.15;
}

/* CSS变量 */
:root {
  --background-color: 10, 25, 41;
  --surface-color: 23, 44, 59;
  --text-color: 255, 255, 255;
  --text-color-variant: 128, 139, 147;
  --primary-color: 3, 202, 155;
  --primary-color-variant: 130, 186, 246;
  --secondary-color: 228, 75, 68;
  --primary-color-button: 3, 202, 155;
  --primary-color-button-hover: 2, 180, 138;
}

/* 布局容器 */
.content,
.content_wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ========== 用户头像下拉菜单样式 ========== */
.user-avatar-section {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.user-avatar-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.user-avatar-trigger:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

/* 头像样式优化 */
.avatar-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a9989, #16a085);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 14px;
  position: relative;
}

.user-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 200px;
  background: linear-gradient(145deg, #2a3441, #232c37);
  border: 1px solid #3a4553;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 8px 16px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.95);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 8px;
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.user-avatar-section:hover .user-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  color: #e2e8f0;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  font-weight: 400;
  border: none;
  margin: 0;
}

.dropdown-item:hover {
  background: linear-gradient(
    90deg,
    rgba(26, 153, 137, 0.15),
    rgba(26, 153, 137, 0.05)
  );
  color: #ffffff;
}

/* ID复制项特殊样式 */
.dropdown-item.id-item {
  padding: 16px 18px;
  border-bottom: 1px solid #3a4553;
  background: rgba(0, 0, 0, 0.2);
}

.dropdown-item.id-item:hover {
  background: linear-gradient(
    90deg,
    rgba(26, 153, 137, 0.2),
    rgba(26, 153, 137, 0.1)
  );
}

.dropdown-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #3a4553, transparent);
  margin: 6px 0;
}

.copy-icon {
  width: 14px;
  height: 14px;
  opacity: 0.6;
  transition: all 0.2s ease;
  margin-left: 8px;
}

.dropdown-item:hover .copy-icon {
  opacity: 1;
  color: #1a9989;
}

/* 认证状态样式 */
.auth-status-item {
  justify-content: flex-start;
  gap: 12px;
}

#auth-status {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 4px;
  margin-left: auto;
}

#auth-status.verified {
  background-color: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

#auth-status.pending {
  background-color: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

#auth-status.unverified {
  background-color: rgba(107, 114, 128, 0.2);
  color: #9ca3af;
  border: 1px solid rgba(107, 114, 128, 0.3);
}

#auth-status.rejected {
  background-color: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* 退出登录特殊样式 */
.logout-item {
  color: #f87171;
  margin-top: 4px;
  border-top: 1px solid #3a4553;
  padding-top: 14px;
}

.logout-item:hover {
  background: linear-gradient(
    90deg,
    rgba(248, 113, 113, 0.15),
    rgba(248, 113, 113, 0.05)
  );
  color: #fca5a5;
}

.logout-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  opacity: 0.8;
}

.logout-item:hover .logout-icon {
  opacity: 1;
}

/* 用户ID显示样式 */
#user-id-display {
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-weight: 600;
  color: #cbd5e1;
}

/* 移动端隐藏下拉菜单 */
@media (max-width: 768px) {
  .user-dropdown-menu {
    display: none;
  }
}

@media (min-width: 768px) {
  .content,
  .content_wrapper {
    padding: 0 2rem;
  }
}

/* 背景颜色 */
.bg-background-neutral-main {
  background-color: rgb(var(--background-color));
}

.dark\\:bg-dark-background-neutral-main {
  background-color: rgb(var(--background-color));
}

.bg-\\[\\#102331\\] {
  background-color: #102331;
}

.bg-\\[\\#0d1d29\\] {
  background-color: #0d1d29;
}

/* Header 样式 - 基于React组件对齐 */
.header {
  background: #0b1923; /* bitfinex.background.DEFAULT */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30; /* z-[30] */
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #2a2a2a; /* bitfinex.border.DEFAULT */
  transition: all 0.3s ease; /* transition duration-300 */
}

.header_row {
  height: 48px; /* h-[48px] */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 1280px) {
  .header_row {
    height: 56px; /* xl:h-[56px] */
    gap: 0.5rem; /* xl:gap-2 */
  }
}

.header_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}

/* Left Navigation */
.header_left {
  display: flex;
  align-items: center;
  gap: 1.5rem; /* space-x-6 */
}

.logo_container {
  display: flex;
  align-items: center;
  margin-right: 0.5rem; /* mr-2 */
}

@media (min-width: 1280px) {
  .logo_container {
    /* margin-right: 4rem; xl:mr-16 */
  }
}

.logo_link {
  text-decoration: none;
  display: flex;
  align-items: center;
  color: #00c087; /* bitfinex.primary.DEFAULT */
}

.logo_container_inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 40px; /* h-[40px] */
}

.logo_icon {
  position: relative;
  width: 32px;
  height: 32px;
}

/* 创建钻石形状的CSS - 更精确的样式 */
.logo_icon::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  transform: rotate(45deg);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(251, 191, 36, 0.4);
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -10px;
  margin-left: -10px;
}

.logo_text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #00c087; /* bitfinex.primary.DEFAULT */
  margin-left: 0.5rem;
}

.logo_img {
  height: 40px; /* h-[40px] */
  width: auto;
}

.main_nav {
  display: none; /* 默认隐藏 */
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .main_nav {
    display: flex; /* md:block */
  }
}

.logo_home_btn {
  /* inline-block md:hidden flex items-center mr-2 text-white/40 font-semibold  !-ml-1 */
  margin-right: 0.5rem;
  display: none;
  text-decoration: none;
  /* color: #fff;
  opacity: 0.4; */
  font-size: 0.875rem;
  font-weight: 500;
  margin-left: -0.5rem;
  width: 24px;
  height: 24px;
  > img {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 768px) {
  .logo_home_btn {
    display: inline-block;
  }
}

.nav_link {
  color: #fff; /* bitfinex.text.secondary */
  text-decoration: none;
  font-size: 0.875rem; /* text-sm */
  font-weight: 500; /* font-medium */
  padding: 0.5rem 0;
  transition: color 0.2s ease; /* transition-colors duration-200 */
  border-bottom: 2px solid transparent;
}

.nav_link:hover {
  color: #00c087; /* bitfinex.action.up */
  border-bottom-color: #00c087;
}

.nav_link.active {
  color: #00c087;
  border-bottom-color: #00c087;
}

/* 透明背景下的链接颜色 */
.header.transparent .nav_link {
  color: #e2e8f0; /* text-bitfinex-text-primary */
}

/* Right User Controls */
.header_right {
  display: flex;
  align-items: center;
  gap: 1rem; /* gap-4 */
  position: relative;
}

@media (min-width: 1280px) {
  .header_right {
    gap: 1.5rem; /* xl:gap-6 */
  }
}

/* Auth Controls Container */
.auth-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1280px) {
  .auth-controls {
    gap: 1.5rem;
  }
}

/* Logged In Desktop Controls */
.logged-in-desktop {
  display: none;
  align-items: center;
  gap: 1rem;
  color: #ffffff; /* text-neutral-100 */
}

@media (min-width: 768px) {
  .logged-in-desktop {
    display: flex;
  }
}

.user-controls-desktop {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-control-btn {
  background: none;
  border: none;
  color: #ffffff; /* text-white */
  font-size: 13px;
  cursor: pointer;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.user-control-btn:hover {
  color: #00c087; /* hover:text-primary-300 */
}

.message-badge {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #ffffff;
  cursor: pointer;
  transition: color 0.2s ease;
  font-size: 13px;
  position: relative;
}

.message-badge:hover {
  color: #00c087;
}

.badge-count {
  background: #ef4444;
  color: white;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: bold;
  margin-left: 0.25rem;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(50%, -50%);
}

/* User Avatar Section */
.user-avatar-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: color 0.2s ease;
  color: #ffffff;
}

.user-avatar-section:hover {
  color: #00c087;
}

.avatar-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #00c087;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.875rem;
}

/* Logged In Mobile Controls */
.logged-in-mobile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-right: 0.5rem;
}

@media (min-width: 768px) {
  .logged-in-mobile {
    display: none;
  }
}

/* Guest Controls */
.guest-desktop {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .guest-desktop {
    display: flex;
  }
}

.guest-mobile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-right: 0.5rem;
}

@media (min-width: 768px) {
  .guest-mobile {
    display: none;
  }
}

.login-btn {
  padding: 0.5rem 1rem;
  background: #1a9989;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s ease;
  font-size: 0.875rem;
}

.login-btn:hover {
  background: #157a6e;
  color: white;
}

.register-btn {
  padding: 0.5rem 1rem;
  background: transparent;
  color: white;
  text-decoration: none;
  border: 1px solid #374151;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-size: 0.875rem;
}

.register-btn:hover {
  background: #374151;
  color: white;
}

.language-text-btn {
  background: none;
  border: none;
  color: #d1d5db; /* text-gray-300 */
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s ease;
}

.language-text-btn:hover {
  color: #1a9989;
}

/* Language Controls */
.language-selector-mobile {
  position: relative;
}

.language-btn {
  background: none;
  border: none;
  color: #00c087;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease;
}

.language-btn:hover {
  color: #00a070;
}

.mobile-message-icon {
  position: relative;
  color: #ffffff;
  cursor: pointer;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
}

.mobile-message-icon:hover {
  color: #00c087;
}

/* Language Dropdown */
.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  width: 12rem;
  background: #1e293b; /* bg-slate-800 */
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 1px solid #334155; /* border-slate-700 */
  z-index: 50;
  max-height: 66vh;
  overflow-y: auto;
}

.language-list {
  padding: 0;
}

.language-item {
  padding: 0.75rem 1rem;
  color: white;
  cursor: pointer;
  transition: background 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
}

.language-item:hover {
  background: #475569; /* hover:bg-slate-700 */
}

.language-item:first-child {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.language-item:last-child {
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.language-check {
  color: #10b981; /* text-green-400 */
  font-weight: 500;
}

/* Mobile 响应式设计 */
@media (max-width: 767px) {
  .header_row {
    padding: 0 0.5rem;
  }

  .header_left {
    gap: 1rem;
  }

  .logo_container {
    margin-right: 0.5rem; /* 移动端减少边距 */
  }

  .user_controls {
    gap: 0.5rem;
  }

  .user_btn {
    font-size: 0.625rem;
    padding: 0.125rem 0.25rem;
  }

  .logo_text {
    font-size: 1rem;
  }

  /* 在移动端隐藏部分用户控件 */
  .user_controls .user_btn:nth-child(n + 3) {
    display: none;
  }
}

/* 滚动时的样式变化 */
.header.scrolled {
  background: #0c1620; /* 确保滚动时背景不透明 */
  border-bottom-color: #1e2936;
}

.header.slide-up {
  transform: translateY(-100%);
}

/* 透明背景样式 */
.header.transparent {
  background: transparent;
  border-bottom-color: transparent;
}

.header.transparent .user_btn,
.header.transparent .user_status,
.header.transparent .language_switcher {
  color: rgba(255, 255, 255, 0.8);
}

.header.transparent .user_btn:hover,
.header.transparent .language_switcher:hover {
  color: #10b981;
}

/* Main Content 样式 */
.main-content {
  overflow-x: hidden;
  background: #0b1923; /* bitfinex.background.DEFAULT */
  padding-top: 48px; /* 为固定header留出空间 */
  padding-bottom: 64px;
  min-height: 100vh;
}

@media (min-width: 1280px) {
  .main-content {
    padding-top: 56px; /* xl:pt-[56px] */
  }
}

@media (max-width: 767px) {
  .main-content {
    padding-bottom: 0; /* md:pb-0 */
  }
}

/* Main Layout */
.home-layout {
  overflow-x: hidden;
}

.home-layout__head {
  background: linear-gradient(180deg, #0d1d29, #0e3452);
  position: relative;
  /* padding-top: 56px; */
  /* min-height: 80vh; */
}

.header-banners {
  height: 0;
}

.content-header {
  padding: 4rem 0;
  position: relative;
  z-index: 2;
}

.tag {
  align-items: center;
  background: rgba(19, 69, 76, 0.96);
  border-radius: 20px;
  color: #03ca9b;
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  padding: 5px 14px;
}

.content-header {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  min-height: 580px;
  overflow: visible;
  padding: 113px 0 50px;
}

.content-header,
.content-header h1 {
  position: relative;
  text-align: center;
  z-index: 1;
}

.content-header h1 {
  color: rgb(var(--text-color));
  font-size: 66px;
  font-weight: 600;
  line-height: 116%;
  margin-bottom: 20px;
  margin-top: 0;
  padding: 0 20px;
  text-transform: none;
  white-space: break-spaces;
  width: auto;
}

@media screen and (max-width: 900px) {
  .content-header h1 {
    font-size: 37px;
  }
}

.content-header h2 {
  color: #5a6972;
  font-size: 22px;
  font-weight: 300;
  line-height: 140%;
  margin: 0 20px;
  padding: 0;
  position: relative;
  white-space: break-spaces;
  width: auto;
  z-index: 1;
}

@media screen and (max-width: 900px) {
  .content-header h2 {
    font-size: 18px;
    margin: 0 10%;
  }
}

.content-header h3 {
  color: #5a6972;
  font-size: 22px;
  font-weight: 300;
  line-height: 140%;
  margin: 0;
  max-width: 700px;
  padding: 0;
  position: relative;
  width: auto;
  z-index: 1;
}

.content-header__column {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: auto;
  max-width: 1160px;
  position: relative;
}

/* Button Container */
.button-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 32rem;
  margin: 0 auto;
  padding: 1rem 2rem;
}

/* CTA Buttons */
.primary-button,
.secondary-button {
  display: block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.primary-button {
  background: #00c087; /* bg-bitfinex-primary */
  color: #ffffff; /* text-bitfinex-foreground */
}

.primary-button:hover {
  background: #00a070; /* hover:bg-bitfinex-primary-hover */
  color: #ffffff;
}

.secondary-button {
  background: transparent; /* bg-bitfinex-secondary */
  color: #ffffff; /* text-bitfinex-foreground */
  border: 1px solid rgba(0, 192, 135, 0.1); /* border-bitfinex-primary/10 */
}

.secondary-button:hover {
  background: rgba(0, 192, 135, 0.1); /* hover:bg-bitfinex-secondary-hover */
  color: #ffffff;
  border-color: #00c087;
}

.content-header__column {
  text-align: center;
}

/* 主标题样式 */
h1 {
  font-size: clamp(2rem, 5vw, 3.125rem);
  font-weight: 300;
  color: #ffffff;
  margin: 2rem 0 1rem;
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 2rem;
  line-height: 1.4;
}

/* Promo Tag */
.home-layout__head-manifesto-link {
  display: inline-block;
  text-decoration: none;
}

/* .tag {
  background: rgba(3, 202, 155, 0.1);
  border: 1px solid rgba(3, 202, 155, 0.3);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  color: rgb(var(--primary-color));
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin: 0 auto 2rem;
  width: fit-content;
} */

.tag:hover {
  background: rgba(3, 202, 155, 0.2);
  border-color: rgb(var(--primary-color));
}

/* 浮动加密货币动画 */
.parallax-image {
  position: absolute;
  will-change: transform;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.parallax-image:nth-child(1) {
  animation-delay: 0s;
}

.parallax-image:nth-child(2) {
  animation-delay: 1s;
}

.parallax-image:nth-child(3) {
  animation-delay: 2s;
}

.parallax-image:nth-child(4) {
  animation-delay: 3s;
}

.parallax-image:nth-child(5) {
  animation-delay: 4s;
}

.parallax-image:nth-child(6) {
  animation-delay: 5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(2deg);
  }
  50% {
    transform: translateY(-10px) rotate(-1deg);
  }
  75% {
    transform: translateY(-15px) rotate(1deg);
  }
}

/* 按钮样式 */
.button-container {
  max-width: 32rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 2rem;
  padding-top: 1rem;
}

.primary-button,
.secondary-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.primary-button {
  background: rgb(var(--primary-color-button));
  color: #ffffff;
}

.primary-button:hover {
  background: rgb(var(--primary-color-button-hover));
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(3, 202, 155, 0.3);
}

.secondary-button {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.secondary-button:hover {
  border-color: rgb(var(--primary-color));
  background: rgba(3, 202, 155, 0.1);
}

/* 统计数据区域 */
.volume_totals {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .volume_totals {
    padding: 3rem 0;
  }
}

/* 世界地图统计 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.size-full {
  width: 100%;
  height: 100%;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.grid {
  display: grid;
}

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

.gap-8 {
  gap: 2rem;
}

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

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.font-bold {
  font-weight: 700;
}

.opacity-80 {
  opacity: 0.8;
}

.mt-2 {
  margin-top: 0.5rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .md\\:w-\\[600px\\] {
    width: 600px;
  }

  .md\\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .md\\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

/* Body Section */
.home-layout__body {
  background: rgb(var(--background-color));
}

.home-tickers {
  position: relative;
  padding: 4rem 0;
}

.home-tickers__chart-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(3, 202, 155, 0.05) 0%,
    rgba(65, 102, 188, 0.05) 100%
  );
  pointer-events: none;
}

.landing_ticker {
  position: relative;
  z-index: 2;
  min-height: 40rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.white-text {
  color: #ffffff;
}

.center {
  text-align: center;
}

/* Section Headers */
.home-layout-row-header {
  /* margin-bottom: 3rem; */
  text-align: center;
}

.home-layout-row-header__title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.gradient-sky {
  background: linear-gradient(117deg, #9bfee6, #4166bc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.visible-mobile {
  display: block;
}

.visible-desktop {
  display: none;
}

@media (min-width: 768px) {
  .visible-mobile {
    display: none;
  }

  .visible-desktop {
    display: block;
  }
}

.tabs {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.tabs__item {
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.tabs__item:hover,
.tabs__item.active {
  background: rgb(var(--primary-color));
  color: #ffffff;
}

/* 币种信息样式 */
.coin-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.coin-symbol {
  font-weight: 600;
  color: #ffffff;
  font-size: 0.875rem;
}

.coin-name {
  font-size: 0.75rem;
  color: #aaaaaa;
}

.coin-price {
  font-weight: 600;
  color: #ffffff;
  font-size: 0.875rem;
}

.coin-change {
  font-weight: 600;
  font-size: 0.875rem;
}

.coin-high,
.coin-low,
.coin-volume {
  color: #ffffff;
  font-size: 0.875rem;
}

/* 响应式隐藏类 */
@media (max-width: 767px) {
  .hidden.md\\:table-cell {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hidden.md\\:table-cell {
    display: table-cell !important;
  }
}

/* 特色卡片样式 */
.space-y-4 > * + * {
  margin-top: 1rem;
}

.max-w-md {
  max-width: 28rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.bg-gray-900 {
  background-color: #111827;
}

.border {
  border-width: 1px;
}

.border-gray-700 {
  border-color: #374151;
}

.rounded-2xl {
  border-radius: 1rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.items-center {
  align-items: center;
}

.space-x-4 > * + * {
  margin-left: 1rem;
}

.hover\\:bg-gray-800:hover {
  background-color: #1f2937;
}

.transition-colors {
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-200 {
  transition-duration: 200ms;
}

.size-10 {
  width: 2.5rem;
  height: 2.5rem;
}

.size-12 {
  width: 3rem;
  height: 3rem;
}

.bg-blue-600 {
  background-color: #2563eb;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.justify-center {
  justify-content: center;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.w-6 {
  width: 1.5rem;
}

.h-6 {
  height: 1.5rem;
}

.object-contain {
  object-fit: contain;
}

.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast)
    var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate)
    var(--tw-sepia) var(--tw-drop-shadow);
}

.brightness-0 {
  --tw-brightness: brightness(0);
}

.invert {
  --tw-invert: invert(100%);
}

.flex-1 {
  flex: 1 1 0%;
}

.text-white {
  color: #ffffff;
}

.text-gray-400 {
  color: #9ca3af;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.font-medium {
  font-weight: 500;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.w-10 {
  width: 2.5rem;
}

.h-10 {
  height: 2.5rem;
}

.border-gray-600 {
  border-color: #4b5563;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.h-5 {
  height: 1.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.leading-relaxed {
  line-height: 1.625;
}

.description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.description p {
  margin-bottom: 1rem;
}

/* Product Features Cards */
.garland-slider {
  padding: 4rem 0;
  overflow: hidden;
}

.garland-slider__container {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  /* animation: slide 25s linear infinite; */
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.garland-slider__card-wrapper {
  min-width: 386px;
  flex-shrink: 0;
}

.garland-slider__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.garland-slider__card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.garland-slider__card img {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
}

.garland-slider__card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.garland-slider__card-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.app_links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.app_link_img {
  height: 50px;
  transition: transform 0.3s ease;
}

.app_link_img:hover {
  transform: scale(1.05);
}

.link_row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0;
}

.link_row a {
  color: rgb(var(--primary-color));
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.arrow_icon {
  width: 12px;
  height: 12px;
  background: url('/bitfinex/assets/arrow-right.svg') no-repeat center;
  background-size: contain;
}

.image_container {
  text-align: center;
  margin-top: 2rem;
}

.image_container img {
  max-width: 100%;
  height: auto;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .content-header {
    padding: 2rem 0;
  }

  .button-container {
    padding: 0 1rem;
  }

  .home-tickers {
    padding: 2rem 0;
  }

  .home-advanced-features,
  .our_app {
    padding: 3rem 0;
  }

  .parallax-image {
    opacity: 0.7;
  }

  .garland-slider__container {
    flex-direction: column;
    animation: none;
  }

  .garland-slider__card-wrapper {
    min-width: auto;
    width: 100%;
  }

  .app_links {
    flex-direction: column;
    align-items: center;
  }
}

/* 语言选择器 */
#language-selector {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1001;
}

#language-select {
  background: rgba(17, 24, 39, 0.9);
  border: 1px solid rgba(55, 65, 81, 0.5);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  backdrop-filter: blur(10px);
}

/* 隐藏类 */
/* 工具类 */
.max-w-2xl {
  max-width: 42rem;
}

.gap-4 {
  gap: 1rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.pt-4 {
  padding-top: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.rounded {
  border-radius: 0.25rem;
}

.cursor-pointer {
  cursor: pointer;
}

.md\\:px-\\[20vw\\] {
  padding-left: 20vw;
  padding-right: 20vw;
}

.md\\:mt-8 {
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .md\\:px-\\[20vw\\] {
    padding-left: 20vw;
    padding-right: 20vw;
  }

  .md\\:mt-8 {
    margin-top: 2rem;
  }
}

/* 其他必要样式 */
.min-h-\\[40rem\\] {
  min-height: 40rem;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.xl\\:pt-\\[56px\\] {
  padding-top: 56px;
}

.pb-\\[64px\\] {
  padding-bottom: 64px;
}

.md\\:pb-0 {
  padding-bottom: 0;
}

@media (min-width: 1280px) {
  .xl\\:pt-\\[56px\\] {
    padding-top: 56px;
  }
}

@media (min-width: 768px) {
  .md\\:pb-0 {
    padding-bottom: 0;
  }
}

/* 表格隐藏类 */
.hide_xs,
.hide_sm,
.hide_md,
.hide_lg,
.hide_xl,
.hide_xxl {
  display: none;
}

@media (min-width: 768px) {
  .hide_xs,
  .hide_sm {
    display: inline;
  }

  .hide_md,
  .hide_lg,
  .hide_xl,
  .hide_xxl {
    display: none;
  }
}

.md\\:table-cell {
  display: table-cell;
}

@media (min-width: 768px) {
  .md\\:table-cell {
    display: table-cell;
  }
}

/* 主题相关 */
.default-theme,
.dark-mode,
.reku-new-theme {
  /* 主题相关样式 */
}

/* rewrite */
.home-layout__head-coins {
  height: 100%;
  position: absolute;
  width: 100%;
}

.home-layout__head-coins .parallax-images-wrapper {
  height: 100%;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .home-layout__head-coins .parallax-images-wrapper {
    width: 120%;
  }
}

@media only screen and (max-width: 575px) {
  .home-layout__head-coins .parallax-images-wrapper {
    width: 150%;
  }
}

.home-layout__head-coins .parallax-image:first-child {
  left: 110px;
  position: absolute;
  top: -50px;
  z-index: 0;
}

@media screen and (max-width: 900px) {
  .home-layout__head-coins .parallax-image:first-child {
    height: 43.3333333333px;
    width: 43.3333333333px;
  }
}

.home-layout__head-coins .parallax-image:nth-child(2) {
  left: 20px;
  position: absolute;
  top: 100px;
  z-index: 0;
}

@media screen and (max-width: 900px) {
  .home-layout__head-coins .parallax-image:nth-child(2) {
    height: 66.6666666667px;
    width: 66.6666666667px;
  }
}

.home-layout__head-coins .parallax-image:nth-child(3) {
  left: 30px;
  position: absolute;
  top: 310px;
  z-index: 0;
}

@media screen and (max-width: 900px) {
  .home-layout__head-coins .parallax-image:nth-child(3) {
    height: 48px;
    width: 48px;
  }
}

.home-layout__head-coins .parallax-image:nth-child(4) {
  position: absolute;
  right: 140px;
  top: -50px;
  z-index: 0;
}

@media screen and (max-width: 900px) {
  .home-layout__head-coins .parallax-image:nth-child(4) {
    height: 48px;
    width: 48px;
  }
}

.home-layout__head-coins .parallax-image:nth-child(5) {
  position: absolute;
  right: 40px;
  top: 100px;
  z-index: 0;
}

@media screen and (max-width: 900px) {
  .home-layout__head-coins .parallax-image:nth-child(5) {
    height: 76.6666666667px;
    width: 76.6666666667px;
  }
}

.home-layout__head-coins .parallax-image:nth-child(6) {
  position: absolute;
  right: 57px;
  top: 370px;
  z-index: 0;
}

@media screen and (max-width: 900px) {
  .home-layout__head-coins .parallax-image:nth-child(6) {
    height: 43.3333333333px;
    width: 43.3333333333px;
  }

  .home-layout__head-coins .parallax-image:first-child {
    left: 115px;
    top: -65px;
  }

  .home-layout__head-coins .parallax-image:nth-child(2) {
    left: 80px;
    top: 100px;
  }

  .home-layout__head-coins .parallax-image:nth-child(3) {
    left: 81px;
    top: 350px;
  }

  .home-layout__head-coins .parallax-image:nth-child(4) {
    right: 110px;
    top: -50px;
  }

  .home-layout__head-coins .parallax-image:nth-child(5) {
    right: 60px;
    top: 100px;
  }

  .home-layout__head-coins .parallax-image:nth-child(6) {
    right: 75px;
    top: 370px;
  }
}

.home-layout-row-header {
  padding: 20px 0;
  text-align: left;
}

.home-layout-row-header__title {
  color: #fff;
  font-size: 38px;
  font-weight: 600;
  padding-bottom: 15px;
}

@media screen and (max-width: 900px) {
  .home-layout-row-header__title {
    font-size: 30px;
  }
}

.home-layout-row-header__subtitle {
  color: #5a6972;
  font-size: 16px;
}

.content-header {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  min-height: 580px;
  overflow: visible;
  padding: 113px 0 50px;
}

.content-header,
.content-header h1 {
  position: relative;
  text-align: center;
  z-index: 1;
}

.content-header h1 {
  color: rgb(var(--text-color));
  font-size: 66px;
  font-weight: 600;
  line-height: 116%;
  margin-bottom: 20px;
  margin-top: 0;
  padding: 0 20px;
  text-transform: none;
  white-space: break-spaces;
  width: auto;
}

@media screen and (max-width: 900px) {
  .content-header h1 {
    font-size: 37px;
  }
}

.content-header h2 {
  color: #5a6972;
  font-size: 22px;
  font-weight: 300;
  line-height: 140%;
  margin: 0 20px;
  padding: 0;
  position: relative;
  white-space: break-spaces;
  width: auto;
  z-index: 1;
}

@media screen and (max-width: 900px) {
  .content-header h2 {
    font-size: 18px;
    margin: 0 10%;
  }
}

.content-header h3 {
  color: #5a6972;
  font-size: 22px;
  font-weight: 300;
  line-height: 140%;
  margin: 0;
  max-width: 700px;
  padding: 0;
  position: relative;
  width: auto;
  z-index: 1;
}

.content-header__column {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: auto;
  max-width: 1160px;
  position: relative;
}

.content-header__column:after,
.content-header__column:before {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  content: ' ';
  display: block;
  position: absolute;
  top: 0;
  z-index: 0;
}

.content-header__column:before {
  left: 0;
}

.content-header__column:after {
  right: 0;
}

@media screen and (min-width: 900px) {
  .content-header__column {
    margin: 0 auto;
    width: 100%;
  }
}

@media screen and (max-width: 900px) {
  .content-header__column {
    margin-top: 50px;
    max-width: 79rem;
  }
}

.content-header__extra-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}

@media screen and (max-width: 900px) {
  .content-header {
    padding: 25px 0 0;
  }

  .content-header__subtitle {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .content-header__intro {
    font-size: 18px;
  }
}

.content-header-buttons {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
}

.content-header-buttons .buttons-group {
  justify-content: center;
  margin: 20px 0 37px;
}

@media screen and (max-width: 900px) {
  .content-header-buttons {
    max-width: 370px;
    padding: 0 20px;
  }

  .content-header-buttons .buttons-group {
    flex-direction: column-reverse;
    gap: 20px;
    width: 100%;
  }
}

.short {
  min-height: unset;
}

.box {
  padding: 0 0 1rem;
  width: 100%;
}

@media screen and (min-width: 900px) {
  .box {
    padding: 0 2rem 2rem 0;
  }
}

.grid {
  display: flex;
  flex-flow: column;
}

.half {
  width: 100%;
}

@media screen and (min-width: 900px) {
  .half {
    display: inline-block;
    max-width: 62%;
    vertical-align: text-top;
    width: 50%;
  }
}

.full-width {
  width: 100%;
}

.no-pad {
  padding: 0;
}

.left {
  text-align: left;
}

.center {
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.home-layout__head-coins {
  height: 100%;
  position: absolute;
  width: 100%;
}

.home-layout__head-coins .parallax-images-wrapper {
  height: 100%;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .home-layout__head-coins .parallax-images-wrapper {
    width: 120%;
  }
}

@media only screen and (max-width: 575px) {
  .home-layout__head-coins .parallax-images-wrapper {
    width: 150%;
  }
}

.home-layout__head-coins .parallax-image:first-child {
  left: 110px;
  position: absolute;
  top: -50px;
  z-index: 0;
}

@media screen and (max-width: 900px) {
  .home-layout__head-coins .parallax-image:first-child {
    height: 43.3333333333px;
    width: 43.3333333333px;
  }
}

.home-layout__head-coins .parallax-image:nth-child(2) {
  left: 20px;
  position: absolute;
  top: 100px;
  z-index: 0;
}

@media screen and (max-width: 900px) {
  .home-layout__head-coins .parallax-image:nth-child(2) {
    height: 66.6666666667px;
    width: 66.6666666667px;
  }
}

.home-layout__head-coins .parallax-image:nth-child(3) {
  left: 30px;
  position: absolute;
  top: 310px;
  z-index: 0;
}

@media screen and (max-width: 900px) {
  .home-layout__head-coins .parallax-image:nth-child(3) {
    height: 48px;
    width: 48px;
  }
}

.home-layout__head-coins .parallax-image:nth-child(4) {
  position: absolute;
  right: 140px;
  top: -50px;
  z-index: 0;
}

@media screen and (max-width: 900px) {
  .home-layout__head-coins .parallax-image:nth-child(4) {
    height: 48px;
    width: 48px;
  }
}

.home-layout__head-coins .parallax-image:nth-child(5) {
  position: absolute;
  right: 40px;
  top: 100px;
  z-index: 0;
}

@media screen and (max-width: 900px) {
  .home-layout__head-coins .parallax-image:nth-child(5) {
    height: 76.6666666667px;
    width: 76.6666666667px;
  }
}

.home-layout__head-coins .parallax-image:nth-child(6) {
  position: absolute;
  right: 57px;
  top: 370px;
  z-index: 0;
}

@media screen and (max-width: 900px) {
  .home-layout__head-coins .parallax-image:nth-child(6) {
    height: 43.3333333333px;
    width: 43.3333333333px;
  }

  .home-layout__head-coins .parallax-image:first-child {
    left: 115px;
    top: -65px;
  }

  .home-layout__head-coins .parallax-image:nth-child(2) {
    left: 80px;
    top: 100px;
  }

  .home-layout__head-coins .parallax-image:nth-child(3) {
    left: 81px;
    top: 350px;
  }

  .home-layout__head-coins .parallax-image:nth-child(4) {
    right: 110px;
    top: -50px;
  }

  .home-layout__head-coins .parallax-image:nth-child(5) {
    right: 60px;
    top: 100px;
  }

  .home-layout__head-coins .parallax-image:nth-child(6) {
    right: 75px;
    top: 370px;
  }
}

.home-layout-row-header {
  padding: 20px 0;
  text-align: left;
}

.home-layout-row-header__title {
  color: #fff;
  font-size: 38px;
  font-weight: 600;
  padding-bottom: 15px;
}

@media screen and (max-width: 900px) {
  .home-layout-row-header__title {
    font-size: 30px;
  }
}

.home-layout-row-header__subtitle {
  color: #5a6972;
  font-size: 16px;
}

.volume_totals .home-layout-row-header__title {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  padding-bottom: 10px;
}

/* 布局相关 */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.justify-center {
  justify-content: center;
}

.items-center {
  align-items: center;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

/* 尺寸相关 */
.size-full {
  width: 100%;
  height: 100%;
}

.w-full {
  width: 100%;
}

.max-w-\\[600px\\] {
  max-width: 600px;
}

/* 间距相关 */
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.gap-8 {
  gap: 2rem;
}

/* 网格相关 */
.grid {
  display: grid;
}

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

/* 文字相关 */
.text-white {
  color: rgb(255 255 255);
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.font-bold {
  font-weight: 700;
}

.opacity-80 {
  opacity: 0.8;
}

/* 响应式断点 - md (768px 及以上) */
@media (min-width: 768px) {
  .md\:w-600 {
    width: 600px;
  }

  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

.container {
  width: 100%;
}
/* 容器和布局相关 */
.container {
  max-width: 28rem; /* max-w-md */
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

@media screen and (min-width: 768px) {
  .cus-fearure-grid {
    width: 600px;
  }
}

.home-tickers {
  background: linear-gradient(180deg, #0e3452 50%, #0e3452 0, #0d1d29 85.8%);
  padding-bottom: 130px;
  position: relative;
}

.home-tickers .ccy-tabs__item {
  color: #5a6972;
  font-size: 15px;
  padding: 20px 2px;
}

.home-tickers .ccy-tabs__item.active {
  color: #fff;
}

.home-tickers__chart-background {
  aspect-ratio: 1920/603;
  background-image: url(/images/home/tickers-chart-background.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  position: absolute;
  width: 100%;
}

.home-tickers .volume_totals {
  text-align: left;
}

.home-tickers .volume_totals .volume-totals__item {
  z-index: 1;
}

.home-tickers .landing_ticker {
  display: block;
  /* margin-bottom: 5rem; */
  max-width: 100%;
  min-height: 56rem;
  padding-top: 2rem;
}

.home-tickers .landing_ticker > .title_row {
  text-align: left;
}

@media screen and (max-width: 900px) {
  .home-tickers .landing_ticker {
    transform: unset;
  }
}

.home-tickers .landing_ticker .stat-table__wrapper.landing-tickers__table {
  height: 599px;
}

.home-tickers
  .landing_ticker
  .stat-table__wrapper.landing-tickers__table
  .symbol-cell
  img {
  margin-right: 10px;
  vertical-align: middle;
  width: 34px;
}

.landing-tickers {
  height: 672px;
  overflow: hidden;
  margin-bottom: 80px;
}

@media screen and (max-width: 900px) {
  .landing-tickers {
    height: 542px;
  }
}

.landing-tickers__securities-legend {
  padding: 25px 28px 10px;
  text-align: left;
}

.landing-tickers__securities-table {
  height: 547px;
}

@media screen and (max-width: 900px) {
  .landing-tickers__securities-table {
    height: 417px;
  }
}

.landing-tickers .landing-table {
  max-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.landing-tickers .landing-table::-webkit-scrollbar {
  height: 6px;
  visibility: visible;
  width: 6px;
}

.landing-tickers .landing-table::-webkit-scrollbar-thumb {
  background: hsla(0, 0%, 86%, 0.2);
}

.landing-tickers .landing-table::-webkit-scrollbar-track {
  background: hsla(0, 0%, 86%, 0.05);
  border-radius: 3px;
}

.landing-tickers .landing-table-header-btn {
  text-transform: unset;
}

.landing-tickers .landing-table .symbol-cell {
  min-width: 110px;
  padding-left: 25px;
  width: 16%;
}

.landing-tickers .landing-table .col-right,
.landing-tickers .landing-table .symbol-cell {
  vertical-align: middle;
}

.landing-tickers .landing-table .symbol-img {
  display: flex;
  margin-right: 15px;
}

.landing-tickers .landing-table td {
  border-bottom: 1px solid #28445b;
}

.landing-tickers .landing-table th {
  border-bottom: 1px solid #28445b;
  height: 60px;
}

@media screen and (max-width: 900px) {
  .landing-tickers .landing-table th {
    height: 40px;
  }
}

.landing-tickers .landing-table .landing-tickers__derivatives-category {
  padding: 11px 25px;
}

.landing-tickers .symbol-cell,
.landing-tickers .volume-cell {
  max-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.landing-tickers__fav-button {
  fill: #a7b6c2;
  background: transparent;
  border: none;
  cursor: pointer;
  height: 30px;
  padding: 0;
  width: 50px;
}

.landing-tickers__fav-button:focus {
  outline: none;
}

.landing-tickers__fav-button svg {
  display: block;
  width: 100%;
}

@media only screen and (max-width: 575px),
  only screen and (min-width: 576px) and (max-width: 767px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .landing-tickers__fav-button {
    width: unset;
  }
}

.landing-tickers__fav-section {
  min-height: 22rem;
}

.landing-tickers__fav-section .landing-tickers {
  height: auto;
}

.landing-tickers__heading {
  border-bottom: 1px solid #28445b;
  padding: 10px 25px;
  text-align: left;
  text-transform: uppercase;
}

.landing-tickers__star {
  fill: rgb(var(--text-color));
}

.landing-tickers__fav-column {
  width: 50px;
}

a.landing-tickers__search {
  color: rgb(var(--text-color));
  cursor: pointer;
  display: block;
  line-height: 30px;
  margin-left: auto;
  text-align: right;
}

a.landing-tickers__search svg {
  fill: #586871;
}

a.landing-tickers__search-active svg {
  fill: #fff;
}

.landing-tickers__search-group {
  margin-bottom: 10px;
  margin-top: 10px;
}

.landing-tickers__fav-tab {
  cursor: pointer;
}

.landing-tickers__wrap-table {
  width: 100%;
}

.landing-tickers__funding-table .fav-cell {
  width: 7%;
}

@media screen and (max-width: 900px) {
  .landing-tickers__funding-table .fav-cell {
    width: 8%;
  }

  .landing-tickers__funding-table .symbol-cell {
    width: 20%;
  }
}

.landing-tickers__funding-table .price-cell {
  width: 12%;
}

@media screen and (max-width: 900px) {
  .landing-tickers__funding-table .price-cell {
    display: none;
  }
}

.landing-tickers__funding-table .price-annual-cell {
  width: 12%;
}

@media screen and (max-width: 900px) {
  .landing-tickers__funding-table .price-annual-cell {
    display: none;
  }
}

.landing-tickers__funding-table .ffr-cell {
  width: 13%;
}

@media screen and (max-width: 900px) {
  .landing-tickers__funding-table .ffr-cell {
    display: none;
  }
}

.landing-tickers__funding-table .apr-cell {
  width: 12%;
}

@media screen and (max-width: 900px) {
  .landing-tickers__funding-table .apr-cell {
    width: 20%;
  }
}

.landing-tickers__funding-table .daily-change-cell {
  width: 10%;
}

@media screen and (max-width: 900px) {
  .landing-tickers__funding-table .daily-change-cell {
    width: 20%;
  }
}

.landing-tickers__funding-table .volume-cell {
  width: 20%;
}

@media screen and (max-width: 900px) {
  .landing-tickers__funding-table .volume-cell {
    width: 32%;
  }
}

.landing-tickers__trading-table .fav-cell {
  width: 7%;
}

@media screen and (max-width: 900px) {
  .landing-tickers__trading-table .fav-cell {
    text-align: center;
    width: 8%;
  }
}

.landing-tickers__trading-table .symbol-cell img {
  width: 34px;
}

@media screen and (max-width: 900px) {
  .landing-tickers__trading-table .symbol-cell {
    width: 24%;
  }
}

.landing-tickers__trading-table .price-cell {
  width: 15%;
}

@media screen and (max-width: 900px) {
  .landing-tickers__trading-table .price-cell {
    width: 16%;
  }
}

.landing-tickers__trading-table .daily-change-cell {
  width: 13%;
}

@media screen and (max-width: 900px) {
  .landing-tickers__trading-table .daily-change-cell {
    width: 16%;
  }
}

.landing-tickers__trading-table .day-high-cell {
  width: 15%;
}

@media screen and (max-width: 900px) {
  .landing-tickers__trading-table .day-high-cell {
    display: none;
  }
}

.landing-tickers__trading-table .day-low-cell {
  width: 15%;
}

@media screen and (max-width: 900px) {
  .landing-tickers__trading-table .day-low-cell {
    display: none;
  }
}

.landing-tickers__trading-table .volume-cell {
  width: 15%;
}

@media screen and (max-width: 900px) {
  .landing-tickers__trading-table .volume-cell {
    width: 15%;
  }
}

.landing-tickers__derivative-table .fav-cell {
  width: 7%;
}

@media screen and (max-width: 900px) {
  .landing-tickers__derivative-table .fav-cell {
    width: 8%;
  }

  .landing-tickers__derivative-table .symbol-cell {
    width: 24%;
  }
}

.landing-tickers__derivative-table .price-cell {
  width: 12%;
}

@media screen and (max-width: 900px) {
  .landing-tickers__derivative-table .price-cell {
    width: 16%;
  }
}

.landing-tickers__derivative-table .funding-rate-cell {
  width: 12%;
}

@media screen and (max-width: 900px) {
  .landing-tickers__derivative-table .funding-rate-cell {
    display: none;
  }
}

.landing-tickers__derivative-table .open-interest-cell {
  width: 9%;
}

@media screen and (max-width: 900px) {
  .landing-tickers__derivative-table .open-interest-cell {
    display: none;
  }
}

.landing-tickers__derivative-table .daily-change-cell {
  width: 9%;
}

@media screen and (max-width: 900px) {
  .landing-tickers__derivative-table .daily-change-cell {
    width: 16%;
  }
}

.landing-tickers__derivative-table .day-high-cell {
  width: 9%;
}

@media screen and (max-width: 900px) {
  .landing-tickers__derivative-table .day-high-cell {
    display: none;
  }
}

.landing-tickers__derivative-table .day-low-cell {
  width: 9%;
}

@media screen and (max-width: 900px) {
  .landing-tickers__derivative-table .day-low-cell {
    display: none;
  }
}

.landing-tickers__derivative-table .volume-cell {
  width: 19%;
}

@media screen and (max-width: 900px) {
  .landing-tickers__derivative-table .volume-cell {
    width: 26%;
  }
}

.landing-tickers__category {
  opacity: 0.6;
  padding: 10px 25px !important;
  pointer-events: none;
  text-transform: capitalize;
}

.landing-tickers__container {
  /* background: rgba(13,29,41,.5); */
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 900px) {
  .landing-tickers__header {
    margin: 0 -15px;
  }
}

.landing-tickers__container .landing-tickers__header .ccy-tabs__item {
  color: #5a6972;
  font-size: 15px;
  padding: 20px 2px;
}

.landing-tickers__container .landing-tickers__header .ccy-tabs__item.active {
  color: #fff;
}

.landing-tickers__container thead {
  background: #0e2233;
  position: sticky;
  top: 0;
  z-index: 1;
}

.fav-cell {
  min-width: 32px;
}

.landing-btn {
  align-items: center;
  border-radius: 4px;
  box-shadow: none;
  cursor: pointer;
  display: flex;
  font-size: 15px;
  font-weight: 700;
  height: 44px;
  justify-content: center;
  letter-spacing: 0.02em;
  line-height: 100%;
  min-width: 160px;
  padding: 0 20px;
  text-align: center;
  width: fit-content;
}

.landing-btn:focus {
  outline: none;
}

.landing-btn__primary {
  background: rgb(var(--primary-color-button));
  border: none;
  color: rgb(var(--text-color));
  transition: background-color 0.3s;
}

.landing-btn__primary:hover {
  background-color: rgb(var(--primary-color-button-hover));
}

.landing-btn__primary-blue {
  background: #4166bc;
  border: none;
  color: rgb(var(--text-color));
  transition: background-color 0.3s;
}

.landing-btn__primary-blue:hover {
  background-color: #2e4885;
}

.landing-btn__secondary {
  background: transparent;
  border: 1px solid #586871;
  color: #fff;
  transition: border-color 0.3s;
}

.landing-btn__secondary:hover {
  background: transparent;
  border-color: #f7f7f9;
}

.landing-btn__secondary-blue {
  background: transparent;
  border: 1px solid #586871;
  color: #fff;
  transition: border-color 0.3s;
}

.landing-btn__secondary-blue:hover {
  background: transparent;
  border-color: #f7f7f9;
}

.landing-btn__right-icon {
  align-items: center;
  display: flex;
  margin-left: 8px;
}

.landing-btn__left-icon {
  align-items: center;
  display: flex;
  margin-right: 8px;
}

.landing-btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.buttons-group {
  display: flex;
  flex-direction: row;
  height: auto;
  justify-content: center;
  padding: 0;
}

.buttons-group__left {
  justify-content: flex-start;
}

.buttons-group__right {
  justify-content: flex-end;
}

.buttons-group__item:not(:first-child) {
  margin: 0 0 0 20px;
}

@media screen and (max-width: 900px) {
  .buttons-group {
    flex-direction: column;
    width: 100%;
  }

  .buttons-group__item,
  .buttons-group__item a,
  .buttons-group__item button {
    width: 100%;
  }

  .buttons-group__item:not(:first-child) {
    margin: 20px 0 0;
  }
}

.landing-table {
  font-size: 15px;
  font-weight: 400;
  width: 100%;
}

.landing-table table {
  border-spacing: 0;
  letter-spacing: 1px;
  width: 100%;
}

.landing-table tr {
  width: 100%;
}

.landing-table tr:hover td {
  background-color: rgb(var(--surface-color));
  cursor: pointer;
}

.landing-table td,
.landing-table th {
  padding: 11px;
  text-align: left;
  vertical-align: top;
}

.landing-table th {
  border-bottom: 1px solid #434f59;
}

.landing-table .col-right {
  text-align: right;
}

.landing-table .col-center {
  text-align: center;
}

.landing-table__striped tr:nth-child(odd):not(:hover) td {
  background: rgba(92, 112, 128, 0.15);
}

@media only screen and (max-width: 575px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .landing-table,
  .landing-table button {
    font-size: 11px;
  }

  .landing-table td,
  .landing-table th {
    word-wrap: none;
    padding: 6px 2px;
  }
}

.landing-table-header-btn {
  fill: #82baf6;
  background: transparent;
  border: unset;
  color: #82baf6;
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
  height: fit-content;
  margin: 0;
  min-height: 30px;
  padding: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.landing-table-header-btn .injected-svg {
  display: block;
  vertical-align: middle;
}

.landing-table-header-btn:focus {
  outline: none;
}

.landing-table-header-btn__clickable {
  cursor: pointer;
}

.landing-table-header-btn__content {
  align-items: center;
  display: flex;
  flex-direction: row;
}

.landing-table-header-btn__content svg {
  margin-left: 8px;
  opacity: 0.5;
}

/* 显示/隐藏相关 */
.hidden {
  display: none;
}

/* 表格相关 */
.table-cell {
  display: table-cell;
}

/* 自定义列对齐类 */
.col-right {
  text-align: right;
}

/* 响应式断点 - md (768px 及以上) */
@media (min-width: 768px) {
  .md\:table-cell {
    display: table-cell;
  }
}

/* xs: 0-575px */
.hide_xs {
  display: none;
}

/* sm: 576px-767px */
.hide_sm {
  display: none;
}

/* md: 768px-991px */
.hide_md {
  display: initial;
}

/* lg: 992px-1199px */
.hide_lg {
  display: initial;
}

/* xl: 1200px-1399px */
.hide_xl {
  display: initial;
}

/* xxl: 1400px+ */
.hide_xxl {
  display: initial;
}

/* 媒体查询实现 */
@media (min-width: 576px) {
  .hide_xs {
    display: initial;
  }
  .hide_sm {
    display: none;
  }
}

@media (min-width: 768px) {
  .hide_sm {
    display: initial;
  }
  .hide_md {
    display: none;
  }
}

@media (min-width: 992px) {
  .hide_md {
    display: initial;
  }
  .hide_lg {
    display: none;
  }
}

@media (min-width: 1200px) {
  .hide_lg {
    display: initial;
  }
  .hide_xl {
    display: none;
  }
}

@media (min-width: 1400px) {
  .hide_xl {
    display: initial;
  }
  .hide_xxl {
    display: none;
  }
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.space-x-4 > * + * {
  margin-left: 1rem;
}

/* 尺寸相关 */
.size-10 {
  width: 2.5rem;
  height: 2.5rem;
}

.w-6 {
  width: 1.5rem;
}

.h-6 {
  height: 1.5rem;
}

/* 内边距 */
.p-4 {
  padding: 1rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

/* 背景和边框 */
.bg-gray-900 {
  background-color: rgb(17 24 39);
}

.bg-gray-800 {
  background-color: rgb(31 41 55);
}

.bg-blue-600 {
  background-color: rgb(37 99 235);
}

.border {
  border-width: 1px;
}

.border-gray-700 {
  border-color: rgb(55 65 81);
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

/* 文字相关 */
.text-white {
  color: rgb(255 255 255);
}

.text-gray-400 {
  color: rgb(156 163 175);
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.font-medium {
  font-weight: 500;
}

/* 图像相关 */
.object-contain {
  object-fit: contain;
}

.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast)
    var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate)
    var(--tw-sepia) var(--tw-drop-shadow);
}

.brightness-0 {
  --tw-brightness: brightness(0);
}

.invert {
  --tw-invert: invert(100%);
}

/* 过渡动画 */
.transition-colors {
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.duration-200 {
  transition-duration: 200ms;
}

/* 悬停效果 */
.hover\:bg-gray-800:hover {
  background-color: rgb(31 41 55);
}

/* 响应式断点 */
@media (min-width: 768px) {
  .md\:size-12 {
    width: 3rem;
    height: 3rem;
  }

  .md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

@media screen and (min-width: 1025px) {
  blockquote,
  body,
  dd,
  dl,
  dt,
  fieldset,
  figure,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  hr,
  html,
  iframe,
  legend,
  li,
  ol,
  p,
  pre,
  textarea,
  ul {
    margin: 0;
    padding: 0;
  }
}
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

/* * {
  text-align: left;
} */

/* 字体粗细 */
.font-medium {
  font-weight: 500;
}

/* 文字颜色 */
.text-white {
  color: rgb(255 255 255);
}

/* 文字对齐 */
.text-right {
  text-align: right;
}

.landing-table {
  background: rgba(13, 29, 41, 0.5);
}

.text-red-500 {
    --tw-text-opacity: 1;
    color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.text-green-500 {
    --tw-text-opacity: 1;
    color: rgb(34 197 94 / var(--tw-text-opacity, 1));
}
.mr-2 {
  margin-right: 0.5rem;
}

*,:before,:after {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / .5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style:
}
.grayscale {
    --tw-grayscale: grayscale(100%);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

.invert {
    --tw-invert: invert(100%);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

.\!filter {
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)!important
}

.filter {
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

.backdrop-blur-sm {
    --tw-backdrop-blur: blur(4px);
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)
}

.text-left {
  text-align: left;
}


.home-advanced-features {
    overflow: hidden
}

.home-advanced-features.dark {
    background-color: rgb(var(--background-color))
}

.home-advanced-features__hero-image {
    background-image: url(/images/trading_coins.png);
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    flex: 1 1;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0
}

.home-advanced-features__hero {
    align-items: center;
    min-height: 450px
}

.home-advanced-features__hero-title {
    flex-grow: 1;
    font-size: 66px;
    font-weight: 600;
    max-width: 650px;
    position: relative;
    z-index: 1
}

@media screen and (max-width: 900px) {
    .home-advanced-features__hero {
        min-height:220px
    }

    .home-advanced-features__hero-title {
        font-size: 38px;
        max-width: 400px;
        max-width: 70%
    }
}

.home-advanced-features h3 {
    color: rgb(var(--primary-color));
    font-size: 22px;
    font-weight: 500;
    margin-top: 0
}

@media screen and (min-width: 900px) {
    .home-advanced-features h3 {
        margin-bottom:.5rem;
        margin-top: 1rem
    }
}

.home-advanced-features .content_wrapper {
    position: relative
}

.home-advanced-features__content-wrapper {
    background: url(/images/dashboard.png);
    background-position: top 0 right -40px;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 10px 0
}

@media only screen and (min-width: 1200px)and (max-width:1408px) {
    .home-advanced-features__content-wrapper {
        background-position:top 0 right -150px
    }
}

@media only screen and (min-width: 992px)and (max-width:1199px) {
    .home-advanced-features__content-wrapper {
        background-position:top 0 right -250px
    }
}

@media only screen and (min-width: 768px)and (max-width:991px) {
    .home-advanced-features__content-wrapper {
        background-position:top 0 right -380px
    }
}

@media screen and (max-width: 900px) {
    .home-advanced-features__content-wrapper {
        background:none
    }
}

.home-advanced-features__content {
    align-items: center;
    display: flex;
    flex-direction: row
}

.home-advanced-features__content>div {
    width: 45%
}

.home-advanced-features__content .home-layout-row-header {
    padding: 0
}

.home-advanced-features__content .home-layout-row-header__title {
    color: transparent;
    font-size: 38px;
    line-height: 46px;
    margin-bottom: 10px
}

.home-advanced-features__content .home-layout-row-header__subtitle {
    color: #fff;
    font-size: 24px;
    line-height: 31px;
    margin-bottom: 30px;
    max-width: 300px
}

.home-advanced-features__content p {
    margin-bottom: 10px
}

@media screen and (max-width: 900px) {
    .home-advanced-features__content {
        align-items:flex-start;
        flex-direction: column
    }

    .home-advanced-features__content>div {
        width: 100%
    }

    .home-advanced-features__content .buttons-group {
        flex-direction: column-reverse;
        gap: 20px
    }
}

.home-advanced-features__content-image img {
    width: 100%
}

@media only screen and (min-width: 1200px)and (max-width:1408px),only screen and (min-width:1409px) {
    .home-advanced-features__content-image img {
        position:relative;
        right: 0;
        width: 80%
    }
}

@media screen and (min-width: 900px) {
    .home-advanced-features__content-image img {
        position:relative;
        right: -20%
    }
}

.home-advanced-features__content .buttons-group {
    margin: 20px 0 37px
}

.home-advanced-features__content .description {
    color: #808b93;
    font-size: 16px
}

.home-advanced-features__content .description>p {
    margin-bottom: 20px
}

.home-advanced-features .read_more {
    display: block;
    width: 100%
}

.home-advanced-features .features-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 75px
}

.home-advanced-features .features-grid .box {
    flex: 33.3% 1
}

.home-advanced-features .features-grid .box .description {
    margin-bottom: 1rem
}

.home-advanced-features .features-grid .box img {
    transform: translateX(-10px)
}

@media screen and (max-width: 900px) {
    .home-advanced-features .features-grid {
        flex-wrap:wrap
    }

    .home-advanced-features .features-grid .box {
        flex: 100% 1
    }
}

.home-advanced-features .home-advanced-features__coins {
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%
}

.home-advanced-features .home-advanced-features__coins .parallax-images-wrapper {
    transform: scale(.7) translateX(130px);
    transform-origin: right
}

@media screen and (min-width: 900px) {
    .home-advanced-features .home-advanced-features__coins .parallax-images-wrapper {
        transform:scale(1)
    }
}

.home-advanced-features .home-advanced-features__coins .parallax-images-wrapper .parallax-image:first-child {
    position: absolute;
    right: 290px;
    top: 20px;
    z-index: 0
}

.home-advanced-features .home-advanced-features__coins .parallax-images-wrapper .parallax-image:nth-child(2) {
    position: absolute;
    right: 60px;
    top: 100px;
    z-index: 0
}

.home-advanced-features .home-advanced-features__coins .parallax-images-wrapper .parallax-image:nth-child(3) {
    position: absolute;
    right: 200px;
    top: 150px;
    z-index: 0
}

.home-advanced-features .home-advanced-features__coins .parallax-images-wrapper .parallax-image:nth-child(4) {
    position: absolute;
    right: 110px;
    top: 260px;
    z-index: 0
}

.home-advanced-features .home-advanced-features__coins .parallax-images-wrapper .parallax-image:nth-child(5) {
    position: absolute;
    right: 310px;
    top: 290px;
    z-index: 0
}

.home-advanced-features .home-advanced-features__coins .parallax-images-wrapper .parallax-image:nth-child(6) {
    position: absolute;
    right: 190px;
    top: 380px;
    z-index: 0
}

@media screen and (min-width: 900px) {
    section.home-advanced-features .grid .box .description {
        width:100%
    }
}

/* ===== 功能特性列表组件 ===== */

/* 组件根元素 */
.features {
    background-color: #102331;
}

/* 容器 */
.features__container {
    background-color: #102331;
    padding: 1rem;
    max-width: 28rem;
    margin: 0 auto;
}

/* 卡片列表 */
.features__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* 功能卡片 */
.features__card {
    background-color: rgb(17, 24, 39);
    border: 1px solid rgb(55, 65, 81);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: background-color 200ms cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

/* 卡片悬停状态 */
.features__card:hover {
    background-color: rgb(31, 41, 55);
}

/* 卡片内容区域 */
.features__card-content {
    margin-bottom: 1rem;
}

/* 图标容器 */
.features__icon-container {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgb(75, 85, 99);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

/* 图标 */
.features__icon {
    width: 1.25rem;
    height: 1.25rem;
    object-fit: contain;
    filter: brightness(0) invert(100%);
}

/* 卡片标题 */
.features__title {
    color: rgb(255, 255, 255);
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* 卡片描述 */
.features__description {
    color: rgb(156, 163, 175);
    font-size: 0.875rem;
    line-height: 1.625;
    margin: 0;
}

/* ===== 响应式设计 ===== */

/* 平板尺寸 */
@media (min-width: 768px) {
    .features__container {
        padding: 1.5rem;
        max-width: 32rem;
    }
    
    .features__card {
        padding: 2rem;
    }
    
    .features__list {
        gap: 1.5rem;
    }
    
    .features__icon-container {
        width: 3rem;
        height: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .features__icon {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .features__title {
        font-size: 1.25rem;
        line-height: 1.875rem;
        margin-bottom: 0.75rem;
    }
    
    .features__description {
        font-size: 1rem;
        line-height: 1.75;
    }
}

/* 桌面尺寸 */
@media (min-width: 1024px) {
    .features__container {
        max-width: 36rem;
        padding: 2rem;
    }
    
    .features__list {
        gap: 2rem;
    }
    
    .features__card {
        padding: 2.5rem;
    }
}

/* ===== 修饰符类（可选） ===== */

/* 紧凑模式 */
.features--compact .features__card {
    padding: 1rem;
}

.features--compact .features__icon-container {
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.75rem;
}

.features--compact .features__icon {
    width: 1rem;
    height: 1rem;
}

.features--compact .features__title {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.features--compact .features__description {
    font-size: 0.75rem;
}

/* 大尺寸模式 */
.features--large .features__card {
    padding: 2rem;
}

.features--large .features__icon-container {
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1.5rem;
}

.features--large .features__icon {
    width: 1.75rem;
    height: 1.75rem;
}

.features--large .features__title {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 1rem;
}

.features--large .features__description {
    font-size: 1rem;
    line-height: 1.75;
}

/* ===== 状态类 ===== */

/* 加载状态 */
.features__card--loading {
    opacity: 0.6;
    pointer-events: none;
}

.features__card--loading .features__icon {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* 激活状态 */
.features__card--active {
    background-color: rgb(31, 41, 55);
    border-color: rgb(59, 130, 246);
    box-shadow: 0 0 0 1px rgb(59, 130, 246, 0.5);
}

/* 禁用状态 */
.features__card--disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.features__card--disabled:hover {
    background-color: rgb(17, 24, 39);
}

/* ===== 动画 ===== */

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* 卡片进入动画 */
.features__card {
    animation: fadeInUp 0.6s ease-out;
}

.features__card:nth-child(1) {
    animation-delay: 0.1s;
}

.features__card:nth-child(2) {
    animation-delay: 0.2s;
}

.features__card:nth-child(3) {
    animation-delay: 0.3s;
}

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

/* ===== 辅助功能 ===== */

/* 聚焦状态 */
.features__card:focus {
    outline: 2px solid rgb(59, 130, 246);
    outline-offset: 2px;
}

/* 减少动画偏好 */
@media (prefers-reduced-motion: reduce) {
    .features__card {
        animation: none;
        transition: none;
    }
}

/* 高对比度模式 */
@media (prefers-contrast: high) {
    .features__card {
        border-width: 2px;
    }
    
    .features__icon-container {
        border-width: 2px;
    }
}


:root {
    --animation-duration: 12s;
    --item-width: 386px;
    --item-count: 7
}

@keyframes slider-loop {
    0% {
        transform: translateX(0)
    }

    to {
        transform: translateX(calc(var(--item-width)*-1*var(--item-count)))
    }
}

@keyframes slider-float {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(5px)
    }

    to {
        transform: translateY(0)
    }
}

.garland-slider {
    background-color: rgb(var(--background-color));
    display: flex;
    min-height: 400px;
    overflow: hidden
}

.garland-slider__container {
    align-items: flex-start;
    animation-delay: 2s;
    display: flex;
    width: calc(var(--item-width)*var(--item-count)*2)
}

.garland-slider__container.animation-enabled {
    animation: slider-loop var(--animation-duration) linear infinite
}

.garland-slider__container:hover {
    animation-play-state: paused!important
}

.garland-slider__card {
    animation-duration: var(--animation-time);
    animation-iteration-count: infinite;
    animation-name: slider-float;
    animation-timing-function: ease-in-out;
    background-color: #172d3e;
    border-radius: 6px;
    padding: 2rem;
    transition: transform .1s
}

.garland-slider__card-wrapper {
    padding: 1rem
}

.garland-slider__card-wrapper:nth-child(2n) {
    margin-top: 1rem
}

.garland-slider__card-wrapper:nth-child(3n) {
    margin-top: 2rem
}

.garland-slider__card-title {
    font-size: 24px;
    font-weight: 700;
    margin: 14px 0
}

.garland-slider__card-desc {
    color: #5a6972;
    color: #808b93;
    font-size: 14px;
    line-height: 140%
}

.garland-slider__card .arrow-link {
    margin-top: 14px
}

.header-banners {
    animation: fadeIn .5s .3s forwards;
    padding: 0 32px;
    width: 100%
}

@media screen and (max-width: 900px) {
    .header-banners {
        padding:0
    }
}

:root {
    --animation-time: 2s
}

.parallax-images-wrapper {
    pointer-events: none
}

.parallax-images-wrapper .parallax-image {
    animation-duration: var(--animation-time);
    animation-iteration-count: infinite;
    animation-name: float;
    animation-timing-function: ease-in-out;
    transition: transform .1s
}

@keyframes float {
    0% {
        margin-top: 0
    }

    50% {
        margin-top: 15px
    }

    to {
        margin-top: 0
    }
}


.our_app {
    background-color: rgb(var(--background-color));
    min-height: auto;
    overflow: hidden;
    padding-bottom: 0
}

.our_app__icons {
    background-image: url(/images/mobile-section-bg.svg);
    background-position: -1px;
    background-size: cover;
    height: 300px
}

@media screen and (max-width: 900px) {
    .our_app__icons {
        text-align:center
    }
}

.our_app__icons .parallax-images-wrapper {
    transform: scale(.7);
    transform-origin: center
}

@media screen and (min-width: 900px) {
    .our_app__icons .parallax-images-wrapper {
        transform:scale(1)
    }
}

.our_app__icons .parallax-images-wrapper .parallax-image:first-child {
    left: 260px;
    position: absolute;
    top: 20px;
    z-index: 0
}

.our_app__icons .parallax-images-wrapper .parallax-image:nth-child(2) {
    left: 100px;
    position: absolute;
    top: 110px;
    z-index: 0
}

.our_app__icons .parallax-images-wrapper .parallax-image:nth-child(3) {
    left: 470px;
    position: absolute;
    top: 60px;
    z-index: 0
}

.our_app__icons .parallax-images-wrapper .parallax-image:nth-child(4) {
    left: 190px;
    position: absolute;
    top: 170px;
    z-index: 0
}

.our_app__icons .parallax-images-wrapper .parallax-image:nth-child(5) {
    left: 360px;
    position: absolute;
    top: 150px;
    z-index: 0
}

.our_app__icons .parallax-images-wrapper .parallax-image:nth-child(6) {
    left: 50px;
    position: absolute;
    top: 220px;
    z-index: 0
}

.our_app__content {
    background: linear-gradient(180deg,rgba(14,46,53,.5),rgba(14,46,53,.5) 72.91%,rgba(14,46,53,0) 99.99%);
    display: flex;
    margin: 0 auto;
    padding-bottom: 0;
    position: relative
}

.our_app__content-main {
    display: flex;
    flex-direction: column;
    justify-content: center
}

.our_app__content .content_wrapper {
    display: flex;
    flex-direction: column;
    margin: 0 auto 50px;
    padding: 0 64px;
    position: relative
}

@media screen and (min-width: 900px) {
    .our_app__content .content_wrapper {
        flex-direction:row
    }
}

@media screen and (max-width: 900px) {
    .our_app__content .content_wrapper {
        padding:0 25px
    }
}

.our_app__content-main {
    max-width: 500px;
    width: 100%
}

@media screen and (max-width: 900px) {
    .our_app__content-main {
        max-width:unset
    }
}

.our_app__content-main .our_app_header {
    padding: 20px 0 30px;
    text-align: left
}

.our_app__content-main .our_app_header__title {
    background: linear-gradient(90deg,#03ca9b .5%,#03beca);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 10px
}

.our_app__content-main .our_app_header__subtitle {
    color: #fff;
    font-size: 24px;
    font-weight: 600
}

.our_app__content-main__description {
    color: #586871;
    display: inline-block;
    font-size: 16px
}

@media screen and (max-width: 900px) {
    .our_app .app_links {
        gap:20px;
        justify-content: center
    }

    .our_app .app_links a {
        background: #000;
        display: flex;
        justify-content: center;
        margin-right: 0;
        width: 100%
    }
}

.our_app .main_content {
    align-self: center;
    padding-bottom: 3rem;
    z-index: 1
}

@media screen and (min-width: 900px) {
    .our_app .main_content {
        width:50%
    }
}

.our_app .main_content p {
    color: #5a6972
}

.our_app .image_container {
    align-items: center;
    display: flex;
    justify-content: center
}

@media screen and (min-width: 900px) {
    .our_app .image_container {
        text-align:right
    }
}

.our_app .image_container img {
    width: 80%
}

@media screen and (min-width: 900px) {
    .our_app .image_container img {
        position:relative;
        right: -30%;
        width: 120%
    }

    .our_app .lp_subtitle {
        width: 450px
    }
}

.our_app .download_link {
    padding: 22px 0 2em
}

.our_app .download_link a {
    font-size: 20px
}

@media screen and (max-width: 900px) {
    .our_app .main_content {
        padding-bottom:0
    }
}

/* 在现有CSS末尾添加以下样式 */

/* ========== HTML Footer 样式 ========== */

/* 桌面端Footer样式 */
.html-page-footer {
  padding: 120px 0 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  color: #fff;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.html-page-footer .first-content-outer {
  width: 1200px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}

.html-page-footer .first-content-outer .law-disclaimer {
  margin-top: 40px;
  width: 954px;
  text-align: left;
}

.html-page-footer .first-content-outer .law-disclaimer .title {
  color: #959da4;
  font-size: 12px;
  line-height: 18px;
}

.html-page-footer .first-content-outer .law-disclaimer .content {
  color: rgba(149, 157, 164, 0.65);
  font-size: 12px;
  padding: 0;
  line-height: 18px;
  font-weight: 300;
  font-family: PingFang SC, robotoregular, Hiragino Sans GB, Heiti SC,
    Microsoft YaHei, WenQuanYi Micro Hei, Helvetica, Arial, monospace, serif !important;
}

.html-page-footer .first-content {
  display: flex;
  justify-content: center;
}

.html-page-footer .page-footer-content {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  width: calc(100% - 200px);
  max-width: 1200px;
}

.html-page-footer .page-footer-content .logo-content img {
  height: 42px;
}

.html-page-footer .page-footer-content .footer-icons .footer-icon {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.html-page-footer .page-footer-content .logo-content-outer {
  display: flex;
  flex-direction: column;
}

.html-page-footer .page-footer-content .logo-content-outer .language-title {
  color: #8b909b;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  margin-top: 24px;
  margin-bottom: 8px;
}

.html-page-footer .page-footer-content .logo-content-outer .language-current {
  cursor: pointer;
  width: 200px;
  height: 40px;
  padding: 10px;
  border-radius: 2px;
  border: 1px solid rgba(148, 158, 164, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #fff;
}

.html-page-footer .page-footer-content .logo-content-outer .language-current .expand {
  width: 16px;
  height: 16px;
}

.html-page-footer .page-footer-content .logo-content {
  text-align: left;
}

.html-page-footer .page-footer-content .logo-content img {
  width: 199px;
  height: auto;
}

.html-page-footer .page-footer-content .logo-content .sub-title {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  color: #8b909b !important;
}

.html-page-footer .page-footer-content .tg-content .qr_code_canvas {
  margin-bottom: 10px;
}

.html-page-footer .page-footer-content .tg-content .qr_code_canvas canvas {
  border: 3px solid #fff;
}

.html-page-footer .page-footer-content .tg-content img {
  width: 80px;
  height: 80px;
}

.html-page-footer .page-footer-content .tg-content li {
  color: #8b909b;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  margin-top: 10px;
}

.html-page-footer .page-footer-content .text-content {
  vertical-align: top;
}

.html-page-footer .page-footer-content .text-content li {
  color: #959da4;
  font-size: 12px;
  margin: 0 0 17px;
  text-align: left;
  cursor: pointer;
}

.html-page-footer .page-footer-content .text-content li:hover {
  color: hsla(0, 0%, 100%, 0.7);
}

.html-page-footer .page-footer-content .text-content a {
  color: #959da4;
  font-size: 12px;
  margin: 0 0 17px;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
}

.html-page-footer .page-footer-content .text-content a:hover {
  color: hsla(0, 0%, 100%, 0.7);
}

.html-page-footer .page-footer-content .sub-title {
  font-size: 16px;
  color: #8b909b!important;
  text-align: left;
}

.html-page-footer .page-footer-content .text-content .sub-title:hover {
  color: #7e8392;
}

/* 移动端Footer样式 */
.html-footer-panel {
  padding: 8vw 5.333vw 8vw 5.333vw;
  background-color: #000;
  color: #fff;
  display: none; /* 默认隐藏，在移动端显示 */
}

.html-footer-panel .footer-panel-logoInfo {
  margin-bottom: 6.4vw;
}

.html-footer-panel .footer-panel-logoInfo-tip {
  color: #8b909b;
  font-size: 3.733vw;
  font-weight: 400;
  margin-top: 2.133vw;
  line-height: 4.8vw;
}

.html-footer-panel-items {
  border-bottom: 0.267vw solid #3c3c3c;
  padding-bottom: 6.4vw;
  margin-bottom: 6.4vw;
  display: flex;
}

.html-footer-panel-items-item {
  margin-bottom: 3.2vw;
}

.html-footer-panel-items-item-title {
  color: #fff;
  font-size: 4.8vw;
  font-style: normal;
  font-weight: 500;
  line-height: 6.133vw;
  margin-bottom: 3.2vw;
}

.html-footer-panel-items-item-content {
  margin-bottom: 3.2vw;
}

.html-footer-panel-items-item-content-link {
  color: #8b909b;
  font-size: 3.733vw;
  font-style: normal;
  font-weight: 400;
  line-height: 5.6vw;
  text-decoration: none;
}

.html-footer-panel-items-item-content-link:hover {
  color: hsla(0, 0%, 100%, 0.7);
}

.html-menu-panel-popup-bottom {
  margin-top: 4vw;
}

.html-menu-panel-popup-bottom-tgBtn {
  color: #fff;
  background-color: transparent;
  padding: 3.2vw 6.4vw;
  border-radius: 6.4vw;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 4vw;
  font-size: 3.733vw;
  font-weight: 500;
}

.html-menu-panel-popup-bottom-tgBtn:hover {
  /* background-color: #157a6e; */
  color: #fff;
}

.html-menu-panel-popup-bottom-otherBtns {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.html-menu-panel-popup-bottom-otherBtns a {
  text-decoration: none;
}

.html-menu-panel-popup-bottom-otherBtns .footer-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.html-menu-panel-popup-bottom-otherBtns .footer-icon:hover {
  transform: scale(1.1);
}

.html-footer-panel .law-disclaimer {
  text-align: center;
  margin-top: 6.4vw;
}

.html-footer-panel .law-disclaimer .title {
  color: #959da4;
  font-size: 3.2vw;
  line-height: 5.867vw;
}

.html-footer-panel .law-disclaimer .content {
  color: rgba(149, 157, 164, 0.65);
  font-size: 3.2vw;
  line-height: 5.867vw;
  font-weight: 300;
}

/* Logo 样式 */
.html-logo {
  /* height: 40px; */
  width: auto;
}

.html-logo img {
  height: 100%;
  width: auto;
}

/* Flexbox 工具类 */
.html-flex {
  display: flex;
}

.html-items-center {
  align-items: center;
}

.html-gap-2 {
  gap: 0.5rem;
}

.html-gap-5 {
  gap: 1.25rem;
}

.html-mb-2 {
  margin-bottom: 0.5rem;
}

.html-mt-3 {
  margin-top: 0.75rem;
}

.html-hidden {
  display: none;
}

/* VantUI Grid 系统模拟 */
.html-van-row {
  display: flex;
  flex-wrap: wrap;
}

.html-van-row--flex {
  display: flex;
}

.html-van-row--justify-space-between {
  justify-content: space-between;
}

.html-van-col {
  flex: 1;
}

.html-van-col--12 {
  flex: 0 0 50%;
  max-width: 50%;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .html-page-footer {
    display: none;
  }
  
  .html-footer-panel {
    display: block;
  }
}

@media (min-width: 769px) {
  .html-page-footer {
    display: flex;
  }
  
  .html-footer-panel {
    display: none;
  }
}

/* TikTok和Facebook图标的特殊样式 */
.html-footer-panel .bg-white {
  background: #fff;
}

.html-footer-panel .rounded-full {
  border-radius: 50%;
}
.html-page-footer .bg-white {
  background: #fff;
}

.html-page-footer .rounded-full {
  border-radius: 50%;
}

.tg-content > a {
          color: #8b909b;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 18px;
        margin-top: 10px;
}
@media screen and (max-width: 1025px) {
    .html-menu-panel-popup-bottom {
        display: flex
;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 3.2vw;
        margin-bottom: 3.2vw;
        padding-top: 3.2vw;
        padding-bottom: 3.2vw;
    }
}
@media screen and (max-width: 1025px) {
    .html-footer-panel .html-menu-panel-popup-bottom-tgBtn {
        color: #fff;
    }
}
@media screen and (max-width: 1025px) {
    .html-menu-panel-popup-bottom-tgBtn {
        min-width: 58.133vw;
        font-size: 4.267vw;
        font-style: normal;
        font-weight: 500;
        line-height: 5.6vw;
        color: var(--homeFontColor);
        border-radius: 6.667vw;
        border: 1px solid var(--Light04-border-c_s_b01, #cbcbcb);
        padding: 3.2vw 8.533vw;
    }
}/* Added comment for test */
