/* 全局最小宽度设置 */
body {
    min-width: 1200px !important;
}

html {
    min-width: 1200px !important;
}

/* 导航栏样式 */
.navbar {
    position: sticky;
    top: 0;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 125px;
    background: rgba(2, 6, 25);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-width: 1200px;
    width: 100%;
}

.logo {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
    line-height: 1;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 48px;
    list-style: none;
    line-height: 1;
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links a.active {
    color: #6294FF;
}

.contact-btn {
    padding: 10px 28px;
    background: #3173F9;
    color: #ffffff;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    white-space: nowrap;
}

.contact-btn:hover {
    background: #3173F9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 158, 255, 0.4);
}
