     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* 考虑头部导航高度 */
}
/* 轮播图容器 */
.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

/* 轮播图样式 */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: slideAnimation 20s infinite;
}

/* 图片样式 */
.slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 轮播动画 */
.slide:nth-child(1) {

    animation-delay: 0s;
}

.slide:nth-child(2) {
    animation-delay: 5s;
}

.slide:nth-child(3) {
    animation-delay: 10s;
}

.slide:nth-child(4) {
    animation-delay: 15s;
}

/* 轮播动画关键帧 */
@keyframes slideAnimation {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    5% {
        opacity: 1;
        transform: scale(1);
    }
    20% {
        opacity: 1;
    }
    25% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* 渐变遮罩 */
.slideshow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.65));
    z-index: 1;
}

/* === B站视频专用容器 === */
.bilibili-video-container {
    margin: 2.5rem 0;
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* B站视频头部 - 保持粉色主题 */
.bilibili-video-container .video-header {
    background: linear-gradient(135deg, rgba(251, 114, 153, 0.15), rgba(251, 114, 153, 0.05));
    padding: 1.2rem 1.8rem;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(251, 114, 153, 0.2);
}

.bilibili-video-container .video-header i {
    color: #fb7299;
    font-size: 1.8rem;
}

.bilibili-video-container .video-header h4 {
    margin: 0;
    flex: 1;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
}

.bilibili-video-container .video-badge {
    background: #fb7299;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* B站视频包装器 */
.bilibili-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: calc(56.25% + 60px);
    height: 0;
    overflow: hidden;
    background: #000;
}

.bilibili-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    transform: scale(1);
    transform-origin: 0 0;
}

/* === 整合包介绍专用容器 === */
.modpack-info {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2.5rem 0;
    border-left: 6px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modpack-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.modpack-info p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: #ddd;
}

/* 特性卡片 */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

.feature {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
    border-top: 3px solid var(--accent-color);
}

.feature i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

/* === 响应式调整 === */
@media (max-width: 768px) {
    .bilibili-video-container,
    .modpack-info {
        margin: 2rem 0;
    }
    
    .bilibili-video-container .video-header {
        padding: 1rem 1.2rem;
    }
    
    .bilibili-video-container .video-header h4 {
        font-size: 1.2rem;
    }
    
    .bilibili-video-container .video-header i {
        font-size: 1.5rem;
    }
    
    .bilibili-video-wrapper {
        padding-bottom: calc(56.25% + 40px);
    }
    
    .modpack-info {
        padding: 1.5rem;
    }
    
    .features {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .bilibili-video-container {
        border-radius: 10px;
        margin: 1.5rem 0;
    }
    
    .bilibili-video-container .video-header {
        padding: 0.8rem 1rem;
        gap: 10px;
    }
    
    .bilibili-video-container .video-header h4 {
        font-size: 1.1rem;
    }
    
    .bilibili-video-container .video-badge {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    
    .bilibili-video-wrapper {
        padding-bottom: 56.25%;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}
 /* hero区域 */
.hero {
    position: relative;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
    border-radius: 0 0 20px 20px;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

        .hero h2 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            color: var(--accent-color);
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #ddd;
        }

       .cta-button {
    display: inline-block;
    background-color: var(--primary-color); 
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--accent-color); 
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
/* 内容动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式调整 */
@media (max-width: 768px) {
    .hero {
        min-height: 400px;
        padding: 3rem 0;
    }
    
    @keyframes slideAnimation {
        0% {
            opacity: 0;
            transform: scale(1.05);
        }
        5% {
            opacity: 1;
            transform: scale(1);
        }
        20% {
            opacity: 1;
        }
        25% {
            opacity: 0;
        }
        100% {
            opacity: 0;
        }
    }
}
       :root {

    --primary-color: #6a6fb7;   
    --secondary-color: #edbc5d;   
    --dark-bg: #121212;
    --darker-bg: #0a0a0a;
    --light-text: #f5f5f5;
    --accent-color: #edbc5d;      
    --card-bg: #1e1e1e;
    --border-color: #333;
    --primary-color-rgb: #121212;
}

        body {
            background-color: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.6;
        }
.container-1 {
            max-width: 9000px;
            padding: 0 100px;
             margin: 0 auto;  
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 头部样式 */
        header {
            background-color: var(--darker-bg);
            padding: 1.5rem 0;
            border-bottom: 3px solid var(--primary-color);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }

        .header-content {
           display: flex; /* 必须要有这个 */
    align-items: center;
    width: 100%; /* 确保宽度足够 */
    justify-content: space-between; /* 或者 space-between */
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            
        }

        .logo i {
            color: var(--accent-color);
            font-size: 2.5rem;
        }

        .logo h1 {
            font-size: 1.8rem;
            background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 700;
        }


       /* 确保所有导航项对齐 */




.main-nav-menu a.active {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}
/* 1. 主菜单基础样式 */
.main-nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
    margin: 0 0 0 auto;
    padding: 20px 0;
    margin-left: auto; 
}

.main-nav-menu li {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.main-nav-menu a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 5px;
    height: 100%;
}

.main-nav-menu a:hover, 
.main-nav-menu a.active {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

/* 2. 下拉菜单样式（保留一个） */
.dropdown {
    position: relative;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown > a .fa-chevron-down {
    font-size: 0.8rem;
    transition: transform 0.3s;
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%); /* ← 只保留水平居中，去掉垂直位移 */
    min-width: 220px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: block !important;
    
    /* 关键：设置变换原点为顶部 */
    transform-origin: top center;
    
    /* 初始状态：缩小并向上移动一点 */
    transform: translateX(-50%) scale(0.95) translateY(-10px);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1) translateY(0);
}
.dropdown:hover > a .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu li {
    list-style: none;
    display: block;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: #ddd;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s;
    width: 100%;
}

.dropdown-menu a:hover {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
}




        /* 主要内容区域 */
        section {
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2.2rem;
            margin-bottom: 2rem;
            color: var(--accent-color);
            position: relative;
            padding-bottom: 10px;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--primary-color);
            border-radius: 2px;
        }

        /* 整合包介绍 */
        .modpack-info {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 2.5rem;
            margin-bottom: 3rem;
            border-left: 6px solid var(--primary-color);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .modpack-info h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--accent-color);
        }

        .modpack-info p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
            color: #ddd;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 2rem;
        }

        .feature {
            background-color: rgba(0, 0, 0, 0.2);
            padding: 1.5rem;
            border-radius: 10px;
            border-top: 3px solid var(--accent-color);
        }

        .feature i {
            font-size: 2rem;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }

        .feature h4 {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            color: #fff;
        }

        /* 服务器卡片 */
        .servers {
              display: grid;
              grid-template-columns: repeat(3, 1fr);
             gap: 25px;
             margin: 0 auto; /* 居中 */
        }

        .server-card {
            background-color: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid var(--border-color);
        }

        .server-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
            border-color: var(--accent-color);
        }

        .server-header {
            padding: 0.8rem 1rem;
            background-color: var(--card-bg);
            color: white;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .server-header i {
            font-size: 1.8rem;
        }

        .server-header h3 {
            font-size: 1.5rem;
        }

        .server-body {
            padding: 1.5rem;
        }

        .server-body p {
            color: #ccc;
            margin-bottom: 1.5rem;
        }

        .server-link {
    display: inline-block;
    width: 100%;
    text-align: center;
    background-color: var(--primary-color); 
    color: white; 
    padding: 12px; 
    text-decoration: none;
    border-radius: 8px; 
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s; 
    border: 2px solid var(--primary-color); 
}

.server-link:hover {
    background-color: transparent; 
    color: var(--secondary-color); 
     border-color: var(--secondary-color);
  
}
/* 服务器图片容器 */
.server-image-container {
    text-align: center;
    padding: 15px;
    background: var(--card-bg);
    border-radius: 8px;

    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.server-image-container img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* 加载状态 */
.image-loading {
    color: var(--accent-color);
    font-size: 1rem;
}

.image-loading i {
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

        /* 下载区域 */
.downloads {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    align-items: stretch; /* 确保所有项目高度一致 */
}

    .download-card {
        background-color: var(--card-bg);
        border-radius: 15px;
        padding: 2rem;
        text-align: center;
        border: 2px solid var(--border-color);
        transition: border-color 0.3s;
        display: flex;
        flex-direction: column;
        height: 100%; /* 确保所有卡片高度一致 */
    }

    .download-card p:last-of-type {
        margin-bottom: 1.5rem;
    }

    .download-btn {
        display: inline-block;
        background-color: var(--primary-color);
        color: white;
        padding: 12px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s;
        border: 2px solid var(--primary-color);
        margin-top: auto; /* 将按钮推到卡片底部 */
    }

       

        .download-card:hover {
            border-color: var(--accent-color);
        }

        .download-icon {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 1.5rem;
        }

        .download-card h3 {
            font-size: 1.6rem;
            margin-bottom: 1rem;
            color: #fff;
        }

        .download-card p {
            color: #ccc;
            margin-bottom: 1.5rem;
        }

        .download-btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 12px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            border: 2px solid var(--primary-color);
            text-align: center; /* 确保按钮内容居中 */
            width: 100%; /* 设置统一宽度 */
            box-sizing: border-box; /* 包括内边距在宽度内 */
        }

        .download-btn:hover {
            background-color: transparent;
            color: var(--accent-color);
            border-color: var(--accent-color);
        }

        /* 页脚 */
        
        footer {
            background-color: var(--darker-bg);
            padding: 3rem 0 2rem;
            margin-top: 4rem;
            border-top: 3px solid var(--primary-color);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 2rem;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
        }

        .footer-section h3 {
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            color: var(--accent-color);
        }

        .footer-section p {
            color: #aaa;
            margin-bottom: 1.5rem;
        }

        .footer-link {
            color: #aaa;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s, transform 0.3s;
            padding: 5px 0;
        }

        .footer-link:hover {
            color: var(--accent-color);
            transform: translateX(5px);
        }

        .footer-icon {
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 1rem;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #333;
            color: white;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333;
            color: #777;
            font-size: 0.9rem;
        }
       
        
            .gradient-text {
            background: linear-gradient(90deg, var(--accent-color), #fb7299);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-size: 1.0rem;
            font-weight: 500;
          
            }
            .gradient-container {
             margin-top: -1rem; /* 抵消h3的margin-bottom */
             margin-bottom: 1rem;
             padding: 10px 0;
             }   

        /* 更新日志区域样式 */
#changelog {
    margin-bottom: 60px;
}

.changelog-container {
    background: linear-gradient(135deg, rgba(30, 30, 40, 0.8), rgba(20, 20, 30, 0.9));
    border-radius: 15px;
    border: 1px solid rgba(255, 165, 0, 0.2);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
     max-width: 1200px; /* 与容器相同宽度 */
    margin: 0 auto; /* 水平居中 */
}

.changelog-version {
     border-bottom: 1px solid rgba(255, 165, 0, 0.1);
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid transparent; /* 添加边框用于悬停效果 */
    border-radius: 8px; /* 可选：添加圆角 */
    margin: 5px; /* 添加一点外边距让悬停效果更明显 */
}

.changelog-version:last-child {
    border-bottom: none;
}



.version-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    cursor: pointer;
}

.version-header h3 {
    margin: 0;
    color: var(--accent-color);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.version-header h3 i {
    color: #ffd700;
}

.version-date {
    background: rgba(255, 165, 0, 0.1);
    color: var(--accent-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.version-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.changelog-version.active .version-content {
    max-height: 1000px;
}

.version-content h4 {
    color: #fff;
    margin: 20px 0 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.version-content h4 i {
    color: var(--accent-color);
}

.version-content ul {
    list-style: none;
    padding-left: 20px;
    margin: 0;
}

.version-content li {
    color: #ccc;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.version-content li:before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.changelog-more {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
}

.view-more-btn {
   display: inline-block;
    background-color: var(--primary-color); /* 紫色背景 */
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 2px solid var(--primary-color); /* 紫色边框 */
    cursor: pointer;
    font-family: inherit;
    text-align: center;
    box-sizing: border-box;
    text-decoration: none;
}

.view-more-btn:hover {
     background-color: transparent;    /* 透明背景 */
    color: var(--accent-color);       /* 金色文字 */
    border-color: var(--accent-color); /* 金色边框 */
    transform: translateY(-3px);      /* 上浮效果 */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* 阴影 */
}
/* 更新日志版本悬停效果 */
.changelog-version:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(237, 188, 93, 0.2);
    border-color: rgba(237, 188, 93, 0.3);
}

/* 最新版本的特殊悬停效果 */
.changelog-version.active:hover {
    background: rgba(237, 188, 93, 0.1);
    box-shadow: 0 10px 25px rgba(237, 188, 93, 0.25);
}

/* 版本标题悬停效果 */
.version-header:hover h3 {
    color: var(--secondary-color);
}

.version-header:hover .version-date {
    background: rgba(237, 188, 93, 0.2);
    color: var(--secondary-color);
}



/* 响应式设计 */
@media (max-width: 768px) {
    .version-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .version-date {
        align-self: flex-start;
    }
    
    .changelog-version {
        padding: 20px 15px;
    }
}
        
/* ===== 移动端导航栏设计 ===== */
/* 当屏幕宽度 ≤ 768px 时应用的样式 */
@media (max-width: 768px) {
    /* 头部布局调整为垂直 */
    .header-content {
        flex-direction: column;
        gap: 15px;
        padding: 10px 0;
        position: relative;
    }
    
    .container-1 {
        padding: 0 15px !important; /* 在移动端使用较小的间距 */
    }
    /* 移动端导航栏放在logo下面 */
    .main-nav-menu {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 0;
        list-style: none;
        padding: 0;
        margin-top: 10px;
        background: var(--card-bg);
        border-radius: 8px;
        border: 1px solid var(--border-color);
        overflow: hidden;
    }
      
    /* 导航项样式 */
    .main-nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    }
    
    .main-nav-menu li:last-child {
        border-bottom: none;
    }
    
    /* 导航链接 */
    .main-nav-menu a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 20px;
        width: 100%;
        color: #ddd;
        text-decoration: none;
        font-size: 0.95rem;
    }
    
    .main-nav-menu a:hover,
    .main-nav-menu a.active {
        background: rgba(0, 0, 0, 0.5);
        color: var(--accent-color);
    }
    
    /* 下拉菜单箭头调整 */
    .dropdown > a .fa-chevron-down {
        margin-left: auto;
        font-size: 0.8rem;
      
    }
    
    
    /* 移动端下拉菜单 */
    .dropdown-menu {
        position: static !important;    /* 关键：取消绝对定位 */
        opacity: 1 !important;          /* 关键：取消透明 */
        visibility: visible !important; /* 关键：取消隐藏 */
        transform: none !important;     /* 关键：取消所有变换 */
        box-shadow: none !important;    /* 关键：取消阴影 */
        left: auto !important;          /* 关键：取消左边定位 */
        top: auto !important;           /* 关键：取消顶部定位 */
        width: 100% !important;         /* 宽度100% */
        min-width: auto !important;     /* 取消最小宽度 */
        border-radius: 0 !important;    /* 取消圆角 */
        border: none !important;        /* 或改为适当边框 */
         max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.4s ease-out !important;
    }
    
    /* 显示下拉菜单时 */
    .dropdown.active .dropdown-menu {
         display: block !important;  
         max-height: 300px !important;
    }
    
    /* 下拉菜单项 */
    .dropdown-menu li {
        
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .dropdown-menu a {
        padding-left: 30px !important;
        font-size: 0.8rem !important;
        color: #bbb;
        padding-top: 12px !important;
        padding-bottom: 8px !important;
    }
    
    /* 快速链接按钮适配 */
    .back-to-home,
    .server-link,
    .download-btn,
    .cta-button {
        width: auto;
        min-width: 120px;
        max-width: 200px;
        margin: 0 auto;
        display: inline-block;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* 英雄区域调整 */
    .hero {
        padding: 2rem 0;
        min-height: 350px;
    }
    
    .hero h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    .hero p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 1.7rem;
        margin-bottom: 1.5rem;
    }
    .changelog-container {
        margin: 0 15px; /* 在移动端添加边距 */
    }
     .servers {
        display: flex; /* 改为flex布局 */
        flex-direction: column;
        align-items: center; /* 水平居中 */
        justify-content: center;
        gap: 12px;
        width: 100%;
        padding: 0 15px; /* 添加左右内边距 */
        box-sizing: border-box;
    }
    
    .server-card {
        width: 100%;
        max-width: 400px; /* 限制最大宽度 */
        margin: 0 auto; /* 水平居中 */
        text-align: center;
    }
}

@media (max-width: 1200px) {
    .changelog-container {
        margin: 0 20px; /* 在大屏幕但小于1200px时添加边距 */
    }
}

/* 更小屏幕的响应式调整 */
@media (max-width: 576px) {
    .header-content {
        gap: 10px;
    }
    
    .main-nav-menu {
        margin-top: 8px;
        border-radius: 6px;
    }
    
    .main-nav-menu a {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .dropdown-menu a {
        padding-left: 32px;
        font-size: 0.85rem;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    
    /* 按钮进一步缩小 */
    .back-to-home,
    .server-link,
    .download-btn,
    .cta-button {
        padding: 10px 16px;
        font-size: 0.9rem;
        min-width: 100px;
        max-width: 180px;
    }
    
    .hero {
        padding: 1.5rem 0;
        min-height: 300px;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 0.9rem;
        padding: 0 5px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    .servers {
        gap: 10px;
        padding: 0 5px;
    }
    
    .server-card {
        border-radius: 8px;
    }
    
    /* 卡片头部 - 紧凑布局 */
    .server-header {
        padding: 0.6rem 0.8rem;
        flex-wrap: wrap; /* 允许换行 */
        justify-content: center; /* 居中 */
        text-align: center;
    }
    
    .server-image-container {
        margin: 5px 0.8rem;
        min-height: 100px;
        padding: 8px;
    }
    
    .server-image-container img {
        max-height: 90px;
    }
    
    .server-body {
        padding: 0.6rem 0.8rem;
    }
}



        .team-members .team-member .member-role {
            color: var(--accent-color); /* 角色名称使用强调色 */
            font-weight: bold;
        }

        .team-members .team-member .member-name {
            color: var(--light-text); /* 名字使用浅色文本 */
            font-style: italic;
        }