.server-list {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e2a3a, #2c3e50);
    position: relative;
    overflow: hidden;
}

/* 添加星空背景效果 */
.server-list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 20px 30px, #00ccff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(0, 200, 255, 0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #00ffcc, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(100, 255, 200, 0.6), transparent),
        radial-gradient(2px 2px at 100px 120px, rgba(0, 150, 255, 0.7), transparent);
    background-size: 200px 150px, 250px 200px, 180px 150px, 220px 180px, 250px 250px;
    animation: sparkle 5s linear infinite;
    z-index: -1;
}

/* 添加动态光线效果 */
.server-list::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        linear-gradient(45deg, transparent 40%, rgba(0, 150, 255, 0.1) 45%, rgba(0, 150, 255, 0.1) 55%, transparent 60%),
        linear-gradient(135deg, transparent 40%, rgba(0, 200, 255, 0.1) 45%, rgba(0, 200, 255, 0.1) 55%, transparent 60%);
    animation: beamMove 10s linear infinite;
    z-index: -1;
}

@keyframes sparkle {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-150px);
    }
}

@keyframes beamMove {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes shine {
    0% {
        transform: rotate(0deg) translate(0, 0);
    }
    25% {
        transform: rotate(90deg) translate(-50px, -50px);
    }
    50% {
        transform: rotate(180deg) translate(0, 0);
    }
    75% {
        transform: rotate(270deg) translate(50px, 50px);
    }
    100% {
        transform: rotate(360deg) translate(0, 0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-30px, 30px);
    }
    50% {
        transform: translate(30px, -30px);
    }
    75% {
        transform: translate(-30px, -30px);
    }
}

@keyframes particles {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(20px);
        opacity: 0;
    }
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px) translateX(-20px);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

@keyframes wave {
    0% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(-25%) translateY(-20px);
    }
    100% {
        transform: translateX(-50%) translateY(0);
    }
}

/* 新增颜色变化动画 */
@keyframes colorShift {
    0% {
        background: 
            radial-gradient(circle at 20% 30%, rgba(0, 100, 200, 0.3) 0%, transparent 20%),
            radial-gradient(circle at 80% 70%, rgba(0, 150, 255, 0.3) 0%, transparent 20%),
            radial-gradient(circle at 40% 80%, rgba(0, 200, 255, 0.3) 0%, transparent 20%),
            radial-gradient(circle at 60% 20%, rgba(0, 120, 220, 0.3) 0%, transparent 20%),
            radial-gradient(circle at 30% 50%, rgba(30, 130, 230, 0.3) 0%, transparent 20%),
            radial-gradient(circle at 70% 40%, rgba(0, 140, 240, 0.3) 0%, transparent 20%);
    }
    16.66% {
        background: 
            radial-gradient(circle at 20% 30%, rgba(0, 120, 220, 0.3) 0%, transparent 20%),
            radial-gradient(circle at 80% 70%, rgba(0, 200, 255, 0.3) 0%, transparent 20%),
            radial-gradient(circle at 40% 80%, rgba(0, 150, 255, 0.3) 0%, transparent 20%),
            radial-gradient(circle at 60% 20%, rgba(30, 130, 230, 0.3) 0%, transparent 20%),
            radial-gradient(circle at 30% 50%, rgba(0, 100, 200, 0.3) 0%, transparent 20%),
            radial-gradient(circle at 70% 40%, rgba(0, 180, 250, 0.3) 0%, transparent 20%);
    }
    33.33% {
        background: 
            radial-gradient(circle at 20% 30%, rgba(30, 130, 230, 0.3) 0%, transparent 20%),
            radial-gradient(circle at 80% 70%, rgba(0, 120, 220, 0.3) 0%, transparent 20%),
            radial-gradient(circle at 40% 80%, rgba(0, 100, 200, 0.3) 0%, transparent 20%),
            radial-gradient(circle at 60% 20%, rgba(0, 150, 255, 0.3) 0%, transparent 20%),
            radial-gradient(circle at 30% 50%, rgba(0, 180, 250, 0.3) 0%, transparent 20%),
            radial-gradient(circle at 70% 40%, rgba(30, 130, 230, 0.3) 0%, transparent 20%);
    }
    50% {
        background: 
            radial-gradient(circle at 20% 30%, rgba(0, 150, 255, 0.3) 0%, transparent 20%),
            radial-gradient(circle at 80% 70%, rgba(30, 130, 230, 0.3) 0%, transparent 20%),
            radial-gradient(circle at 40% 80%, rgba(0, 120, 220, 0.3) 0%, transparent 20%),
            radial-gradient(circle at 60% 20%, rgba(0, 100, 200, 0.3) 0%, transparent 20%),
            radial-gradient(circle at 30% 50%, rgba(0, 200, 255, 0.3) 0%, transparent 20%),
            radial-gradient(circle at 70% 40%, rgba(0, 120, 220, 0.3) 0%, transparent 20%);
    }
    66.66% {
        background: 
            radial-gradient(circle at 20% 30%, rgba(0, 200, 255, 0.3) 0%, transparent 20%),
            radial-gradient(circle at 80% 70%, rgba(0, 150, 255, 0.3) 0%, transparent 20%),
            radial-gradient(circle at 40% 80%, rgba(30, 130, 230, 0.3) 0%, transparent 20%),
            radial-gradient(circle at 60% 20%, rgba(0, 180, 250, 0.3) 0%, transparent 20%),
            radial-gradient(circle at 30% 50%, rgba(0, 120, 220, 0.3) 0%, transparent 20%),
            radial-gradient(circle at 70% 40%, rgba(0, 100, 200, 0.3) 0%, transparent 20%);
    }
    83.33% {
        background: 
            radial-gradient(circle at 20% 30%, rgba(0, 180, 250, 0.3) 0%, transparent 20%),
            radial-gradient(circle at 80% 70%, rgba(0, 100, 200, 0.3) 0%, transparent 20%),
            radial-gradient(circle at 40% 80%, rgba(0, 150, 255, 0.3) 0%, transparent 20%),
            radial-gradient(circle at 60% 20%, rgba(30, 130, 230, 0.3) 0%, transparent 20%),
            radial-gradient(circle at 30% 50%, rgba(0, 120, 220, 0.3) 0%, transparent 20%),
            radial-gradient(circle at 70% 40%, rgba(0, 200, 255, 0.3) 0%, transparent 20%);
    }
    100% {
        background: 
            radial-gradient(circle at 20% 30%, rgba(0, 100, 200, 0.3) 0%, transparent 20%),
            radial-gradient(circle at 80% 70%, rgba(0, 150, 255, 0.3) 0%, transparent 20%),
            radial-gradient(circle at 40% 80%, rgba(0, 200, 255, 0.3) 0%, transparent 20%),
            radial-gradient(circle at 60% 20%, rgba(0, 120, 220, 0.3) 0%, transparent 20%),
            radial-gradient(circle at 30% 50%, rgba(30, 130, 230, 0.3) 0%, transparent 20%),
            radial-gradient(circle at 70% 40%, rgba(0, 140, 240, 0.3) 0%, transparent 20%);
    }
}

/* 添加新的动态元素 */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

@keyframes meteor {
    0% {
        transform: translateX(-100px) translateY(-100px) rotate(45deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(100px) translateY(100px) rotate(45deg);
        opacity: 0;
    }
}

.server-list-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

/* 添加粒子效果容器 */
.server-list .particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

/* 粒子效果元素 */
.server-list .particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: particles 6s infinite ease-in;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.server-list .particle:nth-child(1) {
    width: 5px;
    height: 5px;
    top: 80%;
    left: 10%;
    animation-delay: 0s;
    background: rgba(0, 150, 255, 0.7);
    box-shadow: 0 0 10px rgba(0, 150, 255, 0.5);
}

.server-list .particle:nth-child(2) {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 20%;
    animation-delay: 1s;
    background: rgba(0, 200, 255, 0.7);
    box-shadow: 0 0 10px rgba(0, 200, 255, 0.5);
}

.server-list .particle:nth-child(3) {
    width: 6px;
    height: 6px;
    top: 40%;
    left: 70%;
    animation-delay: 2s;
    background: rgba(0, 255, 200, 0.7);
    box-shadow: 0 0 10px rgba(0, 255, 200, 0.5);
}

.server-list .particle:nth-child(4) {
    width: 4px;
    height: 4px;
    top: 60%;
    left: 80%;
    animation-delay: 3s;
    background: rgba(0, 255, 150, 0.7);
    box-shadow: 0 0 10px rgba(0, 255, 150, 0.5);
}

.server-list .particle:nth-child(5) {
    width: 7px;
    height: 7px;
    top: 30%;
    left: 50%;
    animation-delay: 4s;
    background: rgba(30, 130, 230, 0.7);
    box-shadow: 0 0 10px rgba(30, 130, 230, 0.5);
}

.server-list .particle:nth-child(6) {
    width: 5px;
    height: 5px;
    top: 70%;
    left: 30%;
    animation-delay: 5s;
    background: rgba(0, 140, 240, 0.7);
    box-shadow: 0 0 10px rgba(0, 140, 240, 0.5);
}

.server-list .particle:nth-child(7) {
    width: 6px;
    height: 6px;
    top: 15%;
    left: 85%;
    animation-delay: 0.5s;
    background: rgba(0, 100, 200, 0.7);
    box-shadow: 0 0 10px rgba(0, 100, 200, 0.5);
}

.server-list .particle:nth-child(8) {
    width: 9px;
    height: 9px;
    top: 85%;
    left: 15%;
    animation-delay: 1.5s;
    background: rgba(0, 255, 150, 0.7);
    box-shadow: 0 0 10px rgba(0, 255, 150, 0.5);
}

.server-list .particle:nth-child(9) {
    width: 4px;
    height: 4px;
    top: 50%;
    left: 25%;
    animation-delay: 2.5s;
    background: rgba(0, 200, 255, 0.7);
    box-shadow: 0 0 10px rgba(0, 200, 255, 0.5);
}

.server-list .particle:nth-child(10) {
    width: 7px;
    height: 7px;
    top: 25%;
    left: 65%;
    animation-delay: 3.5s;
    background: rgba(0, 150, 255, 0.7);
    box-shadow: 0 0 10px rgba(0, 150, 255, 0.5);
}

.server-list .particle:nth-child(11) {
    width: 5px;
    height: 5px;
    top: 75%;
    left: 45%;
    animation-delay: 4.5s;
    background: rgba(0, 120, 220, 0.7);
    box-shadow: 0 0 10px rgba(0, 120, 220, 0.5);
}

.server-list .particle:nth-child(12) {
    width: 8px;
    height: 8px;
    top: 35%;
    left: 90%;
    animation-delay: 5.5s;
    background: rgba(30, 130, 230, 0.7);
    box-shadow: 0 0 10px rgba(30, 130, 230, 0.5);
}

.server-list .particle:nth-child(13) {
    width: 6px;
    height: 6px;
    top: 65%;
    left: 5%;
    animation-delay: 0.8s;
    background: rgba(0, 200, 255, 0.7);
    box-shadow: 0 0 10px rgba(0, 200, 255, 0.5);
}

.server-list .particle:nth-child(14) {
    width: 5px;
    height: 5px;
    top: 10%;
    left: 40%;
    animation-delay: 1.8s;
    background: rgba(0, 255, 200, 0.7);
    box-shadow: 0 0 10px rgba(0, 255, 200, 0.5);
}

.server-list .particle:nth-child(15) {
    width: 7px;
    height: 7px;
    top: 55%;
    left: 75%;
    animation-delay: 2.8s;
    background: rgba(0, 255, 150, 0.7);
    box-shadow: 0 0 10px rgba(0, 255, 150, 0.5);
}

.server-list .particle:nth-child(16) {
    width: 4px;
    height: 4px;
    top: 90%;
    left: 60%;
    animation-delay: 3.8s;
    background: rgba(30, 130, 230, 0.7);
    box-shadow: 0 0 10px rgba(30, 130, 230, 0.5);
}

.server-list .particle:nth-child(17) {
    width: 6px;
    height: 6px;
    top: 45%;
    left: 15%;
    animation-delay: 4.8s;
    background: rgba(0, 140, 240, 0.7);
    box-shadow: 0 0 10px rgba(0, 140, 240, 0.5);
}

.server-list .particle:nth-child(18) {
    width: 9px;
    height: 9px;
    top: 5%;
    left: 95%;
    animation-delay: 5.8s;
    background: rgba(0, 100, 200, 0.7);
    box-shadow: 0 0 10px rgba(0, 100, 200, 0.5);
}

/* 添加浮动圆环 */
.server-list .floating-ring {
    position: absolute;
    border-radius: 50%;
    animation: floatUp 15s infinite ease-in;
}

.server-list .ring-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
    border: 2px solid rgba(0, 150, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.3);
}

.server-list .ring-2 {
    width: 40px;
    height: 40px;
    top: 70%;
    left: 80%;
    animation-delay: 2s;
    border: 2px solid rgba(0, 200, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.3);
}

.server-list .ring-3 {
    width: 30px;
    height: 30px;
    top: 40%;
    left: 70%;
    animation-delay: 4s;
    border: 2px solid rgba(0, 255, 200, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 200, 0.3);
}

.server-list .ring-4 {
    width: 50px;
    height: 50px;
    top: 60%;
    left: 25%;
    animation-delay: 6s;
    border: 2px solid rgba(0, 255, 150, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 150, 0.3);
}

.server-list .ring-5 {
    width: 35px;
    height: 35px;
    top: 30%;
    left: 50%;
    animation-delay: 8s;
    border: 2px solid rgba(30, 130, 230, 0.3);
    box-shadow: 0 0 20px rgba(30, 130, 230, 0.3);
}

.server-list .ring-6 {
    width: 45px;
    height: 45px;
    top: 80%;
    left: 40%;
    animation-delay: 10s;
    border: 2px solid rgba(0, 140, 240, 0.3);
    box-shadow: 0 0 20px rgba(0, 140, 240, 0.3);
}

.server-list .ring-7 {
    width: 55px;
    height: 55px;
    top: 10%;
    left: 30%;
    animation-delay: 12s;
    border: 2px solid rgba(0, 100, 200, 0.3);
    box-shadow: 0 0 20px rgba(0, 100, 200, 0.3);
}

.server-list .ring-8 {
    width: 25px;
    height: 25px;
    top: 90%;
    left: 70%;
    animation-delay: 14s;
    border: 2px solid rgba(0, 200, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.3);
}

/* 添加脉冲圆点 */
.server-list .pulse-dot {
    position: absolute;
    border-radius: 50%;
    animation: pulse 4s infinite ease-in-out;
}

.server-list .dot-1 {
    width: 20px;
    height: 20px;
    top: 30%;
    left: 40%;
    animation-delay: 0s;
    background: rgba(0, 150, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.3);
}

.server-list .dot-2 {
    width: 30px;
    height: 30px;
    top: 60%;
    left: 60%;
    animation-delay: 1s;
    background: rgba(0, 200, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.3);
}

.server-list .dot-3 {
    width: 15px;
    height: 15px;
    top: 80%;
    left: 30%;
    animation-delay: 2s;
    background: rgba(0, 255, 200, 0.2);
    box-shadow: 0 0 20px rgba(0, 255, 200, 0.3);
}

.server-list .dot-4 {
    width: 25px;
    height: 25px;
    top: 20%;
    left: 70%;
    animation-delay: 3s;
    background: rgba(0, 255, 150, 0.2);
    box-shadow: 0 0 20px rgba(0, 255, 150, 0.3);
}

.server-list .dot-5 {
    width: 18px;
    height: 18px;
    top: 70%;
    left: 20%;
    animation-delay: 4s;
    background: rgba(30, 130, 230, 0.2);
    box-shadow: 0 0 20px rgba(30, 130, 230, 0.3);
}

.server-list .dot-6 {
    width: 22px;
    height: 22px;
    top: 40%;
    left: 85%;
    animation-delay: 5s;
    background: rgba(0, 140, 240, 0.2);
    box-shadow: 0 0 20px rgba(0, 140, 240, 0.3);
}

/* 添加流星效果 */
.server-list .meteor {
    position: absolute;
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
    border-radius: 50%;
    animation: meteor 8s infinite linear;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.server-list .meteor:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.server-list .meteor:nth-child(2) {
    top: 30%;
    left: 80%;
    animation-delay: 2s;
}

.server-list .meteor:nth-child(3) {
    top: 60%;
    left: 20%;
    animation-delay: 4s;
}

.server-list .meteor:nth-child(4) {
    top: 80%;
    left: 90%;
    animation-delay: 6s;
}

.server-list-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
                 0 0 20px rgba(255, 255, 255, 0.6),
                 0 0 30px rgba(255, 255, 255, 0.4);
    animation: titleGlow 2s ease-in-out infinite alternate;
    position: relative;
    z-index: 2;
}

@keyframes titleGlow {
    from {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.8),
                     0 0 10px rgba(255, 255, 255, 0.6),
                     0 0 15px rgba(255, 255, 255, 0.4);
    }
    to {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
                     0 0 20px rgba(255, 255, 255, 0.6),
                     0 0 30px rgba(255, 255, 255, 0.4),
                     0 0 40px rgba(255, 255, 255, 0.2);
    }
}

.server-list-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

/* 服务器分类导航 */
.server-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.category-btn {
    padding: 0.7rem 1.8rem;
    background: rgba(40, 55, 75, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    color: #e0e0e0;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.category-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: 0.5s;
}

.category-btn:hover::before {
    left: 100%;
}

.category-btn.active {
    background: linear-gradient(45deg, #2980b9, #3498db);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 150, 255, 0.5);
    transform: translateY(-2px);
}

.category-btn:hover {
    background: rgba(52, 73, 94, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    color: #fff;
}

.category-btn.active:hover {
    background: linear-gradient(45deg, #2980b9, #00ccff);
}

.server-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.server-item {
    background: rgba(30, 40, 55, 0.85);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    z-index: 2;
}

.server-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    background: rgba(40, 55, 75, 0.95);
}

.server-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    transition: transform 0.5s ease;
}

.server-item:hover .server-image {
    transform: scale(1.05);
}

.server-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.server-content {
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.server-item:hover .server-content {
    transform: translateY(-3px);
}

.server-content h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.server-item:hover .server-content h3 {
    color: #64b4ff;
}

.server-content h3::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, #2980b9, #3498db);
    margin-top: 8px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.server-item:hover .server-content h3::after {
    width: 70px;
    background: linear-gradient(45deg, #00ccff, #2980b9);
}

.server-content p {
    color: #e0e0e0;
    margin-bottom: 1rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.server-item:hover .server-content p {
    color: #fff;
}

.server-content .server-version {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(45deg, #2980b9, #3498db);
    border-radius: 20px;
    font-size: 0.9rem;
    color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.server-item:hover .server-content .server-version {
    background: linear-gradient(45deg, #00ccff, #2980b9);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 150, 255, 0.4);
}

.server-content .server-version:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 150, 255, 0.5);
    background: linear-gradient(45deg, #00ff99, #2980b9);
}

/* 滚动动画效果 */
.server-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.server-item.show {
    opacity: 1;
    transform: translateY(0);
}

.join-community {
    text-align: center;
    padding: 3rem 0;
    position: relative;
    z-index: 2;
}

.join-community h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.join-community p {
    color: #e0e0e0;
    margin-bottom: 2rem;
}

.join-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, #2980b9, #3498db);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 150, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.join-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.join-button:hover::before {
    left: 100%;
}

.join-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 150, 255, 0.7);
    background: linear-gradient(45deg, #00ccff, #2980b9);
}

@media (max-width: 768px) {
    .server-grid {
        grid-template-columns: 1fr;
    }
    
    .server-list-title {
        font-size: 2rem;
    }
    
    .server-item {
        margin: 0 1rem;
    }
}