        * {
            padding: 0;
            margin: 0;
            box-sizing: border-box;
        }
        
        body {
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow: hidden;
        }
        
        .main {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            z-index: 10;
        }
        
        .card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 30px;
            max-width: 500px;
            width: 100%;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            margin-bottom: 1px;
        }
        
        .card h2 {
            color: #fff;
            margin-bottom: 25px;
            font-weight: 600;
            font-size: 28px;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        }
        
        .loader-container {
            position: relative;
            margin: 5px 0;
        }
        
        .circle {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 200px;
            height: 200px;
            margin: 0 auto;
            background-image: linear-gradient(0deg,
            rgb(47, 102, 255),
            rgb(153, 64, 255) 30%,
            rgb(238, 55, 255) 60%,
            rgb(255, 0, 76) 100%);
            border-radius: 50%;
            animation: rotate 1.5s linear infinite;
            box-shadow: 0 0 50px rgba(153, 64, 255, 0.5);
        }
        
        .circle::before {
            content: "";
            position: absolute;
            width: 200px;
            height: 200px;
            background-image: linear-gradient(0deg,
            rgb(47, 102, 255),
            rgb(153, 64, 255) 30%,
            rgb(238, 55, 255) 60%,
            rgb(255, 0, 76) 100%);
            border-radius: 50%;
            filter: blur(35px);
            opacity: 0.7;
        }
        
        .circle::after {
            content: "";
            position: absolute;
            width: 150px;
            height: 150px;
            background: rgba(15, 12, 41, 0.8);
            border-radius: 50%;
        }
        
        /* 合并重复的countdown样式定义 */
        .countdown {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #fff;
            font-size: 42px;
            font-weight: 700;
            z-index: 20;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }
        
        .info-box {
            background: rgba(0, 0, 0, 0.2);
            border-radius: 12px;
            padding: 15px;
            margin: 5px 0;
        }
        
        /* 改动1：将.info-box内所有p标签文字改为亮绿色 */
        .info-box p {
            color: #39ff14; /* 亮绿色，与网址颜色一致 */
            margin: 5px 0;
            font-size: 16px;
        }
        
        /* 网址样式：保持亮绿色，可略调整权重（可选） */
        .info-box .url {
            color: #39ff14; 
            font-weight: 500;
            word-break: break-all;
            font-size: 14px;
        }
        
        /* 改动2：将.info-box内的status类下所有文本（包括https://前缀）改为亮绿色 */
        .info-box .status {
            color: #39ff14; /* 统一info-box内status的文字颜色为亮绿色 */
            display: inline-block; /* 确保样式生效 */
        }
        
        /* 状态栏中的域名文本保持高亮（可选：可与上级样式合并，这里保留以增强权重） */
        .status #randomStrDisplay,
        .status #domainDisplay {
            color: #39ff14;
            font-weight: 500;
        }
        
        /* 可选改动3：将状态点也改为亮绿色，保持视觉统一 */
        .status-dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #39ff14; /* 亮绿色，替换原#4CAF50 */
            margin-right: 8px;
        }
        
        .security-info {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 5px;
            color: #ffc107;
        }
        
        .security-info i {
            margin-right: 10px;
            font-size: 20px;
        }
        
        .tips {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            margin-top: 5px;
            line-height: 1.6;
        }
        
        .btn-jump { 
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 500;
            margin-top: 1px;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .btn-jump:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        
        .footer {
            color: rgba(255, 255, 255, 0.6);
            text-align: center;
            font-size: 14px;
            margin-top: 15px;
        }
        
        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }
        
        /* 添加粒子漂浮动画 */
        @keyframes float {
            0% {
                transform: translateY(0) translateX(0);
            }
            25% {
                transform: translateY(-10px) translateX(10px);
            }
            50% {
                transform: translateY(0) translateX(20px);
            }
            75% {
                transform: translateY(10px) translateX(10px);
            }
            100% {
                transform: translateY(0) translateX(0);
            }
        }
        
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .particle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }
        
        .copy-tooltip {
            position: absolute;
            background: #1e293b;
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 0.8rem;
            margin-top: -30px;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
            z-index: 10;
        }
        
        .status-copied {
            background-color: rgba(76, 175, 80, 0.2);
        }
        
        @media (max-width: 576px) {
            .card {
                padding: 20px;
            }
            
            .circle {
                width: 150px;
                height: 150px;
            }
            
            .circle::before {
                width: 150px;
                height: 150px;
            }
            
            .circle::after {
                width: 110px;
                height: 110px;
            }
            
            .countdown {
                font-size: 32px;
            }
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            
            .message {
                font-size: 1.1rem;
            }
            
            .maintenance-card {
                padding: 2.5rem;
            }
            
            .status {
                font-size: 0.85rem;
                padding: 0.7rem 1.2rem;
            }
        }