* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html,body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
    overflow: hidden;
}

.wrapper {
    flex: 1;
}

.container {
    text-align: center;
    position: relative;
    padding: 2rem;
}

.cyber-title {
    color: #00f3ff;
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    position: relative;
    animation: glow 2s ease-in-out infinite;
}

.status-text {
    color: #7d8da6;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.progress-bar {
    width: 600px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    margin: 2rem auto;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, #00f3ff, #6a00ff);
    animation: progress 3s ease-in-out infinite;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 50px;
    background: black; /* 修改背景颜色为黑色 */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.navbar ul li {
    list-style: none;
    display: inline-block; /* 修改为横向排列 */
    padding: 0 10px;
    font-size: 20px;
    color: #ffffff;
    text-decoration: none;
    /*font-weight: bold;*/
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 10px; /* 添加间距 */
}

.additional-text {
    padding: 2px;
    border-radius: 5px;
    border:2px solid #ffffff;
    color: #ffffff;
    font-size: 1rem;
    font-weight: bold;
}

.footer {
    /*background-color: rgba(51, 51, 51, 0.5); !* 修改背景颜色为透明度50% *!*/
    text-decoration: none;
    list-style: none;
    color: black;
    text-align: center;
    padding: 1rem 0;
    position:absolute;
    bottom: 0;
    width: 100%;
}

.footer a:visited {
    color: black;
}
.footer a:link{
    color: black;
}

:link{
    color: #ffffff;
}
a:visited{
    color: #ffffff;
}
/* 下拉菜单样式 */
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin-top: 10px;
    list-style: none;
}

.dropdown-menu li {
    padding: 8px 16px;
    cursor: pointer;
}

.dropdown-menu li:hover {
    background-color: #f1f1f1;
}

.user-info:hover .dropdown-menu {
    display: block;
}


/*@media (max-width: 768px) {*/
/*    .cyber-title {*/
/*        font-size: 2rem;*/
/*    }*/
/*    .status-text {*/
/*        font-size: 1rem;*/
/*    }*/
/*    .nav-links {*/
/*        display: none;*/
/*    }*/
/*    .dropdown {*/
/*        display: block;*/
/*    }*/
/*}*/