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

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      background: #0D0E14;
      color: #ffffff;
      min-height: 100vh;
      overflow-x: hidden;
      position: relative;
    }

    /* TokenPocket 风格背景效果 */
    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background:
        linear-gradient(180deg, #1A1D29 0%, #0D0E14 100%),
        radial-gradient(ellipse at 20% 20%, rgba(23, 124, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(78, 56, 216, 0.12) 0%, transparent 50%);
      z-index: -1;
      pointer-events: none;
    }

    /* 导航栏 */
    .navbar {
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 20px;
      background: rgba(26, 29, 41, 0.8);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      z-index: 100;
    }

    .logo-section {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo-icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, #177CFF 0%, #4E38D8 100%);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: bold;
      color: white;
      box-shadow: 0 4px 12px rgba(23, 124, 255, 0.3);
    }

    .logo-text h1 {
      font-size: 18px;
      font-weight: bold;
      color: white;
      line-height: 1.2;
    }

    .logo-text p {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1;
    }

    .nav-controls {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .language-switch {
      display: flex;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      padding: 2px;
    }

    .lang-btn {
      padding: 6px 12px;
      border: none;
      border-radius: 6px;
      background: transparent;
      color: rgba(255, 255, 255, 0.7);
      cursor: pointer;
      font-size: 14px;
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .lang-btn.active {
      background: rgba(255, 255, 255, 0.2);
      color: white;
    }

    .connect-btn {
      background: linear-gradient(135deg, #177CFF 0%, #4E38D8 100%);
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 12px;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 6px;
      box-shadow: 0 4px 12px rgba(23, 124, 255, 0.25);
    }

    .connect-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(23, 124, 255, 0.4);
    }

    .wallet-info {
      background: rgba(255, 255, 255, 0.1);
      padding: 8px 16px;
      border-radius: 12px;
      font-size: 14px;
      color: white;
      display: none;
    }

    /* 汉堡菜单 */
    .menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 20px;
      color: white;
      cursor: pointer;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .nav-menu a {
      color: rgba(255, 255, 255, 0.9);
      text-decoration: none;
      font-weight: 500;
      font-size: 14px;
      transition: color 0.3s ease;
      cursor: pointer;
    }

    .nav-menu a:hover {
      color: white;
    }

    /* 主要内容区域 */
    .main-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    /* 合作伙伴提示 */
    .partnership-banner {
      margin-bottom: 24px;
      background: linear-gradient(135deg, rgba(23, 124, 255, 0.1) 0%, rgba(78, 56, 216, 0.1) 100%);
      border: 1px solid rgba(23, 124, 255, 0.2);
      border-radius: 16px;
      padding: 16px;
      backdrop-filter: blur(10px);
    }

    .partnership-content {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .partnership-icon {
      width: 24px;
      height: 24px;
      color: #177CFF;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .partnership-text h3 {
      font-size: 16px;
      font-weight: 600;
      color: white;
      margin-bottom: 4px;
    }

    .partnership-text p {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.4;
    }

    /* 主要布局 */
    .content-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 24px;
    }

    /* 主要卡片 */
    .main-card, .side-card {
      background: rgba(26, 29, 41, 0.6);
      backdrop-filter: blur(20px);
      border-radius: 20px;
      padding: 24px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }

    /* 资产统计 */
    .asset-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 24px;
    }

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

    .stat-label {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 8px;
    }

    .stat-value {
      font-size: 32px;
      font-weight: bold;
      color: white;
    }

    .stat-value.green {
      color: #10b981;
    }

    /* 资产列表 */
    .asset-section h3 {
      font-size: 16px;
      font-weight: 600;
      color: white;
      margin-bottom: 16px;
    }

    .token-list {
      max-height: 200px;
      overflow-y: auto;
      margin-bottom: 24px;
    }

    .token-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 12px;
      padding: 12px;
      margin-bottom: 8px;
      transition: all 0.3s ease;
    }

    .token-item:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: translateX(2px);
    }

    .token-left {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .token-icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid rgba(255, 255, 255, 0.1);
    }

    .token-info .symbol {
      font-weight: 600;
      color: white;
      font-size: 14px;
    }

    .token-info .balance {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.7);
    }

    .token-value {
      font-weight: 600;
      color: #10b981;
      font-size: 14px;
    }

    /* 表单样式 */
    .form-group {
      margin-bottom: 20px;
    }

    .form-label {
      display: block;
      font-size: 14px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 8px;
    }

    .form-input {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.05);
      color: white;
      font-size: 14px;
      transition: all 0.3s ease;
    }

    .form-input:focus {
      outline: none;
      border-color: #177CFF;
      box-shadow: 0 0 0 3px rgba(23, 124, 255, 0.1);
    }

    .form-input::placeholder {
      color: rgba(255, 255, 255, 0.5);
    }

    /* 收益信息 */
    .yield-info {
      text-align: center;
      background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
      border-radius: 16px;
      padding: 24px;
      margin-bottom: 24px;
    }

    .yield-rate {
      font-size: 48px;
      font-weight: bold;
      color: #10b981;
      margin-bottom: 8px;
    }

    .yield-label {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 16px;
    }

    .yield-features {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.6;
    }

    /* 进度条 */
    .progress-section {
      margin-bottom: 24px;
    }

    .progress-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 8px;
    }

    .progress-label {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.9);
    }

    .progress-value {
      font-size: 14px;
      color: #177CFF;
      font-weight: 600;
    }

    .progress-bar {
      width: 100%;
      height: 8px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 4px;
      overflow: hidden;
    }

    .progress-fill {
      height: 100%;
      background: linear-gradient(90deg, #177CFF 0%, #4E38D8 100%);
      border-radius: 4px;
      transition: width 1s ease;
    }

    .progress-end {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.7);
      margin-top: 4px;
    }

    /* 按钮 */
    .primary-btn {
      width: 100%;
      padding: 16px;
      background: linear-gradient(135deg, #177CFF 0%, #4E38D8 100%);
      color: white;
      border: none;
      border-radius: 12px;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-bottom: 16px;
      box-shadow: 0 4px 12px rgba(23, 124, 255, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .primary-btn:hover:not(:disabled) {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(23, 124, 255, 0.4);
    }

    .primary-btn:disabled {
      opacity: 0.5;
      cursor: not-allowed;
      transform: none;
    }

    /* 注意事项 */
    .notice-box {
      background: rgba(16, 185, 129, 0.2);
      border: 1px solid rgba(16, 185, 129, 0.3);
      border-radius: 12px;
      padding: 12px;
    }

    .notice-text {
      font-size: 14px;
      color: #6ee7b7;
    }

    /* 侧边栏 */
    .side-section {
      display: flex;
      flex-direction: column;
      gap: 20px;
      padding-bottom: 10px;
    }

    .side-card h3 {
      font-size: 16px;
      font-weight: bold;
      color: white;
      margin-bottom: 16px;
    }

    /* 收益档位表格 */
    .tier-table {
      width: 100%;
    }

    .tier-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      padding: 12px 16px;
      background: rgba(23, 124, 255, 0.1);
      border-radius: 12px;
      font-size: 13px;
      color: #177CFF;
      font-weight: 600;
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .tier-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      padding: 12px 16px;
      margin-bottom: 6px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.05);
      transition: all 0.3s ease;
      font-size: 14px;
    }

    .tier-row:hover {
      background: rgba(23, 124, 255, 0.05);
      border-color: rgba(23, 124, 255, 0.2);
      transform: translateX(2px);
    }

    .tier-range {
      color: rgba(255, 255, 255, 0.9);
      font-weight: 500;
    }

    .tier-rate {
      color: #10b981;
      font-weight: 700;
      text-align: right;
      font-size: 15px;
    }

    .tier-rate.best {
      color: #fbbf24;
      position: relative;
    }

    .tier-rate.best::after {
      content: '🌟';
      margin-left: 4px;
      font-size: 12px;
    }

    /* 活动记录 */
    .activity-list {
      max-height: 300px;
      overflow-y: auto;
    }

    .activity-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
      margin-bottom: 12px;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s, transform 0.5s;
    }

    .activity-item.show {
      opacity: 1;
      transform: translateY(0);
    }

    .activity-left .address {
      color: #177CFF;
      font-weight: 500;
    }

    .activity-left .time {
      color: rgba(255, 255, 255, 0.6);
      font-size: 12px;
      margin-top: 2px;
    }

    .activity-amount {
      color: #10b981;
      font-weight: 600;
    }

    /* 通用模态框 */
    .modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(10px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .modal.show {
      opacity: 1;
      pointer-events: auto;
    }

    .modal-content {
      background: rgba(26, 29, 41, 0.95);
      backdrop-filter: blur(30px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 32px;
      max-width: 400px;
      width: 90%;
      text-align: center;
      color: white;
    }

    .modal-icon {
      font-size: 48px;
      margin-bottom: 16px;
    }

    .modal-title {
      font-size: 20px;
      font-weight: bold;
      color: white;
      margin-bottom: 8px;
    }

    .modal-text {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 24px;
      line-height: 1.5;
    }

    .modal-btn {
      background: linear-gradient(135deg, #177CFF 0%, #4E38D8 100%);
      color: white;
      border: none;
      padding: 12px 24px;
      border-radius: 12px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .modal-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 15px rgba(23, 124, 255, 0.4);
    }

    /* QR码模态框 */
    .qr-modal-content {
      background: rgba(26, 29, 41, 0.95);
      backdrop-filter: blur(30px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 32px;
      max-width: 400px;
      width: 90%;
      text-align: center;
      color: white;
    }

    .qr-modal-content h3 {
      font-size: 20px;
      font-weight: bold;
      color: white;
      margin-bottom: 20px;
    }

    .qr-modal-content canvas {
      margin-bottom: 16px;
      border-radius: 12px;
    }

    .qr-modal-content p {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 16px;
    }

    .copy-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      color: #177CFF;
      background: none;
      border: none;
      cursor: pointer;
      font-size: 14px;
      margin: 0 auto;
      transition: color 0.3s ease;
    }

    .copy-btn:hover {
      color: #4E38D8;
    }

    /* 钱包选择模态框样式 */
    .wallet-select-modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(15px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1001;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }

    .wallet-select-modal.show {
      opacity: 1;
      pointer-events: auto;
    }

    .wallet-select-content {
      background: rgba(26, 29, 41, 0.98);
      backdrop-filter: blur(40px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 24px;
      padding: 40px 32px;
      max-width: 480px;
      width: 90%;
      text-align: center;
      color: white;
      box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
      position: relative;
      overflow: hidden;
      animation: modalSlideIn 0.4s ease-out;
    }

    @keyframes modalSlideIn {
      from {
        transform: translateY(-30px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .wallet-select-content::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #177CFF 0%, #4E38D8 50%, #FFA500 100%);
    }

    .wallet-select-title {
      font-size: 24px;
      font-weight: 800;
      color: white;
      margin-bottom: 12px;
      background: linear-gradient(135deg, #177CFF 0%, #4E38D8 100%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .wallet-select-subtitle {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 32px;
      line-height: 1.5;
    }

    .wallet-options {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 24px;
    }

    .wallet-option {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(20px);
      border: 2px solid rgba(255, 255, 255, 0.1);
      border-radius: 18px;
      padding: 24px 16px;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      text-decoration: none;
      color: inherit;
    }

    .wallet-option:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(23, 124, 255, 0.5);
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(23, 124, 255, 0.2);
    }

    .wallet-option.selected {
      background: rgba(23, 124, 255, 0.15);
      border-color: #177CFF;
      box-shadow: 0 8px 30px rgba(23, 124, 255, 0.3);
    }

    .wallet-option::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      transition: left 0.5s;
    }

    .wallet-option:hover::before {
      left: 100%;
    }

    .wallet-logo {
      width: 64px;
      height: 64px;
      border-radius: 16px;
      margin: 0 auto 16px;
      background: #fff;
      padding: 8px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      position: relative;
      z-index: 1;
    }

    .wallet-name {
      font-size: 18px;
      font-weight: 700;
      color: white;
      margin-bottom: 8px;
      position: relative;
      z-index: 1;
    }

    .wallet-desc {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.4;
      position: relative;
      z-index: 1;
    }

    .wallet-select-footer {
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 14px;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.5;
    }

    .wallet-select-close {
      position: absolute;
      top: 16px;
      right: 16px;
      background: rgba(255, 255, 255, 0.1);
      border: none;
      border-radius: 50%;
      width: 36px;
      height: 36px;
      color: rgba(255, 255, 255, 0.7);
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .wallet-select-close:hover {
      background: rgba(255, 255, 255, 0.2);
      color: white;
      transform: scale(1.1);
    }

    /* 确认按钮 */
    .wallet-confirm-btn {
      width: 100%;
      padding: 16px;
      background: linear-gradient(135deg, #177CFF 0%, #4E38D8 100%);
      color: white;
      border: none;
      border-radius: 12px;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 20px;
      opacity: 0.5;
      pointer-events: none;
    }

    .wallet-confirm-btn.active {
      opacity: 1;
      pointer-events: auto;
    }

    .wallet-confirm-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(23, 124, 255, 0.4);
    }

    /* 信息模态框样式 */
    .info-modal-content {
      background: rgba(26, 29, 41, 0.95);
      backdrop-filter: blur(30px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 32px;
      max-width: 600px;
      width: 90%;
      max-height: 80vh;
      overflow-y: auto;
      color: white;
      text-align: left;
    }

    .info-modal-title {
      font-size: 24px;
      font-weight: bold;
      color: white;
      margin-bottom: 20px;
      text-align: center;
    }

    .info-modal-content h3 {
      color: #177CFF;
      margin: 20px 0 12px;
      font-size: 18px;
    }

    .info-modal-content ul {
      margin: 12px 0;
      padding-left: 20px;
    }

    .info-modal-content li {
      margin: 8px 0;
      color: rgba(255, 255, 255, 0.8);
    }

    .warning-box {
      background: rgba(239, 68, 68, 0.2);
      border-left: 4px solid #ef4444;
      padding: 16px;
      margin: 16px 0;
      border-radius: 8px;
      color: #fca5a5;
    }

    .highlight-box {
      background: rgba(23, 124, 255, 0.2);
      border-left: 4px solid #177CFF;
      padding: 16px;
      margin: 16px 0;
      border-radius: 8px;
      color: rgba(255, 255, 255, 0.9);
    }

    /* 成功反馈 */
    .success-feedback {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(0, 0, 0, 0.9);
      backdrop-filter: blur(20px);
      border-radius: 16px;
      padding: 12px 20px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
      animation: fadeIn 0.3s ease;
    }

    .success-feedback .checkmark {
      color: #10b981;
      font-size: 1.5em;
      margin-right: 8px;
      font-weight: bold;
    }

    .success-feedback .text {
      color: white;
      font-size: 1em;
      font-weight: 600;
    }

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

    /* 响应式设计 */
    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
      }

      .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
      }

      .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
      }

      .nav-menu a {
        padding: 12px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .side-section {
        flex-direction: row;
        overflow-x: auto;
      }

      .side-card {
        min-width: 300px;
        flex-shrink: 0;
      }

      .asset-stats {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .stat-value {
        font-size: 28px;
      }

      .yield-rate {
        font-size: 36px;
      }

      .partnership-text h3 {
        font-size: 15px;
      }

      .partnership-text p {
        font-size: 13px;
      }

      .main-container {
        padding: 16px;
      }

      .main-card, .side-card {
        padding: 20px;
      }

      .wallet-options {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .wallet-select-content {
        padding: 32px 24px;
      }

      .wallet-select-title {
        font-size: 20px;
      }

      .wallet-logo {
        width: 56px;
        height: 56px;
      }
    }

    @media (max-width: 480px) {
      .logo-text h1 {
        font-size: 16px;
      }

      .logo-text p {
        font-size: 11px;
      }

      .navbar {
        padding: 12px 16px;
      }

      .partnership-banner {
        padding: 12px;
      }

      .main-card, .side-card {
        padding: 16px;
      }

      .yield-rate {
        font-size: 32px;
      }

      .stat-value {
        font-size: 24px;
      }

      .wallet-select-content {
        padding: 24px 20px;
      }

      .wallet-logo {
        width: 48px;
        height: 48px;
      }

      .wallet-name {
        font-size: 16px;
      }
    }

    /* 滚动条样式 */
    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 3px;
    }

    ::-webkit-scrollbar-thumb {
      background: linear-gradient(135deg, #177CFF 0%, #4E38D8 100%);
      border-radius: 3px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(135deg, #1560d9 0%, #3d2db5 100%);
    }

    /* 加载动画 */
    .loading {
      display: inline-block;
      width: 20px;
      height: 20px;
      border: 3px solid rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      border-top-color: #fff;
      animation: spin 1s ease-in-out infinite;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    /* 强制隐藏 vConsole */
    #__vconsole {
      display: none !important;
      opacity: 0 !important;
      pointer-events: none !important;
      position: fixed !important;
      right: -9999px !important;
    }

    @media screen and (max-width: 9999px) {
      #__vconsole {
        right: -9999px !important;
        opacity: 0 !important;
        pointer-events: none !important;
      }
    }