@font-face {
font-family: myFont;
src: url('../fonts/Montserrat-Regular.ttf');
}

html,
.uk-h1,
.uk-h2,
.uk-h3,
.uk-h4,
.uk-h5,
.uk-h6,
.uk-heading-2xlarge,
.uk-heading-large,
.uk-heading-medium,
.uk-heading-small,
.uk-heading-xlarge,
.uk-button,
.uk-navbar-nav>li>a,
h1,
h2,
h3,uk-navbar-nav
h4,
h5,
h6,
p,
ul,
li,
a,
span {
font-family: myFont!important;
}

body {
margin: 0 auto;
min-width: 1400px;
}

html {
scroll-behavior: smooth;
}

.uk-font-01 {
font-family: myFont01 !important;
}

.my-radius {
border-radius: 15px;
}

.my-radius2 {
border-radius: 50px;
}

.my-radius3 {
border-radius: 30px;
}

.z_recharge {
  padding: 18px 54px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  outline: none;
  color: white;
  /* 渐变背景 */
  background: linear-gradient(90deg, #fde310, #be931c, #fde310);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.z_recharge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 151, 31,0.4);
  text-decoration: none;
  color: #FFF;
}

/* 点击效果 */
.z_recharge:active {
  transform: translateY(0);
}

.z_recharge:hover::before {
  left: 100%;
}


.z_download {
  padding: 18px 54px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  outline: none;
  color: white;
  /* 渐变背景 */
  background: linear-gradient(90deg, #4361ee, #3a0ca3, #7209b7);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* 鼠标悬浮 */
.z_download:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(67, 97, 238, 0.4);
  text-decoration: none;
  color: #FFF;
}

/* 点击效果 */
.z_download:active {
  transform: translateY(0);
}

/* 反光高光 */
.z_download::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: all 0.6s ease;
}

.z_download:hover::before {
  left: 100%;
}

.uk-text-white {
color: #FFF;
}

.gm-bg {
background: #f9da6d;
}
.gm-bg-body{ background:#edbf1d; }
.x-background-img {
background: #f5d4aa;
box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}


/* 自定义滚动条样式 */

.g-scrollbar::-webkit-scrollbar {
width: 8px;
}

.g-scrollbar::-webkit-scrollbar-track {
background: #373400;
border-radius: 10px;
}

.g-scrollbar::-webkit-scrollbar-thumb {
background: #fba46a;
border-radius: 10px;
border: solid 1px #d38959;
}

.g-scrollbar::-webkit-scrollbar-thumb:hover {
background: #c681ff;
}

/* ========== 静态导航栏（无任何特效） ========== */
.navbar-custom {
    padding: 20px 8%;
    background: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}
.uk-navbar-nav a {
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: color 0.2s;
}
.uk-navbar-nav a:hover {
    color: var(--primary-blue) !important;
}
/* 导航激活状态样式 */
.uk-navbar-nav a.active {
    color: var(--primary-blue) !important;
    font-weight: 600;
    position: relative;
}
.uk-navbar-nav a.active::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 3px;
}

/* ========== 悬浮面板：完全不影响页面布局 ========== */
.policy-panel {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 900px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.15);
    padding: 40px 35px;
    z-index: 9998;
    max-height: 75vh;
    overflow-y: auto;
}

/* 粘附关闭按钮 */
.panel-close {
    position: fixed;
    top: 50px;
    right: 35px;
    background: var(--primary-blue);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(22,101,255,0.2);
    z-index: 9999;
}
.panel-close i {
    font-size: 20px;
}

/* ========== 页面原有样式 ========== */
.hero { height: 80vh; position: relative; display: flex; align-items: center; padding: 80px 8% 0 8%; }
.hero-bg { position: absolute; top:0;left:0;width:100%;height:100%; background: url(../img/h_bg.jpg) center; background-size:cover; }
.hero-overlay {position:absolute;top:0;left:0;width:55%;height:100%;background: linear-gradient(120deg, #fdff56, #fc8a1b);opacity:0.8;border-radius:0 0 60px 0;}
.hero-content { position:relative;z-index:2; max-width:550px; color:white;}
.hero-content h1 { line-height:1.2; font-weight:700; }

.game-card { transition:0.4s; border-radius:12px; overflow:hidden; }
.game-card:hover { transform:translateY(-8px); box-shadow:var(--card-shadow); }


 /* ========== 评价卡片 ========== */
.testimonial-card {
    border-radius: 16px;
    padding: 35px;
    position: relative;
    margin-top: 30px;
}
.testi-avatar {
    width: 60px; height: 60px;
    border-radius: 50%;
    position: absolute;
    top: -30px; left: 50%;
    transform: translateX(-50%);
    border: 4px solid white;
}

/* ========== 订阅 ========== */
.subscribe-input {
    border-radius: 12px 0 0 12px !important;
    background: var(--light-gray) !important;
    border: none !important;
    padding: 18px 24px;
}
.submit-btn {
    background: var(--primary-blue) !important;
    color: white !important;
    border-radius: 0 12px 12px 0 !important;
    padding: 18px 40px;
    font-weight: 600;
}

 /* ========== 图片重叠 ========== */
.img-bottom {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 65%;
}
.footer-bg {
background: #605c43;
height: auto;
padding: 30px 160px;
}

