:root {

    --primary-accent: #e67e22;
    --primary-glow: #f39c12;
    --dark-bg: #0a0c10;
    --card-bg: rgba(20, 24, 30, 0.85);
    --border-glow: rgba(230, 126, 34, 0.4);
}

body.gm-bg-body {
    background: #050608;
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #f0f0f0;
    overflow-x: hidden;
}

/* 自定义滚动条 */
.g-scrollbar::-webkit-scrollbar {
    width: 6px;
}
.g-scrollbar::-webkit-scrollbar-track {
    background: #1e1e2a;
    border-radius: 8px;
}
.g-scrollbar::-webkit-scrollbar-thumb {
    background: #e67e22;
    border-radius: 8px;
}

/* 全新英雄区背景 */
.hero-wild {
    position: relative;
    background: linear-gradient(135deg, #0b0c12 0%, #11161f 100%);
    border-bottom: 3px solid rgba(230, 126, 34, 0.5);
    overflow: hidden;
}
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/h_bg.jpg');
    background-size: cover;
    background-position: center 30%;
    opacity: 0.35;
    filter: brightness(0.7) contrast(1.1);
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 5rem 1.5rem 6rem;
    text-align: center;
}
.game-title-main {
    padding: 0 180px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #fff 30%, #f39c12 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.game-tagline {
    font-size: 0.825rem;
    letter-spacing: 2px;
    color: #ddd;
    margin-top: 1rem;
}
.btn-download-new {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(95deg, #e67e22, #d35400);
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    box-shadow: 0 0 15px rgba(230,126,34,0.6);
    transition: all 0.3s ease;
    border: none;
    margin-top: 2rem;
}
.btn-download-new:hover {
    transform: scale(1.05);
    background: linear-gradient(95deg, #f39c12, #e67e22);
    box-shadow: 0 0 25px #e67e22;
    color: white;
    text-decoration: none;
}
/* 特色区块卡片 */
.feature-card {
    background: rgba(20, 24, 30, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 32px;
    padding: 2rem;
    transition: all 0.3s;
    border: 1px solid rgba(230,126,34,0.3);
}
.weapon-card {
    background: linear-gradient(145deg, #14181f, #0e1117);
    border-radius: 28px;
    padding: 1.2rem 0.8rem;
    text-align: center;
    transition: all 0.25s ease;
    border-bottom: 3px solid #e67e22;
    backdrop-filter: blur(2px);
}
.weapon-card img {
    width: 100%; 
    aspect-ratio: 1/1;
    object-fit: cover;
    margin-bottom: 1rem;
    transition: transform 0.2s;
}
.weapon-card:hover img {
    transform: scale(1.05);
}
.weapon-card h3 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffd7a0;
    margin-top: 10px;
}
.feature-icon-list {
    background: rgba(0,0,0,0.4);
    border-radius: 48px;
    padding: 1.5rem;
}
.feature-icon-list li {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
/* 选项卡全新样式 (保留ui-swtich逻辑) */
.x-navbar-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    border-radius: 60px;
    padding: 0.5rem 1rem;
    margin: 0;
    list-style: none;
    border: 1px solid rgba(230,126,34,0.4);
}
.x-navbar-nav li {
    margin: 0;
}
.x-navbar-nav li a {
    display: inline-block;
    padding: 10px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: 0.2s;
    color: #eee;
    text-transform: uppercase;
}
.x-navbar-nav li a:hover {
    background: rgba(230,126,34,0.2);
    color: #f39c12;
    text-decoration: none;
}
/* 激活项样式（uk-active 类由UIkit自动添加） */
.x-navbar-nav li.uk-active a {
    background: #e67e22;
    color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.uk-switcher.gm-bg {
    background: rgba(10, 12, 18, 0.9);
    backdrop-filter: blur(12px);
    border-radius: 32px;
    border: 1px solid rgba(230,126,34,0.5);
    margin-top: 20px;
    padding: 2rem;
    color: #ececec;
}
/* 统一图片适配 */
.img-fluid-custom {
    max-width: 100%;
    height: auto;
}
.logo-new {
    max-width: 550px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
}
.inline-feature-img img {
    transition: all 0.2s;
    filter: brightness(0.95);
    margin: 0 10px;
}
.inline-feature-img img:hover {
    transform: translateY(-5px);
    filter: brightness(1.1);
}
.footer-copyright {
    border-top: 1px solid rgba(230,126,34,0.3);
    padding-top: 2rem;
}
@media (max-width: 960px) {
    .game-title-main { font-size: 2.4rem; }
    .weapon-card img { max-height: 140px; }
    .x-navbar-nav li a { padding: 6px 18px; font-size: 0.7rem; }
}
/* 保留原有的 gm-bg 辅助类兼容 */
.gm-bg {
    background: transparent;
}
.uk-text-white {
    color: #fefefe !important;
}
.uk-h2 li {
    font-size: 1.3rem;
    margin: 1rem 0;
}