@import url("https://fontsapi.zeoseven.com/292/main/result.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "LXGW WenKai", sans-serif;
    font-weight: normal;
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* 认证标志 */
.trust-badge {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 12px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    z-index: 1000;
    font-size: 0.85rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.trust-logo {
    font-size: 1.4rem;
    color: #f1c40f;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.trust-icon {
    font-size: 1.2rem;
}

.trust-text {
    line-height: 1.2;
}

.trust-title {
    font-weight: 600;
    font-size: 0.9rem;
}

.trust-subtitle {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 400;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

.content {
    text-align: center;
}

.title {
    font-size: 3.5rem;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.subtitle {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    background: transparent;
    border: 1.5px solid;
}

.tag-security {
    color: #27ae60;
    border-color: #27ae60;
}

.tag-stable {
    color: #3498db;
    border-color: #3498db;
}

.tag-support {
    color: #e74c3c;
    border-color: #e74c3c;
}

.tag-system {
    color: #9b59b6;
    border-color: #9b59b6;
}

.tag-software {
    color: #f39c12;
    border-color: #f39c12;
}

.update-time {
    font-size: 0.9rem;
    color: #27ae60;
    margin-bottom: 30px;
    font-weight: 500;
    background: transparent;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1.5px solid #27ae60;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.download-btn {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 12px 28px;
    font-size: 1.1rem;
    font-family: "LXGW WenKai", sans-serif;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.os-icon {
    font-size: 1.2rem;
}

/* 下载区域 */
.download-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

/* 折扣标签 */
.discount-badge {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(231, 76, 60, 0.3);
    animation: pulse 2s infinite;
    white-space: nowrap;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 3px 10px rgba(231, 76, 60, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(231, 76, 60, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 3px 10px rgba(231, 76, 60, 0.3);
    }
}

.description {
    font-size: 1rem;
    color: #888;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 15px;
}





/* 响应式设计 */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .tags-container {
        gap: 8px;
    }

    .tag {
        font-size: 0.7rem;
        padding: 5px 10px;
    }

    .update-time {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .download-section {
        flex-direction: column;
        gap: 10px;
    }

    .download-btn {
        padding: 10px 24px;
        font-size: 1rem;
    }

    .discount-badge {
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    .description {
        font-size: 0.9rem;
    }

    .trust-badge {
        bottom: 15px;
        right: 15px;
        padding: 10px 12px;
        font-size: 0.8rem;
        gap: 6px;
    }

    .trust-logo {
        font-size: 1.2rem;
    }

    .trust-icon {
        font-size: 1rem;
    }

    .trust-title {
        font-size: 0.8rem;
    }

    .trust-subtitle {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .tags-container {
        gap: 6px;
        margin-top: 20px;
    }

    .tag {
        font-size: 0.65rem;
        padding: 4px 8px;
    }

    .update-time {
        font-size: 0.7rem;
        margin-bottom: 25px;
        padding: 5px 10px;
    }

    .description {
        font-size: 0.8rem;
    }

    .download-section {
        flex-direction: column;
        gap: 8px;
    }

    .discount-badge {
        font-size: 0.75rem;
        padding: 5px 8px;
    }

    .trust-badge {
        bottom: 10px;
        right: 10px;
        padding: 8px 10px;
        font-size: 0.75rem;
        gap: 6px;
    }

    .trust-logo {
        font-size: 1rem;
    }

    .trust-icon {
        font-size: 0.9rem;
    }

    .trust-title {
        font-size: 0.75rem;
    }

    .trust-subtitle {
        font-size: 0.65rem;
    }
}
