body {
    margin: 0;
    padding: 0;
    font-family: "微软雅黑", Arial, sans-serif;
    background-color: #f0f0f0;
}

/* 导航栏样式 - 浅色毛玻璃效果 */
.navbar {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    color: #fff;
    font-size: 1.5em;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.nav-links a:hover {
    color: #ff9800;
}

.hero-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-image: url('https://img.remit.ee/api/file/BQACAgUAAyEGAASHRsPbAAEDSe9o6eMGV1hTGa9uamrbfEz0sGCyJwACeBsAAtUQUVf-jhiPISP3vzYE.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding: 80px 20% 20px;
    color: #fff;
    box-sizing: border-box;
}

.hero-left {
    padding: 20px;
    border-radius: 12px;
    flex: 1;
    min-width: 250px;
    max-width: 500px;
    margin-bottom: 20px;
}

.server-title {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.server-subtitle {
    font-size: 1.5em;
    font-weight: bold;
    background: linear-gradient(90deg, #ff5722, #4caf50, #2196f3, #e91e63);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.server-desc {
    font-size: 0.95em;
    margin-bottom: 18px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.server-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
}

.server-table th,
.server-table td {
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.server-table th {
    font-weight: bold;
    background: rgba(255, 255, 255, 0.2);
}

#server-ip {
    background: transparent;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 8px;
    font-size: 0.9em;
    text-decoration: none;
    transition: all 0.3s ease;
}

#server-ip:hover {
    color: #ff9800;
    text-shadow: none;
}

.hero-buttons {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-buttons button {
    background: #ff9800;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.95em;
    cursor: pointer;
    transition: background 0.2s;
    flex: 1;
    min-width: 120px;
}

.hero-buttons button:hover {
    background: #e65100;
}

.hero-right {
    background: #fff;
    color: #333;
    padding: 0;
    border-radius: 16px;
    min-width: 280px;
    max-width: 100%;
    margin-left: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    max-height: 380px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.notice-header {
    padding: 20px 24px 0;
}

.notice-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 12px;
    color: #2196f3;
}

.notice-content-container {
    flex: 1;
    overflow-y: auto;
    padding: 0 24px;
    position: relative;
}

.notice-content {
    font-size: 1em;
    line-height: 1.6;
    padding: 10px 0 20px;
}

.notice-content ul {
    padding-left: 20px;
    margin: 0;
}

.notice-content li {
    margin-bottom: 12px;
    color: #555;
    font-size: 1em;
}

.notice-footer {
    height: 20px;
    background: #fff;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

/* 硬件信息容器样式 */
.hardware-section {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 40px 20px;
    margin-top: 0;
}

.hardware-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hardware-title {
    font-size: 2em;
    text-align: center;
    margin-bottom: 30px;
    color: #ff9800;
    text-shadow: 0 0 10px rgba(255, 152, 0, 0.5);
}

.hardware-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.hardware-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hardware-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hardware-item h3 {
    margin-top: 0;
    color: #4caf50;
    font-size: 1.2em;
}

.hardware-item p {
    margin: 10px 0 0;
    font-size: 1.1em;
}

/* 管理团队和玩家代表样式 - 修复布局问题 */
.team-section {
    background-image: url('https://img.remit.ee/api/file/BQACAgUAAyEGAASHRsPbAAEDSmpo6fnHrsA3yZcvIR4IRL4otNOwHAACJhwAAtUQUVcJ7-l3FS6ofTYE.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px;
    color: #fff;
    box-sizing: border-box;
    /* 移除固定高度和flex布局 */
    min-height: auto;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 40px;
    color: #ff9800;
    text-shadow: 0 0 10px rgba(255, 152, 0, 0.5);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.member-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    margin: 0 auto 15px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.member-info {
    font-size: 0.95em;
    color: #ccc;
    line-height: 1.5;
}

.member-info p {
    margin: 5px 0;
}

.owner {
    color: #ff0000;
    font-weight: bold;
}

.admin {
    color: #fffb00;
    font-weight: bold;
}

.wjdb {
    color: #00ffea;
    font-weight: bold;
}

/* 响应式布局 */
@media (min-width: 768px) {
    .hero-section {
        flex-wrap: nowrap;
        padding: 80px 20% 20px;
    }

    .hero-left {
        margin-bottom: 0;
        margin-right: 20px;
        max-width: 450px;
    }

    .hero-right {
        margin-left: 20px;
        flex: 0 0 320px;
        max-height: 400px;
    }

    .server-title {
        font-size: 2.2em;
    }

    .server-subtitle {
        font-size: 1.7em;
    }

    .server-desc {
        font-size: 1em;
    }

    .hero-buttons {
        flex-wrap: nowrap;
    }

    .hero-buttons button {
        flex: none;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .team-section {
        padding: 80px 20%;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 10% 20px;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 80px 5% 20px;
    }

    .hero-left,
    .hero-right {
        padding: 18px 20px;
    }

    .server-title {
        font-size: 1.8em;
    }

    .server-subtitle {
        font-size: 1.3em;
    }

    .server-table th,
    .server-table td {
        padding: 6px 8px;
        font-size: 0.9em;
    }

    .hero-buttons button {
        padding: 8px 16px;
        font-size: 0.9em;
        min-width: 100px;
    }

    .nav-container {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links {
        gap: 15px;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .member-avatar {
        width: 100px;
        height: 100px;
    }
}
    /* 页脚样式 */
.site-footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icp-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #aaa;
    font-size: 0.85em;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.icp-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.icp-icon {
    margin-right: 8px;
    font-size: 1.1em;
}

.icp-text {
    font-family: "微软雅黑", Arial, sans-serif;
    letter-spacing: 0.5px;
}
/* 响应式调整 */
@media (max-width: 768px) {
    .site-footer {
        padding: 15px 0;
    }
    
    .icp-link {
        font-size: 0.8em;
        padding: 6px 12px;
    }
}
@media (max-width: 480px) {
    .icp-link {
        font-size: 0.75em;
    }
    .icp-icon {
        margin-right: 6px;
    }
}