    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }
        body {
            background: linear-gradient(180deg, #020b35 0%, #0a1b4d 100%);
            color: #ffffff;
            display: flex;
            justify-content: center;
            min-height: 100vh;
        }
        ::-webkit-scrollbar {
            display: none;
        }

        .app-container {
            width: 100%;
            max-width: 420px;
            background: transparent;
            position: relative;
            min-height: 100vh;
            padding-bottom: 80px;
        }

        .header {
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            background: linear-gradient(180deg, rgba(2, 11, 53, 0.95) 0%, transparent 100%);
            z-index: 10;
        }
        .header-left {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
        }
        .header-left .avatar-box {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            font-size: 14px;
            color: #fff;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            flex-shrink: 0;
        }
        .header-left span {
            font-weight: bold;
            font-size: 18px;
            color: #fbbf24;
        }
        .header-right {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.1);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
        }
        .header-right i {
            font-size: 16px;
            cursor: pointer;
        }
        .header-right .lang-label {
            font-size: 11px;
            color: #8a9bb5;
            cursor: pointer;
            font-weight: 600;
            min-width: 24px;
            text-align: center;
        }
        .header-right .lang-label:hover {
            color: #fbbf24;
        }

        .vip-badge {
            background: #2563eb;
            color: white;
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 10px;
            font-weight: bold;
        }
        .card {
            background: rgba(30, 41, 82, 0.6);
            border-radius: 12px;
            padding: 15px;
            margin-bottom: 15px;
            backdrop-filter: blur(2px);
        }

        .stars {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }
        .star {
            position: absolute;
            background: white;
            border-radius: 50%;
            animation: twinkle 2s infinite alternate;
        }
        @keyframes twinkle {
            0% { opacity: 0.2; }
            100% { opacity: 1; }
        }

        .page {
            display: none;
            animation: fadeIn 0.3s ease-in-out;
        }
        .page.active {
            display: block;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .content-area {
            padding: 0 15px;
        }
        .page {
            min-height: calc(100vh - 100px);
            padding-bottom: 30px;
        }

        /* --- 挖矿页面 --- */
        .mine-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 10px 0;
        }
        .vip-badge-lg {
            background: #2563eb;
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: bold;
        }

        .hashrate-box {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            background: rgba(46, 204, 113, 0.15);
            border: 1px solid rgba(46, 204, 113, 0.3);
            padding: 6px 12px;
            border-radius: 8px;
        }
        .hashrate-val {
            font-size: 15px;
            font-weight: bold;
            color: #2ecc71;
        }
        .hashrate-sub {
            font-size: 10px;
            color: #aaa;
            margin-top: 2px;
        }

        .miner-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 20px 0 10px 0;
            position: relative;
            height: 140px;
        }
        .pure-miner {
            position: relative;
            font-size: 70px;
            line-height: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.3));
        }
        .miner-head {
            color: #fbbf24;
            font-size: 70px;
        }
        .miner-body {
            color: #fbbf24;  /* 金色 */
            font-size: 60px;
            margin-top: -10px;
            display: inline-block;
            animation: spinDollar 2s linear infinite;
        }
        
        @keyframes spinDollar {
            0% { transform: rotateY(0deg); }
            100% { transform: rotateY(360deg); }
        }
        
        .miner-pickaxe {
            position: absolute;
            font-size: 35px;
            color: #999;
            top: 30px;
            right: -30px;
            transform-origin: bottom right;
            animation: pick-swing 0.5s infinite alternate ease-in-out;
        }
        @keyframes pick-swing {
            0% { transform: rotate(-30deg) translateY(0); }
            100% { transform: rotate(30deg) translateY(-5px); }
        }

        .mine-btn-wrapper {
            margin: 15px 0;
            display: flex;
            justify-content: center;
        }
        .mine-btn {
            width: 100%;
            max-width: 280px;
            padding: 16px 0;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 18px;
            color: white;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #6a35fa 0%, #3eb2fd 100%);
            box-shadow: 0 6px 20px rgba(106, 53, 250, 0.4);
            cursor: pointer;
            transition: transform 0.2s;
        }
        .mine-btn:active {
            transform: scale(0.95);
        }
        .mine-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }
        .mine-btn.mining {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            cursor: default;
        }
        .mine-btn.mining:active {
            transform: none;
        }

        .claim-section {
            background: rgba(30, 41, 82, 0.6);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-top: 10px;
        }
        .pending-title {
            font-size: 12px;
            color: #aaa;
            margin-bottom: 5px;
        }
        .pending-amount {
            font-size: 28px;
            font-weight: bold;
            color: #fbbf24;
            margin-bottom: 15px;
        }
        .pending-amount span {
            font-size: 14px;
            color: #aaa;
            font-weight: normal;
        }
        .claim-btn {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            border: none;
            color: #020b35;
            padding: 12px 40px;
            border-radius: 30px;
            font-weight: bold;
            font-size: 16px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
            transition: 0.2s;
        }
        .claim-btn:active {
            transform: scale(0.95);
        }
        .claim-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        /* --- 升级页面 --- */
        .upgrade-card-top {
            background: rgba(30, 41, 82, 0.8);
            border-radius: 12px;
            padding: 15px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .upgrade-avatar {
            width: 50px;
            height: 50px;
            background: #2563eb;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            font-size: 20px;
        }
        .upgrade-info {
            flex: 1;
        }
        .upgrade-info div {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            margin-bottom: 4px;
        }
        .upgrade-stats {
            display: flex;
            justify-content: space-between;
            margin-top: 10px;
            font-size: 12px;
            color: #aaa;
        }
        .upgrade-stats span strong {
            color: #2ecc71;
            font-size: 14px;
        }

        .action-row {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }
        .action-btn-wrap {
            flex: 1;
            position: relative;
        }
        .action-btn {
            width: 100%;
            padding: 10px;
            border-radius: 10px;
            border: none;
            color: white;
            font-weight: bold;
            font-size: 14px;
            cursor: pointer;
        }
        .btn-upgrade-tools {
            background: linear-gradient(90deg, #5b86e5, #36d1dc);
        }
        .badge-new {
            position: absolute;
            top: -10px;
            right: -5px;
            background: #f43f5e;
            color: white;
            font-size: 10px;
            padding: 2px 8px;
            border-radius: 10px;
            border: 2px solid #020b35;
        }

        .buy-link {
            text-align: right;
            font-size: 12px;
            color: #aaa;
            margin-bottom: 10px;
            cursor: pointer;
        }
        .buy-link:hover {
            color: #fff;
        }

        .tool-card {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px;
            background: rgba(30, 41, 82, 0.6);
            border-radius: 12px;
            margin-bottom: 10px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: 0.2s;
        }
        .tool-card.buyable {
            cursor: pointer;
        }
        .tool-card.buyable:active {
            transform: scale(0.98);
            background: rgba(30, 41, 82, 0.8);
        }
        .tool-left {
            display: flex;
            align-items: center;
            flex: 1;
            gap: 12px;
        }
        .tool-icon-box {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .tool-icon-box i {
            font-size: 18px;
            color: #fbbf24;
        }
        .tool-name {
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 2px;
        }
        .tool-sub {
            font-size: 11px;
            color: #888;
        }
        .tool-right {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }
        .tool-price {
            font-size: 13px;
            color: #2ecc71;
            font-weight: bold;
        }
        .tool-speed {
            font-size: 10px;
            color: #8a9bb5;
        }

        /* --- 团队页面 --- */
        .team-header-title {
            margin: 15px 0;
            font-weight: bold;
        }
        .invite-code-box {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(30, 41, 82, 0.8);
            padding: 10px 15px;
            border-radius: 10px;
            margin-bottom: 10px;
        }
        .invite-code {
            font-size: 18px;
            font-weight: bold;
            letter-spacing: 2px;
            color: #fbbf24;
        }
        .tiny-btn {
            background: #5b86e5;
            border: none;
            color: white;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.2s;
        }
        .tiny-btn:active {
            transform: scale(0.9);
        }

        .invite-link-box {
            background: rgba(30, 41, 82, 0.8);
            padding: 10px 15px;
            border-radius: 10px;
            font-size: 12px;
            word-break: break-all;
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
        }
        .social-share {
            display: flex;
            gap: 15px;
            font-size: 20px;
            margin: 15px 0 20px 0;
            color: #fff;
        }
        .social-share i {
            opacity: 0.8;
            cursor: pointer;
            transition: 0.2s;
        }
        .social-share i:hover {
            opacity: 1;
            transform: scale(1.1);
        }

        .date-picker {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 12px;
            margin-bottom: 15px;
            color: #e879f9;
            cursor: pointer;
            padding: 6px 0;
        }
        .date-picker i {
            font-size: 14px;
        }
        .date-picker .date-text {
            color: #fbbf24;
            font-weight: 500;
        }

        .team-stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 15px;
        }
        .team-stat-box {
            background: rgba(30, 41, 82, 0.8);
            padding: 15px;
            border-radius: 10px;
        }
        .team-stat-box .label {
            font-size: 11px;
            color: #aaa;
        }
        .team-stat-box .value {
            font-size: 18px;
            font-weight: bold;
            margin-top: 5px;
        }
        .team-stat-box .sub {
            font-size: 11px;
            color: #8a9bb5;
            margin-top: 2px;
        }
        .team-stat-box .sub .active-num {
            color: #2ecc71;
        }

        .level-box {
            display: flex;
            justify-content: space-between;
            background: transparent;
            gap: 10px;
        }
        .level-item {
            background: rgba(30, 41, 82, 0.6);
            flex: 1;
            padding: 15px 5px;
            border-radius: 12px;
            text-align: center;
            font-size: 12px;
        }
        .level-item h4 {
            font-size: 14px;
            margin-bottom: 5px;
        }
        .level-item .level-stat {
            font-size: 11px;
            color: #8a9bb5;
        }
        .level-item .level-stat.active {
            color: #2ecc71;
        }

        /* --- 我的页面 --- */
        .profile-top {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        .profile-avatar {
            width: 50px;
            height: 50px;
            background: #2563eb;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            font-size: 20px;
            color: white;
        }
        .profile-name {
            font-size: 16px;
            font-weight: bold;
        }
        .profile-name i {
            color: #888;
            font-size: 14px;
            margin-left: 4px;
        }

        .wallet-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
        }
        .wallet-row .val {
            font-weight: bold;
            color: #2ecc71;
            font-size: 16px;
        }

        .wallet-detail-lines {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 15px;
            margin-top: 10px;
        }
        .wallet-line {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 6px;
            font-size: 13px;
        }
        .wallet-line:last-child {
            margin-bottom: 0;
        }
        .wallet-line .label {
            color: #888;
        }
        .wallet-line .value {
            color: #2ecc71;
            font-weight: bold;
        }

        .profile-grid-top {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px 10px;
            margin-bottom: 20px;
            padding: 15px 5px 5px 5px;
        }
        .profile-grid-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: #ccc;
            cursor: pointer;
            transition: 0.15s;
            padding: 8px 0;
            border-radius: 12px;
        }
        .profile-grid-item:active {
            transform: scale(0.92);
        }
        .profile-grid-item.pink i {
            font-size: 22px;
            color: #e879f9;
        }
        .profile-grid-item.white i {
            font-size: 22px;
            color: #fff;
        }

        .profile-grid-bottom {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px 10px;
            padding-top: 5px;
            padding-bottom: 10px;
        }

        /* --- 底部导航 --- */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            max-width: 420px;
            background: rgba(40, 50, 90, 0.95);
            backdrop-filter: blur(10px);
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 10px 0 20px 0;
            border-top-left-radius: 20px;
            border-top-right-radius: 20px;
            z-index: 20;
            left: 50%;
            transform: translateX(-50%);
        }
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            color: #888;
            font-size: 10px;
            cursor: pointer;
            transition: 0.3s;
        }
        .nav-item.active {
            color: #e879f9;
        }
        .nav-item i {
            font-size: 22px;
            margin-bottom: 2px;
        }

        /* --- Toast --- */
        .toast {
            position: fixed;
            top: 80px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(40, 50, 90, 0.95);
            backdrop-filter: blur(8px);
            color: #fff;
            padding: 12px 24px;
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            z-index: 9999;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
            display: none;
            animation: toastAnim 0.3s ease-out;
            max-width: 90%;
            text-align: center;
        }
        @keyframes toastAnim {
            from { opacity: 0; transform: translateX(-50%) translateY(-20px); }
            to { opacity: 1; transform: translateX(-50%) translateY(0); }
        }
        .toast.show {
            display: block;
        }

        /* --- Modal --- */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            z-index: 999;
            justify-content: center;
            align-items: center;
            animation: modalFadeIn 0.3s ease-out;
        }
        .modal-overlay.active {
            display: flex;
        }
        @keyframes modalFadeIn {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }
        .modal-box {
            background: linear-gradient(135deg, #2a315c, #151b3d);
            width: 92%;
            max-width: 400px;
            max-height: 85vh;
            overflow-y: auto;
            border-radius: 20px;
            padding: 24px 18px 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .modal-box::-webkit-scrollbar {
            display: none;
        }
        .modal-close-btn {
            background: linear-gradient(135deg, #6a35fa 0%, #3eb2fd 100%);
            border: none;
            color: white;
            padding: 10px 40px;
            border-radius: 30px;
            font-size: 16px;
            cursor: pointer;
            font-weight: bold;
            transition: 0.2s;
            margin-top: 12px;
            width: 100%;
        }
        .modal-close-btn:active {
            transform: scale(0.95);
        }

        /* --- 购买工具弹窗 --- */
        .buy-modal .tool-preview {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            margin: 12px 0;
        }
        .buy-modal .tool-preview .icon {
            font-size: 40px;
            color: #fbbf24;
        }
        .buy-modal .tool-preview .info .name {
            font-size: 18px;
            font-weight: bold;
        }
        .buy-modal .tool-preview .info .detail {
            font-size: 13px;
            color: #8a9bb5;
            margin-top: 2px;
        }
        .buy-modal .price-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .buy-modal .price-row .label {
            color: #8a9bb5;
        }
        .buy-modal .price-row .value {
            font-weight: bold;
        }
        .buy-modal .price-row .value.green {
            color: #2ecc71;
        }
        .buy-modal .price-row .value.gold {
            color: #fbbf24;
        }
        .buy-modal .price-row .value.red {
            color: #ef4444;
        }

        .buy-modal .confirm-buy-btn {
            width: 100%;
            padding: 14px 0;
            border: none;
            border-radius: 30px;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: #020b35;
            font-weight: 700;
            font-size: 17px;
            cursor: pointer;
            transition: 0.15s;
            margin-top: 12px;
        }
        .buy-modal .confirm-buy-btn:active {
            transform: scale(0.95);
        }
        .buy-modal .confirm-buy-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* --- 收益历史弹窗 --- */
        .earnings-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }
        .earnings-item:last-child {
            border-bottom: none;
        }
        .earnings-item .left {
            text-align: left;
        }
        .earnings-item .right {
            text-align: right;
        }
        .earnings-item .source-label {
            font-size: 13px;
            font-weight: 500;
        }
        .earnings-item .source-detail {
            font-size: 10px;
            color: #5a6a8a;
            margin-top: 2px;
        }
        .earnings-item .amount {
            font-weight: bold;
            font-size: 14px;
        }
        .earnings-item .time {
            font-size: 10px;
            color: #5a6a8a;
            margin-top: 2px;
        }
        .summary-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 8px;
            margin-bottom: 16px;
            padding: 12px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 10px;
        }
        .summary-grid .item {
            text-align: center;
        }
        .summary-grid .label {
            font-size: 10px;
            color: #8a9bb5;
        }
        .summary-grid .value {
            font-size: 16px;
            font-weight: bold;
        }
        .summary-grid .value.green { color: #2ecc71; }
        .summary-grid .value.gold { color: #fbbf24; }
        .summary-grid .value.purple { color: #e879f9; }

        .earnings-date-group {
            margin-bottom: 8px;
        }
        .earnings-date-group .date-label {
            font-size: 11px;
            color: #5a6a8a;
            padding: 4px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            margin-bottom: 4px;
        }

        .profile-card-wrap {
            position: relative;
        }
        .login-overlay {
            display: none;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(2, 11, 53, 0.85);
            backdrop-filter: blur(8px);
            border-radius: 12px;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 5;
            padding: 30px;
            text-align: center;
        }
        .login-overlay i {
            font-size: 48px;
            color: #fbbf24;
            margin-bottom: 16px;
        }
        .login-overlay h3 {
            font-size: 18px;
            margin-bottom: 8px;
        }
        .login-overlay p {
            color: #aaa;
            font-size: 14px;
            margin-bottom: 20px;
        }
        .login-overlay .login-btn {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            border: none;
            color: #020b35;
            padding: 12px 40px;
            border-radius: 30px;
            font-weight: bold;
            font-size: 16px;
            cursor: pointer;
            transition: 0.2s;
        }
        .login-overlay .login-btn:active {
            transform: scale(0.95);
        }
        .login-overlay.show {
            display: flex;
        }

        /* --- 密码弹窗样式 --- */
        .form-group {
            margin-bottom: 14px;
        }
        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: #b0c4ff;
            margin-bottom: 4px;
        }
        .form-group label .required {
            color: #ef4444;
        }
        .form-control {
            width: 100%;
            padding: 10px 14px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(10, 20, 50, 0.6);
            color: #fff;
            font-size: 14px;
            transition: 0.2s;
        }
        .form-control:focus {
            outline: none;
            border-color: #fbbf24;
            box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.08);
        }
        .form-control::placeholder {
            color: #5a6a8a;
        }
        
        .input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }
        .input-wrapper .form-control {
            padding-right: 44px;
        }
        .input-wrapper .toggle-pwd {
            position: absolute;
            right: 12px;
            color: #5a6a8a;
            cursor: pointer;
            font-size: 16px;
            padding: 4px;
        }
        .input-wrapper .toggle-pwd:active {
            color: #fbbf24;
        }

        /* --- 弹窗按钮样式 --- */
        .modal-btn {
            width: 100%;
            padding: 12px 0;
            border: none;
            border-radius: 30px;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: #020b35;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: 0.15s;
            margin-top: 6px;
        }
        .modal-btn:active {
            transform: scale(0.95);
        }
        .modal-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }
        
        .modal-close-btn {
            width: 100%;
            padding: 10px 0;
            border: none;
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.05);
            color: #8a9bb5;
            font-size: 15px;
            cursor: pointer;
            transition: 0.15s;
            margin-top: 10px;
        }
        .modal-close-btn:active {
            transform: scale(0.95);
        }
    </style>