* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Microsoft YaHei', sans-serif;
}

body {
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    color: #fff;
    min-height: 100vh;
    position: relative;
    padding: 20px;  
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;      
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsIDI1NSwgMjU1LCAwLjAyKSI+PC9yZWN0PjxyZWN0IHg9IjIwIiB5PSIwIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIGZpbGw9InJnYmEoMjU1LCAyNTUsIDI1NSwgMC4wMikiPjwvcmVjdD48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjcGF0dGVybikiPjwvcmVjdD48L3N2Zz4=');
    opacity: 0.5;
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    width: 100%;
    padding: 0 10px;
}

.header h1 {
    font-size: 2.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(156, 39, 176, 0.8), 0 0 20px rgba(156, 39, 176, 0.6);
    background: linear-gradient(to right, #d16ba5, #86a8e7, #5ffbf1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(to right, #d16ba5, #86a8e7, #5ffbf1);
    border-radius: 3px;
}

.header p {
    font-size: 0.9rem;
    color: #86a8e7;
    text-shadow: 0 0 8px rgba(134, 168, 231, 0.6);
    margin: 8px 2;
    font-weight: 200;
    letter-spacing: 0px;
    text-align: center;
}

.slider-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 30px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    background-size: cover;
    background-position: center;
}

.slider-item.active {
    opacity: 1;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background: #9c27b0;
    transform: scale(1.2);
}

.slider-dot.active {
    background: #9c27b0;
    transform: scale(1.2);
}

.download-card {
    background: rgba(20, 20, 35, 0.8);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(156, 39, 176, 0.3);
    margin-bottom: 30px;
    transform: translateY(0);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
    max-width: 600px;
}

.download-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.info-section {
    margin-bottom: 22px;
}

.info-title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.info-title i {
    font-size: 1.4rem;
    color: #9c27b0;
    margin-right: 10px;
}

.info-title h2 {
    font-size: 1.4rem;
    color: #e0e0ff;
}

.download-content {
    background: rgba(10, 10, 25, 0.7);
    padding: 18px;
    border-radius: 10px;
    border-left: 4px solid #9c27b0;
    word-wrap: break-word;
}

.download-link {
    font-size: 1rem;
    color: #4fc3f7;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    overflow-wrap: break-word;
    max-width: 100%;
    line-height: 1.6;
    margin-bottom: 10px;
}

.download-link:hover {
    color: #29b6f6;
    text-decoration: underline;
}

.download-link i {
    margin-right: 8px;
    flex-shrink: 0;
}

.download-btn {
    display: block;
    background: linear-gradient(45deg, #9c27b0, #673ab7);
    color: white;
    text-decoration: none;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 18px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.4);
    border: none;
    cursor: pointer;
    width: 100%;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(156, 39, 176, 0.6);
    background: linear-gradient(45deg, #ab47bc, #7e57c2);
}

.download-btn i {
    margin-right: 10px;
    animation: pulse 2s infinite;
}

.extract-code {
    display: inline-block;
    background: linear-gradient(45deg, #ff9800, #ff5722);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1rem;
    margin-top: 15px;
    box-shadow: 0 4px 10px rgba(255, 152, 0, 0.3);
}

.footer {
    text-align: center;
    margin-top: 30px;
    color: #666;
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 800px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.glow {
    animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 5px rgba(156, 39, 176, 0.5); }
    to { box-shadow: 0 0 20px rgba(156, 39, 176, 0.8), 0 0 30px rgba(156, 39, 176, 0.4); }
}

.version-block {
    background: rgba(15, 15, 30, 0.6);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(156, 39, 176, 0.2);
    transition: transform 0.3s;
}

.version-block:hover {
    transform: translateX(5px);
}

.version-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.version-title {
    font-size: 1.1rem;
    color: #d16ba5;
    font-weight: 600;
}

.version-tag {
    background: rgba(209, 107, 165, 0.2);
    color: #ff9ec0;
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 10px;
}

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

/* 新增蓝色链接样式 */
.blue-link {
    color: #4fc3f7;
    text-decoration: none;
    transition: color 0.3s;
}

.blue-link:hover {
    color: #29b6f6;
    text-decoration: underline;
}

/* 面包屑导航样式 - 简洁线条风格 */
.breadcrumb-nav {
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.breadcrumb-nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center; /* 添加这一行以实现换行居中对齐 */
}

.breadcrumb-nav li {
    display: flex;
    align-items: center;
}

.breadcrumb-nav li:not(:last-child)::after {
    content: "";
    margin: 0 12px;
    color: #d16ba5;
    font-weight: bold;
}

.breadcrumb-nav a {
    color: #86a8e7;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 4px;
    position: relative;
}

.breadcrumb-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #5ffbf1;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.breadcrumb-nav a:hover {
    color: #5ffbf1;
}

.breadcrumb-nav a:hover::before {
    width: 100%;
}

.breadcrumb-nav li:last-child {
    color: #86a8e7;
    padding: 6px 12px;
    font-weight: 600;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .breadcrumb-nav {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .breadcrumb-nav li:not(:last-child)::after {
        margin: 0 8px;
    }
    
    .breadcrumb-nav a,
    .breadcrumb-nav li:last-child {
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .breadcrumb-nav {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .breadcrumb-nav ul {
        gap: 3px;
    }
    
    .breadcrumb-nav li:not(:last-child)::after {
        margin: 0 6px;
    }
    
    .breadcrumb-nav a,
    .breadcrumb-nav li:last-child {
        padding: 4px 8px;
    }
    
    .slider-container {
        margin-bottom: 20px;
    }
}

@media (min-width: 481px) and (max-width: 1024px) {
    .container { max-width: 90%; }
    .header h1 { font-size: 2.5rem; }
    .download-btn { padding: 16px; }
}

@media (min-width: 1920px) {
    .container { max-width: 1000px; }
    .header h1 { font-size: 3.5rem; }
}

.description-box {
    font-size: 0.9rem; /* 调整为更小的字体大小 */
}
