 body {
            margin: 0;
            font-family: Arial, sans-serif;
            background: url('/assets/img/bg-CNWZr5_Q.jpg') no-repeat;
            background-size: cover;
        }

        header.header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 15px;
            background: #088246;
            color: #fff;
            border-bottom: 1px solid #938600;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            box-shadow: 0 0 3px #fbe937;
            z-index: 10;
        }

        header.header img {
            height: 40px;
        }

        .network-icon {
            width: 20px;
            height: 20px;
            padding-right: 10px;
        }

        main {
            padding: 20px;
            min-height: calc(100vh - 120px);
        }

        footer {
            display: flex;
            align-items: center;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: #143314;
            color: #fff;
            height: 60px;
            font-size: 14px;
        }

        footer div {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: currentColor;
            padding: 5px 0;
            border-radius: 10px;
        }

        footer div svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
            margin-bottom: 2px;
        }

        footer div.active {
            color: #fbe63c;
        }

        input {
            outline: 0;
        }

        .modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.7);
            z-index: 9999;
            animation: fadeIn .3s;
        }

        .modal-content {
            background: #4aa530;
            padding: 25px;
            border-radius: 16px;
            min-width: 320px;
            max-width: 90%;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
            text-align: center;
            animation: scaleUp .3s;
        }

        input {
            width: 100%;
            padding: 10px;
            box-sizing: border-box;
            margin-top: 15px;
            border-radius: 8px;
            border: none;
            background: #088246;
            color: #fff;
        }

        input::placeholder {
            color: #cbd5e1;
        }

        button {
            width: 100%;
            padding: 10px;
            margin-top: 15px;
            color: #000;
            border: 1px solid #fbe937;
            background: #fbe937;
            border-radius: 5px;
        }

        .wallet-address {
            color: #fbe937;
            font-size: .75rem;
            background: #23b95d;
            padding: 0 0.5625rem;
            height: 1.5rem;
            line-height: 1.5rem;
            border-radius: 0.75rem;
            border: 1px solid #fbe937;
        }

        .language-selector {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    user-select: none;
    padding: 5px 10px;
    font-size:12px;
    border-radius: 4px;
    background: #088246;
    color: #fbe937;
    min-width: 80px;
    border:1px solid #fbe937;
    justify-content: space-between;
    margin-right:10px;
}

.language-selector .dropdown-arrow {
    margin-left: 4px;
    font-size: 10px;
}

.language-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    font-size:12px;
    background: #088246;
    border: 1px solid #fbe937;
    color:#fff;
    border-radius: 4px;
    z-index: 1000;
    list-style: none;
    padding: 0;
    margin: 2px 0 0 0;
}

.language-options li {
    padding: 6px 10px;
    cursor: pointer;
    border-bottom: 1px solid #fbe937;
}
.language-options li:last-child{
    border:0;
}
.language-options li:hover {
    background-color: #f0f0f0;
}

        .alert-modal {
            position: fixed;
            top: 20px;
            left: 5%;
            width: 90%;
            background: #f56c6c;
            color: #fff;
            padding: 15px 25px;
            box-sizing: border-box;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            animation: slideDownFade 0.5s ease forwards;
            z-index: 9999999;
        }

        @keyframes slideDownFade {
            0% {
                opacity: 0;
                transform: translateY(-50px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .tab-con {
            padding-top: 60px;
            padding-bottom: 100px;
        }

        .home-section {
            background: rgba(0, 0, 0, 0.2);
            margin: 10px 0;
            padding: 15px;
            border-radius: 12px;
            color: #fff;
        }

        h2.atitle {
            display: inline-block;
            position: relative;
            padding: 6px 12px 6px 12px;
            background: #4aa530;
            color: #fff;
            font-size: 18px;
            border-radius: 10px 0 0 10px;
            margin: 20px 0 5px 0;
            overflow: visible;
            box-shadow: 0 1px 0 rgba(0, 0, 0, 0.12) inset;
        }

        h2.atitle::after {
            content: "";
            position: absolute;
            top: 50%;
            right: -18px;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-top: 22px solid transparent;
            border-bottom: 22px solid transparent;
            border-left: 20px solid #4aa530;
            z-index: 1;
        }

        h2.atitle span {
            color: #fde641;
            margin-left: 1px;
            font-weight: 600;
        }

        .home-section ul {
            padding-left: 18px;
            list-style: disc;
        }

        .level-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 10px;
        }

        .level-table th,
        .level-table td {
            border: 1px solid #fbe937;
            padding: 6px 8px;
            text-align: center;
        }

        .level-table th {
            background: #088246;
            color: #fbe937;
        }

        * {
            margin: 0;
            padding: 0;
        }

        .pool-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 15px 0;
        }

        .spinner {
            width: 50px;
            height: 50px;
            border: 6px solid rgba(255, 255, 255, 0.3);
            border-top-color: #3b82f6;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        .stat-card {
            flex: 0 0 calc(50% - 6px);
            background: url(/assets/img/bg.png);
            background-size: cover;
            box-shadow: 0 0 2px #fbe937;
            border-radius: 14px;
            padding: 12px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(4px);
            box-sizing: border-box;
        }

        .stat-card h3 {
            font-size: 18px;
            color: #4ca230;
            margin-bottom: 6px;
            position: relative;
            z-index: 1;
            letter-spacing: 1px;
            white-space: nowrap;
            text-shadow:
                -1px -1px 0 white,
                1px -1px 0 white,
                -1px 1px 0 white,
                1px 1px 0 white;
        }

        .stat-card p {
            font-size: 20px;
            font-weight: bold;
            color: #4cff70;
            position: relative;
            z-index: 1;
            text-shadow: 0 0 8px rgba(76, 162, 48, 0.9);
            animation: numberGlow 2s ease-in-out infinite;
        }

        .stat-card:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 0 18px rgba(76, 162, 48, 0.55), inset 0 0 10px rgba(0, 0, 0, 0.5);
        }

        @keyframes numberGlow {
            0% {
                text-shadow: 0 0 6px rgba(76, 162, 48, 0.6), 0 0 12px rgba(76, 162, 48, 0.3);
            }
            50% {
                text-shadow: 0 0 12px rgba(76, 255, 120, 0.9), 0 0 20px rgba(76, 162, 48, 0.6);
            }
            100% {
                text-shadow: 0 0 6px rgba(76, 162, 48, 0.6), 0 0 12px rgba(76, 162, 48, 0.3);
            }
        }

        .img-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            padding: 10px;
        }

        .img-grid img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 15px;
            background: #fff;
        }

        .drawer {
            position: fixed;
            inset: 0;
            z-index: 99999;
            display: flex;
            justify-content: flex-end;
        }

        .drawer-mask {
            position: fixed;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            animation: fadeIn .3s;
        }

        .drawer-panel {
            width: 80%;
            max-width: 400px;
            height: 100%;
            background: #143314;
            color: #fff;
            position: relative;
            z-index: 9;
            box-shadow: -2px 0 8px rgba(0, 0, 0, 0.5);
            display: flex;
            flex-direction: column;
            animation: slideInRight .3s;
        }

        .drawer-panel.left {
            box-shadow: 2px 0 8px rgba(0, 0, 0, 0.5);
            animation: slideInLeft .3s;
        }

        .drawer-header {
            padding: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, .2);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            box-sizing: border-box;
        }

        .drawer-loading {
            text-align: center;
            padding: 40px 0;
            font-size: 15px;
            color: #fbe937;
        }

        .drawer-close {
            background: none;
            border: none;
            color: #fbe937;
            font-size: 20px;
            cursor: pointer;
        }

        .drawer-content {
            max-height: calc(100vh - 50px);
            overflow-y: auto;
        }

        .drawer-body {
            flex: 1;
            overflow-y: auto;
            padding: 15px;
        }

        @keyframes slideInRight {
            from {
                transform: translateX(100%);
            }
            to {
                transform: translateX(0);
            }
        }

        @keyframes slideInLeft {
            from {
                transform: translateX(-100%);
            }
            to {
                transform: translateX(0);
            }
        }

        .no-records {
            text-align: center;
            color: #fbe937;
            padding: 30px 10px;
        }

        .order-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 12px 14px;
            margin-bottom: 12px;
            font-size: 14px;
            color: #fff;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            transition: transform .2s, box-shadow .2s;
        }

        .order-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
        }

        .order-item .hash {
            word-break: break-all;
            color: #f5f5f5;
        }

        .order-item>div {
            display: flex;
            justify-content: space-between;
            margin-bottom: 6px;
        }

        .order-item>div:last-child {
            margin-bottom: 0;
            font-size: 13px;
            color: #ccc;
        }

        .order-item span {
            margin-left: 10px;
        }

        .order-item span:first-child {
            margin-left: 0;
        }

        .order-item .status {
            font-weight: bold;
        }

        .order-item .status.pending {
            color: #fbe937;
        }

        .order-item .status.success {
            color: #4aa530;
        }

        .order-item .status.failed {
            color: #d9534f;
        }

        .tab {
            display: flex;
            border-bottom: 1px solid rgba(255, 255, 255, .2);
            overflow: hidden;
            margin-bottom: 10px;
            border-radius: 10px 10px 0 0;
        }

        .tab div {
            flex: 1;
            text-align: center;
            padding: 10px 0;
            cursor: pointer;
            font-weight: 500;
            color: rgba(255, 255, 255, .2)
        }

        .tab div.active {
            background: #143314;
            color: #fff;
        }

        .radio-group {
            display: flex;
            gap: 8px;
            margin-bottom: 15px;
            background: rgba(0, 0, 0, 0.2);
            padding: 8px;
            border-radius: 8px;
            border: 1px solid rgba(251, 233, 55, 0.3);
        }

        .radio-option {
            flex: 1;
            position: relative;
        }

        .radio-option input {
            position: absolute;
            opacity: 0;
            width: 0;
            height: 0;
        }

        .radio-label {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 10px 8px;
            background: rgba(76, 162, 48, 0.3);
            border: 1px solid rgba(251, 233, 55, 0.3);
            border-radius: 6px;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s ease;
            height: 50px;
            color: #fff;
        }

        .radio-label:hover {
            background: rgba(76, 162, 48, 0.5);
            border-color: rgba(251, 233, 55, 0.6);
        }

        .radio-option input:checked+.radio-label {
            border-color: #fbe937;
            background: rgba(251, 233, 55, 0.2);
            color: #fbe937;
            box-shadow: 0 0 8px rgba(251, 233, 55, 0.3);
        }

        .radio-label .currency {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 2px;
            text-shadow: 0 0 4px rgba(76, 162, 48, 0.8);
        }

        .radio-label .name {
            font-size: 11px;
            color: #cbd5e1;
        }

        .radio-option input:checked+.radio-label .name {
            color: #fbe937;
        }

        .load-more {
            text-align: center;
            padding: 15px;
            color: #fbe937;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
            border-top: 1px solid rgba(251, 233, 55, 0.2);
            margin-top: 10px;
        }

        .load-more:hover {
            color: #4aa530;
            background: rgba(251, 233, 55, 0.1);
        }

        .load-more.loading {
            color: #ccc;
            cursor: not-allowed;
        }

        .load-more .loading-text {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .mini-spinner {
            width: 16px;
            height: 16px;
            border: 2px solid rgba(251, 233, 55, 0.3);
            border-top-color: #fbe937;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        .no-more-data {
            text-align: center;
            padding: 15px;
            color: #ccc;
            font-size: 13px;
        }
        /* 遮罩层 */
.notice-mask {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 弹框主体 */
.notice-box {
  background: #fff;
  width: 90%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  animation: fadeInUp 0.3s ease-out;
  z-index: 9999;
  overflow: hidden;
  position: absolute;
  left:5%;
  top:20%;
}

/* 标题 */
.notice-header {
  background: linear-gradient(90deg, #088246, #088246);
  color: #fff;
  padding: 14px 20px;
  font-size: 18px;
  font-weight: bold;
}

/* 内容 */
.notice-content {
  padding: 20px;
  color: #333;
  font-size: 15px;
  line-height: 1.6;
  max-height: 300px;
  overflow-y: auto;
}

/* 按钮 */
.notice-footer {
  text-align: right;
  padding: 10px 20px 20px;
}

.notice-footer button {
  background: #088246;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.notice-footer button:hover {
  background: #182848;
}

@keyframes fadeInUp {
  from { opacity: 0;  }
  to { opacity: 1;  }
}