  * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
        }
        body {
            background-color: #000;
            color: #fff;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            overflow-x: hidden;
            text-align: center;
        }
        .content-wrapper {
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .user-page-section {
            background-color: rgba(0, 0, 0, 0.8);
            border-radius: 10px;
            padding: 20px;
            margin-top: 20px;
            border: 0px solid #FF4500;
            width: 100%;
            max-width: 800px;
        }
        .logo-container {
            text-align: center;
            margin-bottom: 20px;
        }
        .rebot {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #FF4500;
            box-shadow: 0 4px 16px rgba(255, 69, 0, 0.3);
            margin: 0 auto;
            animation: breath 3s ease-in-out infinite;
        }
        @keyframes breath {
            0% {
                transform: scale(1);
                box-shadow: 0 4px 16px rgba(255, 69, 0, 0.3);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 8px 24px rgba(255, 69, 0, 0.4);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 4px 16px rgba(255, 69, 0, 0.3);
            }
        }
        .description-wrapper {
            text-align: center;
            margin-bottom: 20px;
            color: #ddd;
        }
        .input-group {
            margin-bottom: 20px;
            width: 100%;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .form-control {
            width: 100%;
            height: 50px;
            padding: 10px 15px;
            border-radius: 8px;
            border: 1px solid #FF4500;
            background-color: #222;
            color: #fff;
            font-size: 16px;
            text-align: center;
        }
        .preview-link-item__component {
            background-color: #FF4500;
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            margin-bottom: 20px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .preview-link-item__component:hover {
            background-color: #FF6347;
        }
        .preview-link-wrapper {
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            font-size: 18px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .ai-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            display: none;
        }
        .pro-box, .result-box {
            background-color: #111;
            border-radius: 12px;
            padding: 25px;
            width: 90%;
            max-width: 600px;
            border: 1px solid #FF4500;
            margin: 0 auto;
        }
        .word {
            color: #FF4500;
            font-size: 18px;
            font-weight: bold;
            text-align: center;
        }
        .progress-box {
            margin-top: 20px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .item {
            margin-bottom: 15px;
            text-align: center;
        }
        .i-title {
            color: #ddd;
            font-size: 14px;
            margin-bottom: 5px;
        }
        .layui-progress {
            background-color: #333;
            border-radius: 8px;
            height: 12px;
            margin: 0 auto;
            max-width: 400px;
        }
        .layui-progress-bar {
            background-color: #FF4500 !important;
            height: 100%;
            border-radius: 8px;
        }
        #tips-code {
            color: #FF4500;
        }
        .result-con .con {
            color: #ddd;
            font-size: 14px;
            margin-bottom: 15px;
            text-align: center;
        }
        .btn {
            background-color: #FF4500;
            color: #fff;
            padding: 12px;
            border-radius: 8px;
            text-align: center;
            cursor: pointer;
            font-weight: bold;
            border: none;
            width: 100%;
            font-size: 16px;
            max-width: 400px;
            margin: 0 auto;
            display: block;
        }
        .visitor-count {
            color: #FF4500;
            font-weight: bold;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .consent-banner {
            position: fixed;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            background-color: #111;
            padding: 15px;
            text-align: center;
            border-top: 1px solid #FF4500;
            z-index: 1000;
            max-width: 800px;
        }
        .consent-banner p {
            color: #ddd;
            margin-bottom: 10px;
            font-size: 14px;
        }
        .consent-banner button {
            padding: 8px 15px;
            margin: 0 5px;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
        }
        #accept-btn {
            background-color: #FF4500;
            color: #fff;
        }
        #decline-btn {
            background-color: #333;
            color: #ddd;
        }
        footer {
            position: fixed;
            bottom: 10px;
            left: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            padding: 10px 0;
            text-align: center;
            font-size: 12px;
            z-index: 100;
            max-width: 800px;
            left: 50%;
            transform: translateX(-50%);
            border-top: 1px solid #FF4500;
        }
        footer a {
            color: #FF4500;
            text-decoration: none;
            margin: 0 10px;
        }
        @media (max-width: 480px) {
            .content-wrapper {
                padding: 10px;
            }
            .rebot {
                width: 100px;
                height: 100px;
            }
            .preview-link-wrapper {
                font-size: 16px;
            }
            .form-control {
                font-size: 14px;
            }
        }