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

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
        color: #fff;
        min-height: 100vh;
        overflow-x: hidden;
    }

    /* 导航栏基础样式 */
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 50px;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        white-space: nowrap;

    }

    /* logo 样式 */
    .logo {
        font-size: 28px;
        font-weight: bold;
        background: linear-gradient(90deg, #00d4ff, #7b2cbf);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;

        margin-right: 30px;
    }

    .logo-ico {
        width: 40px;
        height: 40px;
        min-height: 40px;
        min-height: 40px;
    }

    /* 导航链接默认（电脑端） */
    .nav-links {
        display: flex;
        gap: 30px;
    }

    .nav-links a {
        color: #fff;
        text-decoration: none;
        font-size: 16px;
        transition: color 0.3s;

    }

    .nav-links a:hover {
        color: #ffcc00;
    }

    /* 汉堡按钮默认隐藏 */
    .menu-toggle {
        display: none;
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        padding: 5px 10px;
    }

    /* ================================== */
    /* ========== 小屏幕适配 ========== */
    /* ================================== */
    @media (max-width: 768px) {

        /* 隐藏横向菜单 */
        .nav-links {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #1a1a2e;
            padding: 15px 20px;
            box-sizing: border-box;
            gap: 14px;
            border-top: 1px solid #333;
        }

        /* 显示汉堡按钮 */
        .menu-toggle {
            display: block;
        }

        /* 点击展开时显示 */
        .nav-links.active {
            display: flex;
            animation: slideDown 0.3s ease forwards;
        }

        /* 展开动画 */
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
    }

    .hero {
        padding: 150px 50px 80px;
        text-align: center;
        position: relative;
    }

    .hero h1 {
        font-size: 56px;
        margin-bottom: 20px;
        background: linear-gradient(90deg, #00d4ff, #7b2cbf, #ff006e);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: gradient 3s ease infinite;
        background-size: 200% 200%;
    }

    @keyframes gradient {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

    .hero p {
        font-size: 20px;
        color: #a0a0a0;
        margin-bottom: 40px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-button {
        display: inline-block;
        padding: 18px 50px;
        background: linear-gradient(90deg, #00d4ff, #7b2cbf);
        color: #fff;
        text-decoration: none;
        font-size: 20px;
        font-weight: bold;
        border-radius: 50px;
        transition: all 0.3s;
        box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
        border: none;
        cursor: pointer;
    }

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
    }

    .screenshot-section {
        padding: 80px 50px;
        text-align: center;
        max-width: 100%;
        max-height: 100%;
    }

    .screenshot-container {
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
    }

    .screenshot {
        width: 100%;
        height: 600px;
        background: linear-gradient(135deg, #2a2a4a, #1a1a3e);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid rgba(0, 212, 255, 0.3);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        position: relative;
        overflow: hidden;
    }

    .screenshot::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.1), transparent);
        animation: shine 3s infinite;
        pointer-events: none;
        z-index: 1;
    }

    @keyframes shine {
        0% {
            transform: translateX(0%) translateY(-100%);
        }

        100% {
            transform: translateX(0%) translateY(150%);
        }
    }

    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .slide img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        border-radius: 1px;
    }

    .slide.active {
        opacity: 1;
    }

    .screenshot-nav {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 30px;
        position: relative;
        z-index: 10;
    }

    .nav-item {
        padding: 12px 24px;
        background: rgba(255, 255, 255, 0.1);
        color: #a0a0a0;
        border: 1px solid rgba(0, 212, 255, 0.3);
        border-radius: 25px;
        cursor: pointer;
        transition: all 0.3s;
        font-size: 14px;
    }

    .nav-item:hover {
        background: rgba(0, 212, 255, 0.1);
        color: #00d4ff;
    }

    .nav-item.active {
        background: linear-gradient(90deg, #00d4ff, #7b2cbf);
        color: #fff;
        border-color: #00d4ff;
    }

    .screenshot-placeholder {
        text-align: center;
        z-index: 1;
    }

    .screenshot-placeholder i {
        font-size: 80px;
        color: #00d4ff;
        margin-bottom: 20px;
    }

    .screenshot-placeholder p {
        font-size: 18px;
        color: #a0a0a0;
    }

    .features {
        padding: 80px 50px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .features h2 {
        text-align: center;
        font-size: 42px;
        margin-bottom: 60px;
        background: linear-gradient(90deg, #00d4ff, #7b2cbf);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .feature-card {
        background: rgba(255, 255, 255, 0.05);
        padding: 40px 30px;
        border-radius: 20px;
        border: 1px solid rgba(0, 212, 255, 0.2);
        transition: all 0.3s;
        backdrop-filter: blur(10px);
    }

    .feature-card:hover {
        transform: translateY(-10px);
        border-color: rgba(0, 212, 255, 0.5);
        box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #00d4ff, #7b2cbf);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        margin-bottom: 20px;
    }

    .feature-card h3 {
        font-size: 24px;
        margin-bottom: 15px;
        color: #00d4ff;
    }

    .feature-card p {
        color: #a0a0a0;
        line-height: 1.6;
        font-size: 15px;
    }

    .stats {
        padding: 80px 50px;
        background: rgba(0, 0, 0, 0.3);
    }

    .stats-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
        text-align: center;
    }

    .stat-item h3 {
        font-size: 48px;
        background: linear-gradient(90deg, #00d4ff, #7b2cbf);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 10px;
    }

    .stat-item p {
        color: #a0a0a0;
        font-size: 16px;
    }

    .cta-section {
        padding: 100px 50px;
        text-align: center;
        background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(123, 44, 191, 0.1));
    }

    .cta-section h2 {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .cta-section p {
        font-size: 18px;
        color: #a0a0a0;
        margin-bottom: 40px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer {
        padding: 40px 50px;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer p {
        color: #666;
        font-size: 14px;
    }

    .footer-links {
        margin-top: 20px;
    }

    .footer-links a {
        color: #00d4ff;
        text-decoration: none;
        margin: 0 15px;
        font-size: 14px;
    }

    .footer-links a:hover {
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .navbar {
            padding: 15px 20px;
        }

        .nav-links {
            display: none;
        }

        .hero {
            padding: 120px 20px 60px;
        }

        .hero h1 {
            font-size: 36px;
        }

        .hero p {
            font-size: 16px;
        }

        .screenshot-section,
        .features {
            padding: 60px 20px;
        }

        .features h2 {
            font-size: 32px;
        }

        .screenshot {
            height: 300px;
        }

        .cta-section h2 {
            font-size: 32px;
        }
    }

    /* 更新日志板块 */
    .changelog-section {
        padding: 80px 5%;
        /*background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);*/
    }

    .changelog-section h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 50px;
        background: linear-gradient(135deg, #00d4ff, #7b2cbf);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .changelog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .changelog-column {
        background: rgba(255, 255, 255, 0.03);
        border-radius: 20px;
        padding: 30px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .changelog-column:hover {
        transform: translateY(-5px);
        border-color: rgba(0, 212, 255, 0.3);
        box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
    }

    .changelog-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 25px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .changelog-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #00d4ff, #7b2cbf);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }

    .changelog-header h3 {
        font-size: 1.3rem;
        color: #fff;
        font-weight: 600;
    }

    .changelog-list {
        display: flex;
        flex-direction: column;
        gap: 18px;
        max-height: 300px;
        overflow-y: auto;
    }

    .changelog-item {
        position: relative;
        padding-left: 20px;
    }

    .changelog-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 8px;
        width: 8px;
        height: 8px;
        background: linear-gradient(135deg, #00d4ff, #7b2cbf);
        border-radius: 50%;
    }

    .changelog-date {
        display: block;
        font-size: 0.85rem;
        color: #00d4ff;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .changelog-item p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 0;
        display: flex;
        justify-content: left;
        align-items: center;
    }

    .changelog-item a {
        text-decoration: none;
    }

    .changelog-item a p:hover {
        color: yellow !important;
    }

    .changelog-item p img {
        width: 32px;
        height: 32px;
    }

    /* 重寫.changelog-list的滾動條 */
    .changelog-list::-webkit-scrollbar {
        width: 8px;
    }

    .changelog-list::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
    }

    .changelog-list::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, #00d4ff, #7b2cbf);
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .changelog-list::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, #00d4ff, #ff006e);
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
    }

    .changelog-list::-moz-scrollbar {
        width: 8px;
    }

    .changelog-list::-moz-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
    }

    .changelog-list::-moz-scrollbar-thumb {
        background: linear-gradient(180deg, #00d4ff, #7b2cbf);
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .changelog-list::-moz-scrollbar-thumb:hover {
        background: linear-gradient(180deg, #00d4ff, #ff006e);
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
    }

    /* 自动击杀标签样式 */
    .auto-kill {
        color: rgb(0, 255, 0);
        /* 绿色 */
        margin-left: 5px;
    }

    /* CSS 自动插入 ⚔️支持自動擊殺 */
    .auto-kill::after {
        content: "⚔️支持自動擊殺";
    }



    /* 重寫.body的滾動條 */
    ::-webkit-scrollbar {
        width: 8px;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    }

    ::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
    }

    ::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, #00d4ff, #7b2cbf);
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, #00d4ff, #ff006e);
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
    }

    ::-moz-scrollbar {
        width: 8px;
    }

    ::-moz-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
    }

    ::-moz-scrollbar-thumb {
        background: linear-gradient(180deg, #00d4ff, #7b2cbf);
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    ::-moz-scrollbar-thumb:hover {
        background: linear-gradient(180deg, #00d4ff, #ff006e);
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
    }