/* ========== 首页独有样式 ========== */
.home-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(76, 175, 80, 0.3);
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.4);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.home-main:hover {
    transform: translate(-50%, -55%) scale(1.02);
    box-shadow: 0 0 25px rgba(76, 175, 80, 0.7);
    border-color: rgba(76, 175, 80, 0.6);
}

.server-logo {
    width: 100%;
    max-width: 652px;
    height: auto;
    margin-bottom: 30px;
    border-radius: 10px;
}

.home-main h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.6);
}

.home-main p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .home-main h1 {
        font-size: 2rem;
    }
    .home-main {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .navbar {
        top: 15px;
        width: 95%;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    .home-main {
        top: 55%;
        padding: 25px 15px;
    }
    .home-main h1 {
        font-size: 1.8rem;
    }
    .home-main p {
        font-size: 1rem;
    }
}