
        @font-face {
            font-family: 'AlibabaSans';
            src: url('https://assets-persist.lovart.ai/agent-static-assets/AlibabaSans-Regular.otf') format('opentype');
            font-weight: normal;
            font-style: normal;
        }
        
        @font-face {
            font-family: 'AlibabaSans';
            src: url('https://assets-persist.lovart.ai/agent-static-assets/AlibabaSans-Medium.otf') format('opentype');
            font-weight: 500;
            font-style: normal;
        }
        
        @font-face {
            font-family: 'AlibabaSans';
            src: url('https://assets-persist.lovart.ai/agent-static-assets/Alibaba-PuHuiTi-Bold.otf') format('opentype');
            font-weight: bold;
            font-style: normal;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'AlibabaSans', sans-serif;
            background-color: #1A1A1A;
            color: #FFFFFF;
            max-width: 1440px;
            margin: 0 auto;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            padding: 0;
        }
        
        header {
            width: 100%;
            padding: 10px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-size: 36px;
            font-weight: bold;
            letter-spacing: 1px;
        }
        
        .logo span.x {
            color: #AAFF00;
            font-weight: bold;
        }
        h6 span.byline {
            color: #AAFF00;
            font-weight: 200;
        }
        
        .main-content {
            width: 100%;
            max-width: 1000px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 10px 20px;
            flex-grow: 1;
        }
        
        h1 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        p.subtitle {
            font-size: 20px;
            color: #CCCCCC;
            margin-bottom: 60px;
            max-width: 600px;
            line-height: 1.6;
        }
        
        .input-container {
            width: 100%;
            max-width: 500px;
            background-color: #FFFFFF;
            border-radius: 16px;
            padding: 30px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .input-label {
            font-size: 18px;
            color: #333333;
            margin-bottom: 15px;
            text-align: left;
            font-weight: 500;
        }
        
        .code-input-wrapper {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .code-input {
            flex-grow: 1;
            height: 60px;
            border: 2px solid #E0E0E0;
            border-radius: 12px;
            padding: 0 20px;
            font-size: 24px;
            font-weight: 500;
            color: #333333;
            letter-spacing: 5px;
            text-align: center;
        }
        
        .code-input:focus {
            outline: none;
            border-color: #AAFF00;
        }
        
        .go-button {
            height: 60px;
            width: 80px;
            background-color: #AAFF00;
            color: #1A1A1A;
            border: none;
            border-radius: 12px;
            font-size: 20px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .go-button:hover {
            background-color: #99EE00;
            transform: translateY(-2px);
        }
        
        .decorative-element {
            position: absolute;
            z-index: -1;
        }
        
        .checkmark {
            width: 300px;
            height: 300px;
            position: absolute;
            right: 100px;
            top: 150px;
            opacity: 0.15;
            transform: rotate(15deg);
        }
        
        .circle {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(170, 255, 0, 0.05);
            position: absolute;
            left: 100px;
            bottom: 100px;
        }
        
        footer {
            width: 100%;
            padding: 30px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #999999;
            font-size: 14px;
            border-top: 1px solid #333333;
        }
        
        .footer-links {
            display: flex;
            gap: 20px;
        }
        
        .footer-links a {
            color: #999999;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #AAFF00;
        }

        @media (max-width: 768px) {
            header {
                padding: 10px, 20px;
            }

            .main-content {
                padding: 0px 20px;
            }

            h1 {
                font-size: 36px;
            }

            p.subtitle {
                font-size: 18px;
                margin-bottom: 40px;
            }

            .input-container {
                padding: 20px;
            }

            .code-input-wrapper {
                flex-direction: column;
                gap: 20px;
            }

            .code-input {
                width: 100%;
                height: 50px;
                font-size: 20px;
            }

            .go-button {
                width: 100%;
                height: 50px;
            }

            footer {
                padding: 20px;
                flex-direction: column;
                gap: 10px;
            }

            .footer-links {
                flex-direction: column;
                gap: 10px;
            }

            .decorative-element {
                display: none;
            }
        }
/* --- Additions for privacy.html --- */
.legal-content {
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
    padding: 0 20px;
}

.legal-content h1,
.legal-content h2,
.legal-content h3 {
    margin-top: 2em;
    margin-bottom: 1em;
}

.legal-content h1 {
    font-size: 40px;
    font-weight: bold;
    color: #FFFFFF;
    text-align: center;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: bold;
    color: #FFFFFF;
    border-bottom: 1px solid #444444;
    padding-bottom: 10px;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 500;
    color: #DDDDDD;
}

.legal-content p,
.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    color: #CCCCCC;
    margin-bottom: 1em;
}

.legal-content ul,
.legal-content ol {
    padding-left: 40px;
    margin-bottom: 1em;
}

.legal-content strong {
    color: #FFFFFF;
    font-weight: 500;
}

.legal-content a {
    color: #AAFF00;
    text-decoration: none;
    font-weight: 500;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2em 0;
    color: #CCCCCC;
}

.legal-content th,
.legal-content td {
    border: 1px solid #555555;
    padding: 12px 15px;
    text-align: left;
    font-size: 14px;
}

.legal-content th {
    background-color: #2a2a2a;
    color: #FFFFFF;
    font-weight: bold;
}

.legal-content .subtitle-legal {
    text-align: center;
    color: #999999;
    margin-top: -1em;
    margin-bottom: 3em;
}

/* --- Additions for privacy.html --- */
.legal-content {
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
    padding: 0 20px;
}

.legal-content h1,
.legal-content h2,
.legal-content h3 {
    margin-top: 2em;
    margin-bottom: 1em;
}

.legal-content h1 {
    font-size: 40px;
    font-weight: bold;
    color: #FFFFFF;
    text-align: center;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: bold;
    color: #FFFFFF;
    border-bottom: 1px solid #444444;
    padding-bottom: 10px;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 500;
    color: #DDDDDD;
}

.legal-content p,
.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    color: #CCCCCC;
    margin-bottom: 1em;
}

.legal-content ul,
.legal-content ol {
    padding-left: 40px;
    margin-bottom: 1em;
}

.legal-content strong {
    color: #FFFFFF;
    font-weight: 500;
}

.legal-content a {
    color: #AAFF00;
    text-decoration: none;
    font-weight: 500;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2em 0;
    color: #CCCCCC;
}

.legal-content th,
.legal-content td {
    border: 1px solid #555555;
    padding: 12px 15px;
    text-align: left;
    font-size: 14px;
}

.legal-content th {
    background-color: #2a2a2a;
    color: #FFFFFF;
    font-weight: bold;
}

.legal-content .subtitle-legal {
    text-align: center;
    color: #999999;
    margin-top: -1em;
    margin-bottom: 3em;
}

/* static/style.css */

/* --- Updated Footer Link Styles --- */

/* This sets the default GRAY color for all footer links */
.footer-links a {
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* This keeps the hover effect for all links */
.footer-links a:hover {
    color: #AAFF00;
}

/* This is the new, specific rule:
   It makes the Privacy Policy link GREEN ONLY when the body has the class "page-privacy" */
body.page-privacy .footer-links a[href="/privacy"] {
    color: #AAFF00;
}