* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #1a1a1a;
    color: #d4d4d4;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 48px 24px; /* 放大0.2倍：40px→48px, 20px→24px */
    background-image: url('bj.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.logo {
    text-align: center;
    margin-bottom: 48px; /* 放大0.2倍：40px→48px */
}

.logo img {
    height: 120px; /* 放大0.2倍：100px→120px */
}

h1 {
    color: #d4a941;
    font-size: 38.4px; /* 放大0.2倍：32px→38.4px */
    margin-top: 24px; /* 放大0.2倍：20px→24px */
    text-shadow: 2.4px 2.4px 4.8px rgba(0, 0, 0, 0.5); /* 放大0.2倍 */
}

.download-container {
    display: flex;
    justify-content: center;
    gap: 36px; /* 放大0.2倍：30px→36px */
    width: 100%;
    max-width: 1200px; /* 放大0.2倍：1000px→1200px */
    flex-wrap: wrap;
    margin-bottom: 48px; /* 放大0.2倍：40px→48px */
}

.download-box {
    background-color: rgba(34, 25, 0, 0.6);
    border-radius: 9.6px; /* 放大0.2倍：8px→9.6px */
    padding: 30px; /* 放大0.2倍：25px→30px */
    width: 45%;
    min-width: 360px; /* 放大0.2倍：300px→360px */
    cursor: pointer;
    transition: all 0.3s;
    border: 1.2px solid #444; /* 放大0.2倍：1px→1.2px */
    backdrop-filter: blur(5px);
}

.download-box:hover {
    transform: translateY(-6px); /* 放大0.2倍：5px→6px */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3); /* 放大0.2倍 */
    border-color: #d4a941;
}

.platform-icon {
    width: 60px; /* 放大0.2倍：50px→60px */
    height: 60px; /* 放大0.2倍：50px→60px */
    margin-bottom: 18px; /* 放大0.2倍：15px→18px */
}

.box-title {
    font-size: 28.8px; /* 放大0.2倍：24px→28.8px */
    color: #d4a941;
    margin-bottom: 12px; /* 放大0.2倍：10px→12px */
}

.box-subtitle {
    font-size: 19.2px; /* 放大0.2倍：16px→19.2px */
    color: #b8b8b8;
}

.version-section {
    width: 100%;
    max-width: 1200px; /* 放大0.2倍：1000px→1200px */
    margin-top: 24px; /* 放大0.2倍：20px→24px */
    padding: 24px; /* 放大0.2倍：20px→24px */
    border-radius: 9.6px; /* 放大0.2倍：8px→9.6px */
    max-height: 2400px; /* 放大0.2倍：2000px→2400px */
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #d4a941 #2a2200;
}

.version-section::-webkit-scrollbar {
    width: 9.6px; /* 放大0.2倍：8px→9.6px */
}

.version-section::-webkit-scrollbar-track {
    background: #2a2200;
    border-radius: 4.8px; /* 放大0.2倍：4px→4.8px */
}

.version-section::-webkit-scrollbar-thumb {
    background-color: #d4a941;
    border-radius: 4.8px; /* 放大0.2倍：4px→4.8px */
}

.version-title {
    font-size: 26.4px; /* 放大0.2倍：22px→26.4px */
    color: #d4a941;
    margin-bottom: 24px; /* 放大0.2倍：20px→24px */
    text-align: center;
}

.platform-versions {
    display: flex;
    flex-direction: column;
    gap: 36px; /* 放大0.2倍：30px→36px */
}

.platform-version {
    margin-bottom: 24px; /* 放大0.2倍：20px→24px */
}

.platform-name {
    font-size: 24px; /* 放大0.2倍：20px→24px */
    color: #d4a941;
    margin-bottom: 18px; /* 放大0.2倍：15px→18px */
    padding-bottom: 6px; /* 放大0.2倍：5px→6px */
    border-bottom: 1.2px solid rgba(212, 169, 65, 0.3); /* 放大0.2倍：1px→1.2px */
}

.version-item {
    margin-bottom: 18px; /* 放大0.2倍：15px→18px */
    padding-left: 18px; /* 放大0.2倍：15px→18px */
    border-left: 2.4px solid rgba(212, 169, 65, 0.5); /* 放大0.2倍：2px→2.4px */
}

.version-number {
    color: #d4a941;
    font-weight: bold;
    margin-bottom: 6px; /* 放大0.2倍：5px→6px */
}

.version-features {
    padding-left: 18px; /* 放大0.2倍：15px→18px */
}

.version-feature {
    color: #b8b8b8;
    font-size: 16.8px; /* 放大0.2倍：14px→16.8px */
    margin-bottom: 3.6px; /* 放大0.2倍：3px→3.6px */
    position: relative;
}

.version-feature:before {
    content: '·';
    position: absolute;
    left: -12px; /* 放大0.2倍：10px→12px */
}

.no-version {
    color: #b8b8b8;
    font-size: 16.8px; /* 放大0.2倍：14px→16.8px */
    font-style: italic;
    padding-left: 18px; /* 放大0.2倍：15px→18px */
}

#windows-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: rgba(34, 34, 34, 0.9);
    border-radius: 9.6px; /* 放大0.2倍：8px→9.6px */
    padding: 36px; /* 放大0.2倍：30px→36px */
    width: 80%;
    max-width: 960px; /* 放大0.2倍：800px→960px */
    display: flex;
    gap: 36px; /* 放大0.2倍：30px→36px */
    border: 1.2px solid #d4a941; /* 放大0.2倍：1px→1.2px */
}

.modal-section {
    flex: 1;
    padding: 24px; /* 放大0.2倍：20px→24px */
    background: rgba(26, 19, 0, 0.4);
    border-radius: 6px; /* 放大0.2倍：5px→6px */
    border: 1.2px solid rgba(212, 169, 65, 0.2); /* 放大0.2倍：1px→1.2px */
}

.modal-title {
    font-size: 26.4px; /* 放大0.2倍：22px→26.4px */
    color: #d4a941;
    margin-bottom: 18px; /* 放大0.2倍：15px→18px */
}

.modal-subtitle {
    font-size: 19.2px; /* 放大0.2倍：16px→19.2px */
    color: #b8b8b8;
    margin-bottom: 24px; /* 放大0.2倍：20px→24px */
}

.modal-btn {
    display: inline-block;
    background-color: #d4a941;
    color: #1a1a1a;
    padding: 12px 30px; /* 放大0.2倍：10px→12px, 25px→30px */
    border-radius: 4.8px; /* 放大0.2倍：4px→4.8px */
    text-decoration: none;
    font-weight: bold;
    font-size: 19.2px; /* 放大0.2倍：16px→19.2px */
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.modal-btn:hover {
    background-color: #f5d67b;
    transform: translateY(-2.4px); /* 放大0.2倍：2px→2.4px */
    box-shadow: 0 4.8px 14.4px rgba(0, 0, 0, 0.4); /* 放大0.2倍 */
}

.close-modal {
    position: absolute;
    top: 24px; /* 放大0.2倍：20px→24px */
    right: 24px; /* 放大0.2倍：20px→24px */
    color: #d4a941;
    font-size: 36px; /* 放大0.2倍：30px→36px */
    cursor: pointer;
}