/* style.css - 我本飞扬服务器完整样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Microsoft YaHei', sans-serif;
}

body {
    background: 
        linear-gradient(rgba(10, 15, 35, 0.85), rgba(5, 10, 25, 0.9)),
        url('https://images.unsplash.com/photo-1511512578047-dfb367046420?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2071&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #e6e6e6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

/* 添加暗色覆盖层增强文字可读性 */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(76, 201, 240, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(67, 97, 238, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(240, 165, 0, 0.03) 0%, transparent 50%),
        linear-gradient(rgba(5, 10, 25, 0.7), rgba(5, 10, 25, 0.8));
    z-index: -1;
}

.container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    padding: 50px 40px 35px 40px; /* 底部内边距减少为35px */
    background-color: rgba(10, 15, 35, 0.75);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s ease;
}

/* 容器装饰边框效果 */
.container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4cc9f0, #4361ee, #f0a500);
    z-index: 2;
}

.game-title {
    font-family: 'Arial Black', sans-serif;
    font-size: 3.2rem;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 0 15px rgba(76, 201, 240, 0.7), 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
}

.game-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 25%;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #f0a500, transparent);
}

.game-subtitle {
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #ffd166;
    font-style: italic;
    text-shadow: 0 0 10px rgba(240, 165, 0, 0.5), 1px 1px 3px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}

.server-title {
    font-size: 2.5rem;
    margin: 30px 0 15px;
    background: linear-gradient(90deg, #4cc9f0, #4361ee);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(76, 201, 240, 0.3);
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #e0e0ff;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.status-text {
    font-size: 1.8rem;
    margin: 40px 0;
    color: #f8f8f8;
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    display: inline-block;
    border-left: 4px solid #4361ee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.status-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* 版本介绍模块 */
.version-section {
    margin: 60px 0;
    padding: 40px 30px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(76, 201, 240, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #4cc9f0;
    text-shadow: 0 0 10px rgba(76, 201, 240, 0.5), 1px 1px 3px rgba(0, 0, 0, 0.7);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4cc9f0, transparent);
}

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

.version-card {
    background: rgba(20, 25, 45, 0.8);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid rgba(76, 201, 240, 0.2);
    transition: all 0.3s ease;
    text-align: left;
}

.version-card:hover {
    transform: translateY(-5px);
    border-color: rgba(76, 201, 240, 0.5);
    box-shadow: 0 10px 25px rgba(76, 201, 240, 0.2);
}

.version-name {
    font-size: 1.6rem;
    color: #4cc9f0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(76, 201, 240, 0.3);
}

.version-details {
    color: #d0d0ff;
    line-height: 1.6;
}

.version-details ul {
    padding-left: 20px;
    margin: 15px 0;
}

.version-details li {
    margin-bottom: 8px;
    position: relative;
}

.version-details li:before {
    content: "•";
    color: #4cc9f0;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* 客户端下载模块 */
.download-section {
    margin: 60px 0;
    padding: 40px 30px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 102, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.download-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #ffd166;
    text-shadow: 0 0 10px rgba(255, 215, 102, 0.5), 1px 1px 3px rgba(0, 0, 0, 0.7);
    position: relative;
    display: inline-block;
}

.download-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd166, transparent);
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.download-card {
    background: rgba(20, 25, 45, 0.8);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid rgba(255, 215, 102, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.download-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 102, 0.5);
    box-shadow: 0 10px 25px rgba(255, 215, 102, 0.2);
}

.download-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffd166;
}

.download-name {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
    text-align: center;
}

.download-size {
    color: #b8b8d0;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.download-btn {
    background: linear-gradient(45deg, #ffd166, #f0a500);
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: auto;
    box-shadow: 0 5px 15px rgba(255, 215, 102, 0.3);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 102, 0.5);
    background: linear-gradient(45deg, #ffd700, #ffa500);
}

.download-note {
    color: #b8b8d0;
    font-size: 0.9rem;
    margin-top: 25px;
    font-style: italic;
}

/* 装备展示模块 */
.equipment-section {
    margin: 60px 0;
    padding: 40px 30px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(155, 89, 182, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.equipment-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #9b59b6;
    text-shadow: 0 0 10px rgba(155, 89, 182, 0.5), 1px 1px 3px rgba(0, 0, 0, 0.7);
    position: relative;
    display: inline-block;
}

.equipment-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #9b59b6, transparent);
}

.equipment-subtitle {
    font-size: 1.2rem;
    color: #d0d0ff;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.equipment-slider-container {
    position: relative;
    margin: 30px 0;
    overflow: hidden;
}

.equipment-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
    padding: 10px 0;
}

.equipment-item {
    flex: 0 0 calc(25% - 15px);
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
    border: 3px solid rgba(255, 255, 255, 0.1);
    background: rgba(20, 25, 45, 0.9);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.equipment-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(155, 89, 182, 0.4);
    border-color: rgba(155, 89, 182, 0.5);
}

.equipment-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: all 0.4s ease;
}

.equipment-item:hover .equipment-img {
    transform: scale(1.1);
}

/* 翻页按钮 */
.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 30px;
}

.slider-btn {
    background: rgba(20, 25, 45, 0.9);
    border: 2px solid rgba(155, 89, 182, 0.4);
    color: #9b59b6;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.slider-btn:hover {
    background: rgba(155, 89, 182, 0.3);
    transform: scale(1.1);
    border-color: rgba(155, 89, 182, 0.8);
    box-shadow: 0 8px 20px rgba(155, 89, 182, 0.4);
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.slider-dots {
    display: flex;
    gap: 12px;
}

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

.slider-dot.active {
    background: #9b59b6;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(155, 89, 182, 0.8);
}

.slider-dot:hover {
    background: rgba(155, 89, 182, 0.7);
}

.page-indicator {
    color: #d0d0ff;
    font-size: 1.1rem;
    min-width: 100px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* 图片点击放大模态框样式 */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    backdrop-filter: blur(5px);
}

.image-modal.active {
    display: block;
}

.image-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    transition: opacity 0.3s ease;
}

.image-modal-content {
    position: absolute;
    background: rgba(20, 25, 45, 0.98);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9);
    border: 3px solid rgba(76, 201, 240, 0.4);
    transform-origin: center;
    transition: all 0.3s ease-out;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    max-width: 90vw;
    max-height: 90vh;
    overflow: auto;
}

.image-modal-img {
    display: block;
    max-width: 100%;
    max-height: calc(100% - 50px);
    object-fit: contain;
    padding: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
}

.image-modal-title {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 15px;
    text-align: center;
    font-size: 1.2rem;
    border-radius: 5px;
    margin-top: 10px;
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
}

.image-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    transition: all 0.3s ease;
}

.image-modal-close:hover {
    background: rgba(255, 0, 0, 0.8);
    transform: scale(1.1);
}

/* 装备详情模态框样式 */
.equipment-modal-content {
    position: absolute;
    background: rgba(20, 25, 45, 0.98);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9);
    border: 3px solid rgba(155, 89, 182, 0.4);
    transform-origin: center;
    transition: all 0.3s ease-out;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    max-width: 90vw;
    max-height: 90vh;
    overflow: auto;
}

.equipment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    backdrop-filter: blur(5px);
}

.equipment-modal.active {
    display: block;
}

.equipment-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    transition: opacity 0.3s ease;
}

.modal-equipment-img {
    max-width: 100%;
    max-height: calc(100% - 60px);
    object-fit: contain;
    border-radius: 10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
}

.modal-equipment-name {
    font-size: 1.8rem;
    color: #9b59b6;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(155, 89, 182, 0.5), 1px 1px 3px rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 15px;
    border-radius: 5px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    flex-shrink: 0;
}

.close-equipment-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-equipment-modal:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.images-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 80px;
    margin: 50px 0;
}

.image-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.image-item:hover {
    transform: translateY(-15px);
}

.image-item img {
    width: 260px;
    height: 260px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
    border: 4px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    transition: all 0.4s ease;
}

.image-item img:hover {
    border-color: #4361ee;
    box-shadow: 0 15px 35px rgba(67, 97, 238, 0.7);
    transform: scale(1.05);
}

.image-label {
    margin-top: 25px;
    font-size: 1.4rem;
    color: #e0e0ff;
    font-weight: 600;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    min-width: 200px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.image-label i {
    font-size: 0.9rem;
    color: #b8b8d0;
    margin-left: 8px;
}

.seo-text {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    padding: 25px;
    margin: 40px auto;
    max-width: 900px;
    text-align: left;
    border-left: 4px solid #f0a500;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #d0d0e0;
    opacity: 0.9;
}

.seo-text p {
    margin-bottom: 12px;
}

.countdown {
    margin-top: 40px;
    padding: 25px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 18px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
}

.countdown-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #e0e0ff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 85px;
}

.countdown-value {
    font-size: 2.8rem;
    font-weight: bold;
    color: #4cc9f0;
    text-shadow: 0 0 15px rgba(76, 201, 240, 0.7), 1px 1px 3px rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    padding: 10px;
    min-width: 80px;
    border: 2px solid rgba(76, 201, 240, 0.4);
}

.countdown-label {
    font-size: 1rem;
    color: #d0d0d0;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== 脚部样式 - 优化版 ==================== */
.footer {
    margin-top: 20px; /* 减少顶部边距 */
    margin-bottom: 5px; /* 增加一点底部外边距 */
    font-size: 0.9rem;
    color: #b8b8d8;
    text-align: center;
    padding-top: 10px; /* 减少顶部内边距 */
    padding-bottom: 5px; /* 减少底部内边距 */
    border-top: 1px solid rgba(255, 255, 255, 0.15); /* 更细的边框 */
    width: 100%;
    max-width: 800px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.1; /* 更紧凑的行高 */
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
}

.footer-line {
    margin: 2px 0; /* 进一步减小行间距 */
    width: 100%;
    text-align: center;
    line-height: 1.1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 10px;
}

.website-link {
    color: #4cc9f0;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px dotted #4cc9f0;
    transition: all 0.3s;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    display: inline-block;
    margin: 0 5px;
}

.website-link:hover {
    color: #ffd166;
    border-bottom-color: #ffd166;
}

/* 访问统计组件（可选） */
.visitor-counter {
    margin: 8px 0 12px 0; /* 上下边距：8 0 12 0 */
    padding: 0;
    background: rgba(10, 15, 35, 0.8);
    border-radius: 12px; /* 更小的圆角 */
    border: 1px solid rgba(76, 201, 240, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); /* 更柔和的阴影 */
    overflow: hidden;
    max-width: 450px; /* 稍小的最大宽度 */
    width: 100%;
    transition: all 0.3s ease;
}

.visitor-counter:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(76, 201, 240, 0.2);
    border-color: rgba(76, 201, 240, 0.5);
}

.counter-title {
    background: linear-gradient(90deg, #4cc9f0, #4361ee);
    color: white;
    padding: 8px 15px; /* 减少内边距 */
    text-align: center;
    font-size: 1rem; /* 稍小的字体 */
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.counter-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px; /* 减小间距 */
    padding: 15px; /* 减少内边距 */
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 10px; /* 减少内边距 */
    background: rgba(20, 25, 45, 0.6);
    border-radius: 8px; /* 更小的圆角 */
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(76, 201, 240, 0.1);
    border-color: rgba(76, 201, 240, 0.3);
    transform: scale(1.05);
}

.stat-label {
    font-size: 0.8rem; /* 更小的字体 */
    color: #b8b8d0;
    margin-bottom: 3px; /* 减小间距 */
}

.stat-value {
    font-size: 1.2rem; /* 稍小的字体 */
    font-weight: bold;
    color: #4cc9f0;
    text-shadow: 0 0 8px rgba(76, 201, 240, 0.5);
}

.counter-footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.counter-footer small {
    font-size: 0.75rem;
    color: #8888b0;
}

/* ==================== 响应式设计 ==================== */
@media (max-width: 1200px) {
    .equipment-item {
        flex: 0 0 calc(33.333% - 15px);
    }
    
    .version-info, .download-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .footer {
        max-width: 700px;
    }
}

@media (max-width: 992px) {
    .images-container {
        gap: 60px;
    }
    
    .image-item img {
        width: 230px;
        height: 230px;
    }
    
    .equipment-item {
        flex: 0 0 calc(50% - 15px);
    }
    
    .container {
        padding: 40px 30px 25px 30px; /* 减少移动端的容器内边距 */
    }
    
    .footer {
        margin-top: 15px;
        max-width: 600px;
        padding: 8px 15px 4px 15px;
    }
    
    .footer-line {
        font-size: 0.85rem;
        margin: 1px 0;
    }
    
    .visitor-counter {
        margin: 6px 0 10px 0;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 35px 25px 20px 25px; /* 进一步减少内边距 */
    }
    
    .game-title {
        font-size: 2.5rem;
    }
    
    .game-subtitle {
        font-size: 1.5rem;
    }
    
    .server-title {
        font-size: 2rem;
    }
    
    .images-container {
        gap: 50px;
    }
    
    .image-item img {
        width: 210px;
        height: 210px;
    }
    
    .countdown-timer {
        gap: 15px;
    }
    
    .countdown-value {
        font-size: 2.2rem;
        min-width: 70px;
    }
    
    .equipment-section, .download-section, .version-section {
        padding: 30px 20px;
    }
    
    .section-title, .download-title, .equipment-title {
        font-size: 1.8rem;
    }
    
    .equipment-item {
        flex: 0 0 calc(100% - 10px);
    }
    
    .slider-nav {
        gap: 20px;
    }
    
    .version-info, .download-grid {
        grid-template-columns: 1fr;
    }
    
    .footer {
        margin-top: 12px;
        max-width: 500px;
        padding-top: 8px;
        padding-bottom: 3px;
    }
    
    .footer-line {
        font-size: 0.8rem;
        margin: 1px 0;
        line-height: 1.05;
    }
    
    .website-link {
        font-size: 0.8rem;
    }
    
    .visitor-counter {
        margin: 5px 0 8px 0;
        max-width: 350px;
    }
    
    .counter-title {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .counter-stats {
        padding: 12px;
        gap: 8px;
    }
    
    .stat-item {
        padding: 6px 8px;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .stat-value {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .images-container {
        flex-direction: column;
        gap: 60px;
    }
    
    .image-item img {
        width: 240px;
        height: 240px;
    }
    
    .game-title {
        font-size: 2rem;
    }
    
    .game-subtitle {
        font-size: 1.3rem;
    }
    
    .server-title {
        font-size: 1.8rem;
    }
    
    .countdown-timer {
        gap: 10px;
    }
    
    .countdown-value {
        font-size: 1.8rem;
        min-width: 60px;
    }
    
    .modal-content, .equipment-modal-content {
        width: 95%;
        padding: 20px;
    }
    
    .modal-img, .modal-equipment-img {
        max-width: 250px;
    }
    
    .modal-title, .modal-equipment-name {
        font-size: 1.5rem;
    }
    
    .equipment-item {
        min-height: 180px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .page-indicator {
        font-size: 0.9rem;
        min-width: 80px;
    }
    
    .container {
        padding: 30px 20px 15px 20px; /* 移动端最小内边距 */
    }
    
    /* 脚部在移动端的调整 */
    .footer {
        max-width: 100%;
        padding: 6px 10px 2px 10px;
        margin-top: 10px;
        border-top-width: 0.5px;
    }
    
    .footer p, .footer-line {
        font-size: 0.75rem;
        line-height: 1;
        margin: 0.5px 0;
        padding: 0 5px;
    }
    
    .website-link {
        font-size: 0.75rem;
        margin: 0 3px;
    }
    
    /* 移动端隐藏访问统计或调整布局 */
    .visitor-counter {
        margin: 4px 0 6px 0;
        max-width: 300px;
    }
    
    .counter-stats {
        grid-template-columns: 1fr; /* 单列布局 */
        padding: 10px;
        gap: 6px;
    }
    
    .stat-item {
        padding: 5px;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .stat-label {
        font-size: 0.7rem;
        margin-bottom: 0;
    }
    
    .stat-value {
        font-size: 1rem;
    }
    
    /* 移动端背景图片调整 */
    body {
        background-attachment: scroll;
    }
}

@media (max-width: 400px) {
    .footer p, .footer-line {
        font-size: 0.7rem; /* 进一步减小字体大小 */
    }
    
    .website-link {
        font-size: 0.7rem;
    }
    
    .container {
        padding: 25px 15px 10px 15px; /* 超小屏幕的最小内边距 */
    }
    
    .game-title {
        font-size: 1.8rem;
    }
    
    .game-subtitle {
        font-size: 1.1rem;
    }
}