body {
    margin: 0;
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    background: url('背景.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    padding: 20px;
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}
.glass-card {
    background: rgba(50, 50, 50, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 35px;
    padding: 30px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    width: 95%;
    max-width: 900px;
    margin: 20px;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}
.glass-card:hover {
    transform: scale(1.01);
}
.performance-info {
    margin-top: 20px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 14px;
}

.performance-info p {
    margin: 5px 0;
    color: #ddd;
}
h1 {
    margin: 0;
    font-size: 2.8em;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon {
    height: 45px;
    margin: 0 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.icon:hover {
    transform: scale(1.3);
}
.links {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
}
.links li {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
}
.links a {
    text-decoration: none;
    color: #fff;
    font-size: 1.3em;
    transition: color 0.3s, background 0.3s, transform 0.3s;
    display: block;
    padding: 12px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
}
.links a:hover {
    color: #fff;
    background: rgba(100, 150, 200, 0.5);
    transform: scale(1.1);
}
.status {
    margin-top: 5px;
    font-size: 1.2em;
    font-weight: bold;
}
.green { color: green; }
.orange { color: orange; }
.red { color: red; }
.footer {
    margin-top: 20px;
    font-size: 1.2em;
    color: #fff;
}
.contact {
    margin-top: 20px;
    font-size: 1.2em;
    color: #fff;
}
.contact a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}
.contact a:hover {
    color: #4CAF50;
}

@media (max-width: 768px) {
    .links {
        grid-template-columns: 1fr;
    }
    h1 {
        font-size: 2em;
    }
    .links a {
        font-size: 1.1em;
        padding: 10px;
    }
    .links li {
        width: 100%;
        margin: 10px 0;
    }
    .footer {
        font-size: 1em;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1025px) {
    .links {
        grid-template-columns: 1fr 1fr 1fr;
    }
}