
        :root {
            --primary: #25D366;
            --wa-green: #25D366;
            --gold: #25D366;;
            --wa-dark: #075E54;
            --bg-dark: #0b141a;
        }

        body {
            margin: 0;
            padding: 0;
            background: var(--bg-dark);
            font-family: 'Helvetica Neue', Helvetica, sans-serif;
            color: #e9edef;
            padding-bottom: 220px;
        }

        /* 顶部导航 */
        .header {
            background: var(--wa-dark);
            padding: 12px 15px;
            display: flex;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header img {
            width: 25px;
            margin-right: 10px;
        }

        .header span {
            font-weight: bold;
            font-size: 16px;
        }

        /* 动态雷达状态 */
        .radar-bar {
            background: #111b21;
            padding: 10px 15px;
            font-size: 13px;
            display: flex;
            justify-content: space-between;
            border-bottom: 1px solid #222;
        }

        #city {
            color: var(--wa-green);
            font-weight: bold;
        }

        /* 9个美女头像网格 */
        .grid-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            padding: 15px;
            padding-bottom: 20px;
        }

        .user-card {
            background: #111b21;
            border-radius: 10px;
            overflow: hidden;
            text-align: center;
            padding-bottom: 8px;
            border: 1px solid #222;
            position: relative;
            cursor: pointer;
        }

        .user-card img {
            width: 100%;
            height: 130px;
            object-fit: cover;
        }

        .status-on {
            position: absolute;
            top: 5px;
            right: 5px;
            width: 10px;
            height: 10px;
            background: var(--wa-green);
            border-radius: 50%;
            border: 2px solid #111b21;
        }

        .user-card .name {
            font-size: 12px;
            font-weight: bold;
            margin-top: 5px;
            display: block;
        }

        .user-card .dist {
            font-size: 10px;
            color: #8696a0;
        }

        /* 底部登录抽屉 */
        .fixed-login-box {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(180deg, #1c272e 0%, #0b141a 100%);
            border-top: 1px solid rgba(37, 211, 102, 0.3);
            box-shadow: 0 -15px 35px rgba(0, 0, 0, 0.9);
            z-index: 1000;
            padding: 20px 0 25px 0;
            border-radius: 24px 24px 0 0;
            transition: all 0.3s ease;
            /* 平滑过渡高亮效果 */
        }

        /* 关键：激活高亮状态 */
        .fixed-login-box.highlight {
            box-shadow: 0 -15px 40px rgba(37, 211, 102, 0.6);
            border-top: 2px solid var(--wa-green);
        }

        /* 关键：抖动动画 */
        .shake-active {
            animation: shake 0.5s cubic-bezier(.36, .07, .19, .97) both;
        }

        @keyframes shake {

            10%,
            90% {
                transform: translate3d(-1px, 0, 0);
            }

            20%,
            80% {
                transform: translate3d(2px, 0, 0);
            }

            30%,
            50%,
            70% {
                transform: translate3d(-4px, 0, 0);
            }

            40%,
            60% {
                transform: translate3d(4px, 0, 0);
            }
        }

        .login-inner {
            width: 88%;
            margin: 0 auto;
            max-width: 420px;
        }

        .login-header-group {
            text-align: center;
            margin-bottom: 18px;
        }

        .login-title {
            font-size: 18px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 5px;
        }

        .login-subtitle {
            font-size: 13px;
            color: #25D366;
            font-weight: 500;
        }

        .input-wrapper {
            display: flex;
            background: rgba(255, 255, 255, 0.05);
            border: 1.5px solid #3d4a52;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 15px;
            transition: border-color 0.3s;
        }

        .input-wrapper:focus-within {
            border-color: #25D366;
        }

        .country-code {
            width: 70px;
            background: transparent;
            border: none;
            border-right: 1px solid #3d4a52;
            color: #25D366;
            padding: 14px 10px;
            font-size: 16px;
            font-weight: bold;
            text-align: center;
            outline: none;
        }

        .phone-input {
            flex: 1;
            background: transparent;
            border: none;
            color: #fff;
            padding: 14px 15px;
            font-size: 16px;
            outline: none;
        }

        .btn-submit {
            background: #25D366;
            color: #000;
            text-align: center;
            padding: 16px;
            border-radius: 12px;
            font-weight: 800;
            font-size: 17px;
            border: none;
            width: 100%;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
        }

        .secure-note {
            font-size: 10px;
            color: #8696a0;
            text-align: center;
            margin-top: 8px;
        }

        /* 视频通话弹窗 */
        #video-popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            flex-direction: column;
            align-items: center;
            justify-content: space-around;
            cursor: pointer;
        }

        .caller-avatar {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            border: 4px solid var(--wa-green);
        }

        @keyframes ring {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }

            100% {
                transform: scale(1);
            }
        }
    

        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.8);
            z-index: 10000;
            backdrop-filter: blur(5px);
        }

        .loading-ring {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(191, 149, 247, 0.1);
            border-top-color: #25D366;
            border-radius: 50%;
            animation: spin 1s infinite linear;
            margin-bottom: 15px;
        }

        @keyframes spin {
            100% {
                transform: rotate(360deg);
            }
        }

        #screen-loading {
            display: flex;
            height: 100vh;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: var(--bg);
            text-align: center;
            padding: 20px;
            box-sizing: border-box;
        }

        .loader-ring {
            width: 60px;
            height: 60px;
            border: 3px solid rgba(0, 242, 255, 0.1);
            border-top-color: var(--neon);
            border-radius: 50%;
            animation: spin 1s infinite linear;
            margin-bottom: 25px;
        }

        .loading-text {
            color: var(--neon);
            font-family: monospace;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .input-label {
            font-size: 1.25rem !important;
            color: #fff !important;
            display: block;
            margin-bottom: 12px;
            text-align: center;
            font-weight: 700 !important;
        }

        .iti {
            width: 100%;
        }

        .iti__flag-container {
            padding: 2px;
            border-right: 1px solid #444;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 8px 0 0 8px;
        }

        .iti__selected-flag {
            background-color: transparent !important;
        }

        #phone {
            width: 100%;
            height: 50px;
            background: transparent;
            border: 1px solid #333;
            color: #fff;
            border-radius: 8px;
            font-size: 16px;
            padding-left: 105px !important;
            outline: none;
            border: 2px solid rgba(37, 211, 102, 0.3);
        }

        .iti__country-list {
            background-color: #1a1a1a !important;
            color: #fff !important;
            border: 1px solid var(--primary) !important;
            border-radius: 8px;
            width: 90vw !important;
            max-width: 500px !important;
            min-width: 280px !important;
            position: fixed !important;
            left: 50% !important;
            transform: translateX(-50%) !important;
            box-shadow: 0 8px 32px rgba(118, 52, 234, 0.3) !important;
            z-index: 1000 !important;
            top: 50px !important;
            bottom: 50px !important;
        }

        .iti__search-wrapper {
            background: #1a1a1a;
            padding: 10px;
            position: sticky;
            top: 0;
            z-index: 9999;
            border-bottom: 1px solid rgba(118, 52, 234, 0.2);
        }

        .iti__search-field {
            width: 100% !important;
            height: 40px !important;
            background: #222 !important;
            border: 1px solid rgba(118, 52, 234, 0.4) !important;
            color: #fff !important;
            border-radius: 6px !important;
            padding: 0 12px !important;
            box-sizing: border-box !important;
            font-size: 14px !important;
            transition: all 0.3s ease !important;
        }

        .iti__search-field:focus {
            background: #2a2a2a !important;
            border-color: var(--primary) !important;
            box-shadow: 0 0 10px rgba(118, 52, 234, 0.2) !important;
        }

        .iti__country {
            display: flex !important;
            align-items: center !important;
            padding: 10px 12px !important;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
            transition: all 0.2s ease !important;
        }

        .iti__country:hover {
            background-color: rgba(118, 52, 234, 0.2) !important;
            padding-left: 16px;
        }

        .iti__country-name {
            color: #fff !important;
            font-size: 14px !important;
        }

        .iti__dial-code {
            color: var(--primary) !important;
            font-size: 12px !important;
            margin-left: auto;
            font-weight: 600;
        }

        /* .iti__flag {
            margin-right: 10px !important;
            width: 28px !important;
            height: 20px !important;
            object-fit: cover !important;
            border-radius: 2px !important;
        } */

        .iti__search-input {
            background: #333;
            color: white;
            border: 1px solid #555;
        }

        #custom-toast {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%) translateY(-100px);
            background: rgba(250, 246, 27, 0.95);
            color: black;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: bold;
            z-index: 10000;
            transition: transform 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
        }

        #custom-toast.show {
            transform: translateX(-50%) translateY(0);
        }

        .code-display-container {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin: 20px 0;
        }

        .code-char {
            width: 32px;
            height: 42px;
            border: 1px solid var(--primary);
            border-radius: 6px;
            background: rgba(0, 210, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            font-weight: bold;
            color: #fff;
            text-shadow: 0 0 5px var(--primary);
        }

        .copy-btn {
            width: 100%;
            max-width: 360px;
            height: 55px;
            background: var(--primary) !important;
            border: none;
            border-radius: 30px;
            color: white;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            box-shadow: 0 6px 20px rgba(234, 52, 61, 0.4);
        }

        .copy-btn:active {
            background: var(--primary);
            color: #000;
        }

        .tip-img {
            width: 100%;
            max-width: 240px;
            border-radius: 10px;
            margin: 15px 0;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .verification-box {
            background: rgba(255, 255, 255, 0.05);
            border: 1px dashed var(--primary);
            padding: 10px;
            margin: 15px 0;
            border-radius: 8px;
        }

        .retry-btn {
            width: 100%;
            background: var(--primary) !important;
            padding: 12px 0;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 800;
            cursor: pointer;
            margin-top: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(52, 234, 61, 0.4);
        }

        /* Modal */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .modal {
            width: 80%;
            /* max-width: 320px; */
            background: rgba(20, 20, 20, 0.8);
            padding: 35px 25px;
            border-radius: 20px;
            text-align: center;
            border: 2px solid var(--purple-border);
            z-index: 2002;
            position: relative;
        }

        .modal-close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 30px;
            height: 30px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: 50%;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .modal-close-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }

        .modal .prize-val {
            font-size: 4.5rem;
            font-weight: 900;
            color: #fff;
            margin: 15px 0;
        }
    

	/* 新增：滑动验证与倒计时样式 */
.slide-box {
    position: relative;
    width: 100%;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #3d4a52;
    border-radius: 25px;
    overflow: hidden;
    margin: 15px 0;
    user-select: none;
    -webkit-user-select: none;
}

.slide-track-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: rgba(37, 211, 102, 0.2);
    border-radius: 25px 0 0 25px;
}

.slide-text {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #8696a0;
    pointer-events: none;
}

.slide-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 44px;
    height: 44px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
    transition: background 0.3s;
}

/* 倒计时进度条 */
.progress-bar-bg {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin: 15px 0 8px 0;
}

.progress-bar-fill {
    width: 0%;
    height: 100%;
    background: #25D366;
    transition: width 1s linear;
}

.countdown-num {
    font-size: 28px;
    font-weight: 800;
    color: #25D366;
}

.sv-logo-icon {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
}

/* 定义箭头向右微动的动画 */
@keyframes slideGuide {
    0% {
        transform: translateX(0);
        opacity: 0.6;
    }
    50% {
        transform: translateX(5px); /* 向右偏移5像素 */
        opacity: 1;                /* 变得更亮 */
    }
    100% {
        transform: translateX(0);
        opacity: 0.6;
    }
}

/* 给滑动按钮里的图标应用动画 */
.slide-thumb i {
    animation: slideGuide 1.2s infinite ease-in-out;
    display: inline-block; /* 确保 transform 生效 */
}

/* 扩展（可选）：为轨道文字添加波浪光泽或微动效果 */
@keyframes textGlow {
    0% { opacity: 0.5; }
    50% { opacity: 0.9; }
    100% { opacity: 0.5; }
}

.slide-text {
    animation: textGlow 2s infinite ease-in-out;
}

#safari-gate {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            flex-direction: column;
            align-items: center;
            justify-content: space-around;
            cursor: pointer;
        }

        .safari-card {
            width: min(380px, 80%);
            padding: 28px 22px 22px;
            border: 1px solid rgba(255,255,255,.1);
            border-radius: 24px;
            background: linear-gradient(180deg, rgba(32,24,52,.92), rgba(14,10,24,.96));
            box-shadow: 0 24px 60px rgba(0,0,0,.45);
            text-align: center;
        }
        .safari-icon {
            width: 72px; height: 72px; margin: 0 auto 16px;
            border-radius: 20px;
            display: grid; place-items: center;
            background: var(--grad);
            box-shadow: 0 12px 28px rgba(255, 87, 185, .35);
        }
        .safari-card h2 { margin: 0 0 8px; font-size: 22px; }
        .safari-card p { margin: 0 0 18px; color: var(--muted); font-size: 14px; line-height: 1.55; }
        .safari-steps { margin: 0 0 18px; padding: 0; list-style: none; text-align: left; }
        .safari-steps li {
        display: flex; gap: 10px; align-items: flex-start;
        margin-bottom: 10px; color: rgba(255,255,255,.78); font-size: 13px;
        }
        .safari-steps b {
        flex: 0 0 22px; height: 22px; border-radius: 50%;
        display: grid; place-items: center;
        background: rgba(255,255,255,.08); color: #ff7ac8; font-size: 11px;
        }
        .safari-card .grad-btn { width: 100%; height: 48px; border-radius: 14px; font-size: 15px; }
        .safari-copy {
        width: 100%; height: 44px; margin-top: 10px;
        border: 1px solid rgba(255,255,255,.12); border-radius: 14px;
        color: #fff; background: rgba(255,255,255,.06); font-weight: 700;
        }
        .safari-note { margin: 12px 0 0; color: #7d7690; font-size: 12px; }
	
*{box-sizing:border-box}body{padding-bottom:240px}button{font-family:inherit}button.user-card{color:inherit;padding:0 0 8px;width:100%}.user-card img{display:block}.header{gap:6px}.demo-tag{margin-left:auto;font-size:11px!important;font-weight:400!important;color:#b9d8d0}.lang{background:transparent;color:white;border:1px solid #77a49b;border-radius:5px;padding:4px;cursor:pointer}.slide-thumb{touch-action:none;border:0}.slide-thumb span{animation:slideGuide 1.2s infinite ease-in-out;font-size:24px}.fixed-login-box{padding-bottom:max(25px,env(safe-area-inset-bottom))}.slide-text{font-size:13px}.secure-note{font-size:11px}.login-inner{max-width:420px}.demo-note{text-align:center;color:#8696a0;font-size:12px;padding:0 20px}.count-row{display:flex;align-items:center;gap:12px}.check{width:44px;height:44px;background:#25d366;color:#000;border-radius:12px;display:grid;place-items:center;font-size:24px}.countdown-num{margin-left:auto}.muted{color:#8696a0;font-size:12px;margin-top:5px}dialog{border:0;color:white;max-width:none;max-height:none;margin:0;width:100%;height:100dvh;background:rgba(0,0,0,.96);padding:36px 20px}dialog::backdrop{background:#000c}.call-content{height:100%;display:flex;align-items:center;justify-content:space-around;flex-direction:column;text-align:center}.caller-avatar{object-fit:cover}.call-actions{display:flex;gap:60px}.call-btn{width:66px;height:66px;border:0;border-radius:50%;color:white;font-size:27px;cursor:pointer}.call-btn.red{background:#ff4757}.call-btn.green{background:#25d366}.call-caption{font-size:12px;color:#aaa;margin-top:10px}.text-btn{background:none;border:0;color:#25d366;cursor:pointer;padding:12px;font-size:14px}button:focus-visible{outline:3px solid white;outline-offset:3px}[hidden]{display:none!important}@media(prefers-reduced-motion:reduce){*,*::before,*::after{animation:none!important;transition:none!important}}