/* MEGA888 Malaysia 导航栏样式 - 深色霓虹主题 */

/* 导航菜单容器 */
.main-menu-container {
    background: #0b183a !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    z-index: 999;
}

/* 主菜单 */
.main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu li {
    position: relative;
    margin: 0;
}

.main-menu a {
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    font-size: 14px;
}

.main-menu a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: #f9d770;
}

.main-menu a.current {
    background-color: rgba(255, 255, 255, 0.1);
    color: #f9d770;
    font-weight: 700;
}

/* 为导航项添加图标 */
.main-menu a::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 8px;
    font-size: 14px;
}

.main-menu li:nth-child(1) a::before { content: "\f015"; } /* 首页 */
.main-menu li:nth-child(2) a::before { content: "\f091"; } /* 体育 */
.main-menu li:nth-child(3) a::before { content: "\f11b"; } /* 游戏 */
.main-menu li:nth-child(4) a::before { content: "\f3e0"; } /* 真人娱乐 */
.main-menu li:nth-child(5) a::before { content: "\f005"; } /* 优惠活动 */

/* HOT标签 */
.main-menu a.hot::after {
    content: "HOT";
    background-color: #e74c3c;
    color: white;
    font-size: 10px;
    padding: 2px 4px;
    border-radius: 3px;
    margin-left: 5px;
    position: absolute;
    top: 6px;
    right: 6px;
}

/* 移动端样式 */
@media (max-width: 768px) {
    .main-menu-container {
        display: none;
    }
} 