	* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Microsoft YaHei', Arial, sans-serif;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background: url(../images/bg1.jpg) no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* 半透明黑色遮罩，让白色弹窗更突出 */
	
    z-index: -1;
}


        /* ===== 弹窗卡片 ===== */
        .modal {
            display: block;
            width: 100%;
            max-width: 420px;
        }

        .modal-content.juno {
            background-color: #ffffff;
            border-radius: 24px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
            padding: 32px 28px 28px 28px;
            position: relative;
        }

        /* ===== 头部 ===== */
        .modal-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 10px;
        }

        /* Logo框 186*60 - 无背景 */
        .modal-logo-box {
            width: 186px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .modal-logo-box img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        /* 标题样式 */
        .modal-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }

        .juno .modal-title {
            color: #ff6900;
        }

        /* 副标题 - 无背景框 */
        .modal-subtitle {
            font-size: 15px;
            color: #666;
            font-weight: 400;
            margin-bottom: 5px;
            text-align: center;
        }

        /* ===== 按钮容器 ===== */
        .modal-btn-container {
            padding: 5px 0 5px 0;
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .modal-btn-group {
            display: flex;
            flex-direction: column;
            gap: 20px;
            width: 100%;
        }

        /* 第一条分割线 (第一个按钮上方) */
        .divider-top {
            width: 100%;
            height: 1px;
            background: #f0f0f0;
            margin: 0 0 25px 0;
        }

        /* 第三条分割线 (第三个按钮下方) */
        .divider-bottom {
            width: 100%;
            height: 1px;
            background: #f0f0f0;
            margin: 25px 0 10px 0;
        }

        /* 基础按钮样式 */
        .modalbtn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 16px;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
            color: white !important;
            gap: 8px;
        }

        .modalbtn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }

        .juno .modalbtn-primary {
            background: linear-gradient(135deg, #ff6900, #ff6900);
            box-shadow: 0 4px 12px rgba(255,105,0,0.2);
        }
        .juno .modalbtn-secondary {
            background: linear-gradient(135deg, #ffa236, #ffa236);
            box-shadow: 0 4px 12px rgba(255,162,54,0.2);
        }
        .juno .copy-btn {
            background: #f5ae20;
            color: white !important;
            border: 1px solid #ffa236;
            box-shadow: 0 4px 10px rgba(255,162,54,0.2);
            position: relative;
        }

        /* 复制成功状态 - 完全隐藏原内容 */
        .copy-btn.copy-success .server-text,
        .copy-btn.copy-success .copy-icon {
            display: none;
        }

        /* 成功时显示绿色✔已复制 */
        .copy-btn.copy-success .copy-text {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            color: #28a745 !important; /* 绿色文字 */
            font-weight: 600;
            font-size: 16px;
        }

        .copy-btn.copy-success .copy-text::before {
            content: "✔";
            font-size: 18px;
            color: #28a745; /* 绿色对勾 */
            margin-right: 4px;
        }

        /* 正常状态 */
        .copy-btn .server-text,
        .copy-btn .copy-icon {
            display: inline;
        }
        .copy-btn .copy-text {
            display: inline;
            color: white !important;
        }
        .copy-btn .copy-text::before {
            content: none;
        }

        /* ===== 页脚 ===== */
        .modal-footer {
            width: 100%;
            margin-top: 0px;
        }

        .modal-regulatory-info {
            font-size: 13px;
            color: #777;
            text-align: center;
            margin: 5px 0 8px;
        }

        .modal-platform-copyright {
            font-size: 12px;
            color: #777;
            font-weight: 500;
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid #f0f0f0;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            flex-wrap: wrap;
        }

        /* 版权年份无背景色，颜色与版权文字一致 */
        .copyright-year {
            color: #777;
            font-weight: 500;
        }

        /* 移动端小屏幕适配 */
        @media (max-width: 480px) {
            .modal-content.juno {
                padding: 24px 20px 20px;
            }
            
            .modal-title {
                font-size: 24px;
            }
            
            .modal-subtitle {
                font-size: 14px;
                margin-bottom: 4px;
            }
            
            .modalbtn {
                padding: 14px;
                font-size: 15px;
            }
            
            .modal-logo-box {
                width: 160px;
                height: 52px;
            }
            
            .modal-regulatory-info {
                margin: 3px 0 6px;
            }
        }