:root {
    --primary-color: #4a6bdf;
    --secondary-color: #6c5ce7;
    --accent-color: #00cec9;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-light: #f9f9f9;
    --reward-color: #ff6b6b;
}

body {
    background: #f8f9fa;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-weight: 400;
    font-size: 14px;
    /*font-family: "Microsoft Yahei", sans-serif;*/
}

.no-underline {
    text-decoration: none;
}


/* 导航条外层容器 - 保证背景全屏 */
.NEW-NAV-navbar-wrapper {
    background: rgba(18,18,24,.85);
    width: 100%;
    border-bottom: 0px solid #B39E73;
    height: 80px;
}

/* 导航条内容容器 - 核心：flex布局，LOGO左，菜单右 */
.NEW-NAV-navbar {
    display: flex;
    align-items: center;
    height: 80px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    /* 关键：取消space-between，改为左对齐，让元素按顺序排列 */
    justify-content: flex-start;
}

/* ==================================
1. 彻底解决LOGO居中问题：移到最左侧
=================================== */
.NEW-NAV-nav-logo {
    /* 强制覆盖所有居中定位，确保LOGO在最左 */
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    /* LOGO和第一个菜单的间距，可按需调整 */
    margin-right: 40px;
    z-index: 9999;
    order: 1; /* 强制LOGO排在最前面 */
}

.NEW-NAV-nav-logo img {
    display: block;
    max-height: 70px;
    width: auto;
    max-width: 300px; /* 保留你原有的最大宽度 */
}

/* ==================================
2. 菜单容器：把左右菜单合并成一整排，紧跟LOGO
=================================== */
/* 左侧菜单容器：紧跟LOGO，顺序排列 */
.NEW-NAV-nav-left {
    display: flex;
    align-items: center;
    gap: 0;
    order: 2; /* 排在LOGO后面 */
}

/* 右侧菜单容器：紧跟左侧菜单，无缝衔接 */
.NEW-NAV-nav-right {
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: 0;
    order: 3; /* 排在左侧菜单后面 */
}

/* ==================================
3. 菜单项样式（完全保留你原有的效果）
=================================== */
.NEW-NAV-nav-item {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 0 35px; /* 菜单左右内边距，控制菜单间距，可按需调整 */
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    transition: all 0.3s;
    white-space: nowrap;
    margin-left:50px;
}

/* 英文小字样式 */
.NEW-NAV-nav-item .nav-en {
    font-size: 10px;
    margin-top: 2px;
    opacity: 0.8;
}

/* 会员中心特殊样式 */
.NEW-NAV-nav-item.NEW-NAV-member {
    background-color: #444;
}

/* hover效果 */
.NEW-NAV-nav-item:not(.NEW-NAV-home):hover {
    color: #fff;
    background: linear-gradient(#333333,#d48634);
}

/* hover时英文同步变亮 */
.NEW-NAV-nav-item:hover .nav-en {
    opacity: 1;
}

/* ========== 高亮样式（恢复！JS 控制的高亮）========== */
.NEW-NAV-nav-item.NEW-NAV-home {
    background: linear-gradient(#6d3605,#d48634);
    transition: all 0.3s;
}

/* 会员中心 */
.NEW-NAV-nav-item.NEW-NAV-member {
    background-color: #444;
}

/* hover */
.NEW-NAV-nav-item:not(.NEW-NAV-home):hover {
    background: linear-gradient(#333,#d48634);
    color:#fff;
}
.NEW-NAV-nav-item:hover .nav-en {
    opacity:1;
}



/* 大标题通栏 - 完全匹配示例图样式 */
        .NEW-title-bar {
            width: 100%;
            padding: 35px 0;
            text-align: center;
            
        }
        .NEW-title-main {
            display: inline-block;
            font-size: 40px;
            color: #b42d0c; /* 匹配示例图红色 */
            font-weight: bold;
            position: relative;
            /* 核心调整：内边距仅用于容纳伪元素，不影响文字 */
            padding: 0 30px; 
        }
        /* 左侧装饰线和菱形 - 精准对齐示例图 */
        .NEW-title-main::before {
                content: "";
    position: absolute;
    left: -220px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(to right, #fff, #b42d0c);
        }
        .NEW-title-main::after {
            content: "";
            position: absolute;
            left: -20px; /* 菱形紧贴文字左侧 */
            top: 50%;
            transform: translateY(-50%);
            width: 8px; /* 匹配示例图菱形大小 */
            height: 8px;
            background-color: #b42d0c; /* 匹配示例图菱形颜色 */
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
        }
        /* 右侧装饰线和菱形 - 精准对齐示例图 */
        .NEW-title-main span::before {
            content: "";
            position: absolute;
            right: -240px; /* 线条向右延伸120px */
            top: 50%;
            transform: translateY(-50%);
            width: 200px; /* 线条长度 */
            height: 2px;
            background: linear-gradient(to left, #fff, #b42d0c); /* 匹配示例图渐变 */
        }
        .NEW-title-main span::after {
            content: "";
            position: absolute;
            right: -40px; /* 菱形紧贴文字右侧 */
            top: 50%;
            transform: translateY(-50%);
            width: 8px; /* 匹配示例图菱形大小 */
            height: 8px;
            background-color: #b42d0c; /* 匹配示例图菱形颜色 */
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
        }
        .NEW-title-main span {
            position: relative;
            display: inline-block;
        }

        /* BANNER容器 */
        .NEW-banner-container {
            width: 100%;
            height: 550px; /* 还原原图高度比例 */
            position: relative;
            overflow: hidden; /* 隐藏视频超出容器的部分 */
        }

        /* 视频背景样式 */
        .NEW-banner-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            z-index: 1; /* 视频在最底层 */
            object-fit: cover; /* 保持视频比例并覆盖容器 */
        }

        /* 原背景图作为视频加载失败的备用 */
        .NEW-banner-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            z-index: 1; /* 和视频同层，作为备用 */
        }

        /* 中间内容卡片 */
        .NEW-banner-card {
            position: absolute;
            left: 50%;
            top: 480px;
            transform: translate(-50%, -50%);
            width: 50%;
            height: 200px;
            max-width:1600px;
            background-color: rgba(255, 255, 255, 0.55); /* 半透明白色背景 */
            display: flex;
            justify-content: space-around;
            align-items: stretch; /* 修改：让子元素拉伸填满高度 */
            border: 1px solid #e0e0e0;
            z-index: 2; /* 内容卡片在视频上层 */
        }

        /* 每个功能模块 */
        .NEW-banner-item {
            text-align: center;
            flex: 1; /* 修改：使用flex等分宽度，替代固定30% */
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            transition: all 0.3s ease;
            cursor: default; /* 明确设置为默认指针样式 */
        }

        /* 分割线：用伪元素实现 */
        .NEW-banner-item:not(:last-child)::after {
            content: "";
            position: absolute;
            right: 0;
            top: 20%;
            bottom: 20%;
            width: 1px;
            background-color: rgba(0, 0, 0, 0.1);
            z-index: 1; /* 确保分割线在hover背景上层 */
        }

        /* 鼠标hover时背景变色 */
        .NEW-banner-item:hover {
            background-color: rgba(255, 255, 255, 0.8);
            box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
        }

        /* 标题样式 */
        .NEW-item-title {
            font-size: 20px;
            color: #b42d0c;
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
            z-index: 2; /* 确保文字在分割线上层 */
        }

        /* 标题右上角标签 */
        .NEW-title-tag {
            position: absolute;
            top: -15px;
            right: -35px;
            font-size: 12px;
            color: #fff;
            padding: 1px 5px;
            border-radius: 2px;
            z-index: 2; /* 确保标签在分割线上层 */
        }

        /* 不同标签颜色 */
        .NEW-tag-important {
            background-color: #ff4d4d; /* 重要-红色 */
        }

        .NEW-tag-must-see {
            background-color: #ff4d4d; /* 必看-红色 */
        }

        .NEW-tag-feature {
            background-color: #e67e22; /* 特色-橙色 */
        }

        /* 副标题样式 */
        .NEW-item-subtitle {
            font-size: 12px;
            color: #999;
            margin-bottom: 20px;
            z-index: 2; /* 确保文字在分割线上层 */
        }

        /* 按钮样式 */
        .NEW-item-btn {
            width: 100px;
            height: 36px;
            line-height: 34px;
            text-align: center;
            border: 1px solid #b42d0c;
            background-color: transparent;
            color: #b42d0c;
            font-size: 14px;
            cursor: pointer; /* 按钮仍保留手形指针 */
            transition: all 0.3s ease;
            z-index: 2; /* 确保按钮在分割线上层 */
        }

        .NEW-item-btn:hover {
            background-color: #b42d0c;
            color: #fff;
        }
        
        .NEW-item-btn a {
    text-decoration: none;
    color:#b42d0c;
}
.NEW-item-btn a:hover {
    text-decoration: none;
    color:#fff;
}
        /* 响应式适配 */
        @media (max-width: 768px) {
            .NEW-title-main {
                font-size: 20px;
                padding: 0 20px;
            }
            .NEW-title-main::before {
                left: -80px;
                width: 60px;
            }
            .NEW-title-main::after {
                left: -10px;
                width: 6px;
                height: 6px;
            }
            .NEW-title-main span::before {
                right: -80px;
                width: 60px;
            }
            .NEW-title-main span::after {
                right: -10px;
                width: 6px;
                height: 6px;
            }
            .NEW-banner-container {
                height: auto;
                min-height: 420px;
            }
            .NEW-banner-card {
                width: 90%;
                height: auto;
                padding: 20px 0;
                flex-direction: column;
            }
            .NEW-banner-item {
                width: 100%; /* 修改：移动端宽度100% */
                margin-bottom: 20px;
                padding: 20px 0; /* 添加：移动端增加内边距 */
                height: auto;
            }
            .NEW-banner-item:last-child {
                margin-bottom: 0;
            }
            /* 移动端隐藏分割线 */
            .NEW-banner-item:not(:last-child)::after {
                display: none;
            }
        }








































/* 自定义导航样式 */
/* 自定义导航样式 */
.DAOHANG-navbar {
    width: 100%;
    height:80px;
    background-color: rgba(18,18,24,.85);
    position: relative;
    overflow: visible;
    z-index: 999;
    border-bottom: 3px #B39E73 solid;
}

.DAOHANG-navbar .navbar-container {
    display: flex;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    padding: 5px 0;
}

.DAOHANG-navbar .navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    max-height: 180px;
    z-index: 1000;
}

.DAOHANG-navbar .navbar-brand img {
    height: auto;
    max-height: 180px;
    width: auto;
    display: block;
}

.DAOHANG-navbar .nav-links {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.DAOHANG-navbar .nav-left,
.DAOHANG-navbar .nav-right {
    display: flex;
    align-items: center;
    width: 40%;
}

.DAOHANG-navbar .nav-left {
    justify-content: flex-end;
    padding-right: 10%;
}

.DAOHANG-navbar .nav-right {
    justify-content: flex-start;
    padding-left: 10%;
}

.DAOHANG-navbar .nav-left .navbar-nav,
.DAOHANG-navbar .nav-right .navbar-nav {
    display: flex;
    width: 100%;
}

.DAOHANG-navbar .nav-left .nav-item {
    flex: 1;
    text-align: center;
}

.DAOHANG-navbar .nav-right .nav-item {
    flex: 1;
    text-align: center;
}

.DAOHANG-navbar .nav-right .nav-item:last-child {
    flex: 0 0 auto;
}

.DAOHANG-navbar .nav-link {
    color: white;
    font-size: 16px;
    transition: all 0.3s;
    white-space: nowrap;
    display: block;
}

.DAOHANG-navbar .nav-link:hover {
    color: #ffffff;
    border-radius: 20px;
    padding: 8px;
    background: rgba(255, 255, 255, .1);

}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: #ffffff;
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(204, 0, 21, .3);
    background: linear-gradient(45deg, #cc0015, #ff4d4d);

}





/* 修改微信登录按钮样式 */
.DAOHANG-navbar .wechat-login-btn {
    /* 使用标准语法，浏览器会自动处理前缀 */
    /*background: linear-gradient(45deg, #ff6b00, #ff9d4a);*/
    background: rgba(255, 255, 255, .1);
    color: #ffffff;
    border-radius: 2px;
    padding: 8px;
    /*box-shadow: 0 4px 15px rgba(204, 0, 21, .3);*/
}

.bg-warning {
    background: linear-gradient(45deg, #ffd700, #ff9d4a) !important;
}

.DAOHANG-navbar .wechat-login-btn:hover {
    background: rgba(255, 255, 255, .3);
}




/* 微信登录模态框样式更新 */
.DAOHANG-modal .modal-dialog {
    min-width: 1000px;
    margin-top: 200px;
}


.DAOHANG-modal .modal-content {
    height: 590px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: url(/assets/user_right_bg.png) center top no-repeat;
    background-size: cover;
    color: #fff;
}

.DAOHANG-modal .modal-body {
    padding: 0;
    display: flex;
    height: 100%;
}

.DAOHANG-modal .modal-left {
    width: 375px;
    background: url('/assets/loginpic.png') no-repeat center center;
    background-size: cover;
}

.DAOHANG-modal .modal-right {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.DAOHANG-modal .modal-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.DAOHANG-modal .steps {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.DAOHANG-modal .step {
    display: flex;
    align-items: center;
    font-size: 16px;
}

.DAOHANG-modal .step-number {
    width: 24px;
    height: 24px;
    background-color: #ff9900;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-weight: bold;
}

.DAOHANG-modal .step-connector {
    margin: 0 15px;
    color: #999;
    font-size: 20px;
}

.DAOHANG-modal .qrcode-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.DAOHANG-modal .qrcode {
    width: 300px;
    height: 300px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;

}

.DAOHANG-modal .qrcode img {
    max-width: 280px;
    max-height: 280px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;

}

.DAOHANG-modal .footer-text {
    text-align: center;
    color: #fff;
    margin-top: 2px;
    font-size: 18px;
}

.DAOHANG-modal .footer-text span {
    text-align: center;
    color: yellow;
    margin: 2px 10px 0 10px;
    font-size: 30px;
    letter-spacing: 5px;
}

/* 关闭按钮样式 */
.DAOHANG-modal .modal-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.DAOHANG-modal .modal-close:hover {
    background-color: #e0e0e0;
    transform: rotate(90deg);
}

.DAOHANG-modal .modal-close i {
    color: #666;
    font-size: 16px;
}

/* 确保模态框内容不会隐藏关闭按钮 */
.DAOHANG-modal .modal-content {
    overflow: visible;
}

.BANNER-container {
    width: 100%;
    height: 570px;
    position: relative;
    overflow: visible;
    margin-bottom: 0px;
    background-color: #000;
    /* 最底层的黑色背景 */
    /*margin-top:-32px;*/
    z-index: -1;
}

.BANNER-background {
    width: 100%;
    height: 100%;
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}

.BANNER-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.BANNER-bottom-border {
    width: 100%;
    height: 70px;
    background-image: url(/assets/chahseaut.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    position: relative;
    margin-top: -30px;
    z-index: 2;
    top: -10px;
    left: 0;

}

.BANNER-top-border {
    width: 100%;
    height: 70px;
    background-image: url('/assets/chahseaut.png');
    background-position: center bottom;
    background-repeat: no-repeat;
    /*background-size: contain;*/
    /*position: absolute;*/
    margin-top: -38px;
    bottom: -28px;
    left: 0;

}

.TU4-card-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0px;
    display: flex;
    /*flex-wrap: wrap;*/
    gap: 20px;
    justify-content: center;
    margin-top: -215px;
    z-index: 999;
}

.TU4-card {
    flex: 1;
    min-width: 300px;
    width: 450px;
    height: 190px;
    background: linear-gradient(to top, rgb(166, 135, 91) 6%, rgb(209, 191, 143) 77%);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.TU4-card-bg1 {
    background-image: url('/assets/01.png');
}

.TU4-card-bg2 {
    background-image: url('/assets/02.png');
}

.TU4-card-bg3 {
    background-image: url('/assets/03.png');
}

.TU4-card-bg4 {
    background-image: url('/assets/04.png');
}

.TU4-card:hover {
    transform: scale(1.03);
}

.TU4-card-content {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    padding: 20px;
    color: #f8e5c9;
    /*text-align: center;*/
}

.TU4-card-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}

.TU4-card-button {
    display: inline-block;
    padding: 8px 16px;
    /* background-color: #d7ad41; */
    color: #f8e5c9;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border: 1px solid #f8e5c9;
}

.TU4-card-button:hover {
    background-color: #d7ad41;
    color: #fff;
    border: 0px solid #fff;
}

/* 主容器 */
.GAMELIST-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0px 0px 40PX 0PX;
    /*margin-top:50px;*/
}

/* 标题区域 */
.GAMELIST-header {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    background-image: url('/assets/3_title.png');
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
}

.GAMELIST-main-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 0px;
}

.GAMELIST-sub-title {
    font-size: 16px;
    color: #666;
    letter-spacing: 2px;
}

/* 分类切换和搜索区域 */
.GAMELIST-filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-radius: 0px;
    /* padding: 10px 10px; */
    border-bottom: 0px solid #e0e0e0;
     /*background-color: rgba(255, 255, 255, 0.2); */
}

.GAMELIST-tabs {
    display: flex;
    gap: 15px;
}

/* 分类切换按钮样式 */
.GAMELIST-tab {
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
    color: #666;
    background: #fff;
    cursor: pointer;
    transition: all .3s ease;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}

.GAMELIST-tab:hover {
    color: #ff4d4d;
    background: #fff;
    transform: translateY(-3px);
}

.GAMELIST-tab.ACTIVE {
    background: linear-gradient(45deg, #cc0015, #ff4d4d);
    color: #fff;
    box-shadow: 0 4px 15px rgba(204, 0, 21, .3);
}

/* 搜索框样式 */
.GAMELIST-search {
    position: relative;
    display: flex;
    align-items: center;
}

.GAMELIST-search input {
    padding: 12px 15px;
    border: 0px solid #ddd;
    border-radius: 0;
    width: 250px;
    outline: none;
    transition: all 0.3s;
    font-size: 14px;
    box-shadow: none;
    height: 48px;
    border-radius: 2px 0 0 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}

.GAMELIST-search input:focus {
    border-color: #ff6600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}

.GAMELIST-search-btn {
    height: 48px;
    width: 65px;
    background-color: #ff6600;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border-radius: 0px 2px 2px 0;
}

.GAMELIST-search-btn:hover {
    background-color: #e55c00;
}

/* 游戏列表 */
.GAMELIST-game-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.GAMELIST-game-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
    position: relative;
    border: 1px solid rgba(0, 0, 0, .05);
    min-height: 320px;
}

.GAMELIST-game-card.hidden {
    display: none;
}

.GAMELIST-game-card:hover {
    transform: translateY(-5px);
}

/* 封面图区域 */
.GAMELIST-game-cover {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.GAMELIST-game-cover a {
    display: block;
    width: 100%;
    height: 100%;
}

.GAMELIST-game-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}



.GAMELIST-game-card:hover .GAMELIST-game-cover img {
    transform: scale(1.05);
}

/* 角标 */
.GAMELIST-game-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    font-size: 12px;
    color: #fff;
    border-radius: 4px;
    background-color: #ff6600;
    z-index: 2;
}

/* 游戏信息 */
.GAMELIST-game-info {
    padding: 15px;
}

.GAMELIST-game-name {
    font-size: 16px;
    /*font-weight: bold;*/
    /*margin-bottom: 10px;*/
    color: #333;
}

.GAMELIST-game-desc {
    /*font-size: 14px;*/
    /*color: #666;*/
    /*margin-bottom: 15px;*/
    /*line-height: 1.5;*/
    /*height: 42px;*/
    /*overflow: hidden;*/
    /*text-overflow: ellipsis;*/
    /*display: -webkit-box;*/
    /*-webkit-line-clamp: 2;*/
    /*-webkit-box-orient: vertical;*/
    font-size: 12px;
    color: #999;
    margin-bottom: 12px;
    padding: 6px 10px;
    line-height: 1.3;
    background: rgba(0, 0, 0, .02);
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, .02);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 28px;
}

/* 按钮区域 */
.GAMELIST-game-buttons {
    display: flex;
    margin: 0 -15px -15px -15px;
}

.GAMELIST-game-btn {
    flex: 1;
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    color: #fff;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s;
    /*font-weight: bold;*/
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.GAMELIST-game-btn.download {
    background-color: #f7F7F7;
    color: #333;
    transition: all .25s ease;
}

.GAMELIST-game-btn.download:hover {
    background: #ff6600;
    color: #fff;
    transition: all .3s ease;
}

.GAMELIST-game-btn.recharge {
    background: linear-gradient(45deg, #cc0015, #ff4d4d);
    color: white;
    transition: all .25s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.GAMELIST-game-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: left 0.5s ease;
}

.GAMELIST-game-btn.recharge:hover::before {
    left: 100%;
}

.GAMELIST-game-btn.recharge:hover {
    background: linear-gradient(45deg, #ff1a1a, #ff6666);
    box-shadow: 0 4px 15px rgba(255, 77, 77, 0.3);
    /* transform: translateY(-2px); */
}


.GAMELIST-game-btn.rechargelogin {
    background: linear-gradient(45deg, #cc0015, #ff4d4d);
    color: white;
    transition: all .25s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.GAMELIST-game-btn.rechargelogin::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: left 0.5s ease;
}

.GAMELIST-game-btn.rechargelogin:hover::before {
    left: 100%;
}

.GAMELIST-game-btn.rechargelogin:hover {
    background: linear-gradient(45deg, #ff1a1a, #ff6666);
    box-shadow: 0 4px 15px rgba(255, 77, 77, 0.3);
    transform: translateY(-2px);
}




/* 隐藏原生单选框 */
.form-check-input[type="radio"] {
    display: none;
}

/* 自定义单选框容器 */
.form-check-input[type="radio"]+label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    line-height: 24px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 10px;
}

/* 自定义单选框外观 */
.form-check-input[type="radio"]+label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    border: 2px solid #ddd;
    border-radius: 50%;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* 自定义单选框选中状态指示点 */
.form-check-input[type="radio"]+label::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff4757 100%);
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
}

/* 悬停效果 */
.form-check-input[type="radio"]+label:hover::before {
    border-color: #ff6b6b;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

/* 选中状态 */
.form-check-input[type="radio"]:checked+label::before {
    border-color: #ff4757;
    background: #fff5f5;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
}

.form-check-input[type="radio"]:checked+label::after {
    transform: scale(1);
    opacity: 1;
}

/* 聚焦状态 */
.form-check-input[type="radio"]:focus+label::before {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
    border-color: #ff6b6b;
}

/* 禁用状态 */
.form-check-input[type="radio"]:disabled+label {
    color: #999;
    cursor: not-allowed;
}

.form-check-input[type="radio"]:disabled+label::before {
    background: #f5f5f5;
    border-color: #e0e0e0;
    box-shadow: none;
}

.form-check-input[type="radio"]:disabled:checked+label::after {
    background: #ccc;
}

/* 动画效果增强 */
@keyframes radioPulse {
    0% {
        box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(255, 71, 87, 0.6);
    }

    100% {
        box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
    }
}

.form-check-input[type="radio"]:checked+label::before {
    animation: radioPulse 2s infinite;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .form-check-input[type="radio"]+label {
        font-size: 14px;
        padding-left: 30px;
    }

    .form-check-input[type="radio"]+label::before {
        width: 20px;
        height: 20px;
    }

    .form-check-input[type="radio"]+label::after {
        left: 5px;
        top: 5px;
        width: 8px;
        height: 8px;
    }
}

.gametips {
    margin-bottom: 25px;
    /* text-align: center; */
    background: linear-gradient(135deg, #fff9f0 0%, #fff5e6 100%);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(255, 152, 0, .15);
    border: 2px solid #ffd699;
    transition: all 0.3s;
}

.gameduihuan {
    background: linear-gradient(-90deg, #f1422d, #bf0014);
    color: #fff;
    border: 0px;
    width: 100%;
    min-height: 50px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gameduihuan::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

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

.gameduihuan:hover {
    background: linear-gradient(-90deg, #ff5c47, #d1001a);
    box-shadow: 0 6px 20px rgba(191, 0, 20, 0.4);
    transform: translateY(-2px);
}

.gameduihuan:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(191, 0, 20, 0.3);
}

/* 禁用状态 */
.gameduihuan:disabled {
    background: linear-gradient(-90deg, #cccccc, #999999);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.gameduihuan:disabled::before {
    display: none;
}

/* 聚焦状态 */
.gameduihuan:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(241, 66, 45, 0.3);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .gameduihuan {
        min-height: 45px;
        font-size: 14px;
    }
}


.btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.btn-close::before,
.btn-close::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 2px;
    background: #666;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.btn-close::before {
    transform: rotate(45deg);
}

.btn-close::after {
    transform: rotate(-45deg);
}

/* 鼠标悬停效果 */
.btn-close:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.1);
}

.btn-close:hover::before,
.btn-close:hover::after {
    background: #333;
    transform: rotate(0deg);
}

.btn-close:hover::before {
    transform: translateX(-2px);
}

.btn-close:hover::after {
    transform: translateX(2px);
}

/* 点击效果 */
.btn-close:active {
    transform: scale(0.95);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* 聚焦状态 */
.btn-close:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.btn-close:focus::before,
.btn-close:focus::after {
    background: #000;
}

/* 禁用状态 */
.btn-close:disabled {
    background: rgba(245, 245, 245, 0.7);
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.btn-close:disabled::before,
.btn-close:disabled::after {
    background: #ccc;
}

/* 小尺寸版本 */
.btn-close-sm {
    width: 24px;
    height: 24px;
}

.btn-close-sm::before,
.btn-close-sm::after {
    width: 12px;
}

/* 大尺寸版本 */
.btn-close-lg {
    width: 40px;
    height: 40px;
}

.btn-close-lg::before,
.btn-close-lg::after {
    width: 20px;
}

/* 深色背景适配 */
.dark-modal .btn-close {
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.dark-modal .btn-close::before,
.dark-modal .btn-close::after {
    background: rgba(255, 255, 255, 0.8);
}

.dark-modal .btn-close:hover {
    background: rgba(0, 0, 0, 0.9);
}

.dark-modal .btn-close:hover::before,
.dark-modal .btn-close:hover::after {
    background: #fff;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .btn-close {
        width: 28px;
        height: 28px;
        top: 10px;
        right: 10px;
    }

    .btn-close::before,
    .btn-close::after {
        width: 14px;
    }
}




/* 底部样式 */
.FOOT-footer {
    background-color: rgba(18,18,24,.85);
    color: #999;
    width: 100%;
    padding: 20px 0;
    font-size: 11px;
    line-height: 3px;
}

.FOOT-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.FOOT-logo {
    flex: 0 0 auto;
    margin-right: 20px;
}

.FOOT-logo img {
    max-width: 300px;
    height: auto;
    filter: brightness(0.9);
    transition: filter 0.3s;
}

.FOOT-logo img:hover {
    filter: brightness(1);
}

.FOOT-content {
    flex: 1;
    text-align: right;
}

.FOOT-notice {
    margin-bottom: 10px;
    line-height: 1.5;
}

.FOOT-links {
    margin-bottom: 10px;
    line-height: 1.5;
}

.FOOT-links a {
    color: #ccc;
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.3s;
}

.FOOT-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.FOOT-copyright {
    line-height: 1.5;
    margin-top: 5px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .FOOT-container {
        flex-direction: column;
        text-align: center;
    }

    .FOOT-logo {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .FOOT-content {
        text-align: center;
    }
}

/* 右侧导航样式 */
.NAVRIGHT-navbar {
    position: fixed;
    right: 0;
    top: 0;
    width: 50px;
    height: 100vh;
    background: linear-gradient(to top, rgb(166, 135, 91) 6%, rgb(209, 191, 143) 77%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1000;
    transition: all 0.3s ease;
}

.NAVRIGHT-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
}

.NAVRIGHT-item {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 30px 0;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.NAVRIGHT-item a {
    color: white;
}

.NAVRIGHT-item:last-child {
    border-bottom: none;
}

.NAVRIGHT-item i {
    font-size: 20px;
}

.NAVRIGHT-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* 菜单文字效果 - 仅应用于中间菜单项 */
.NAVRIGHT-middle .NAVRIGHT-text {
    position: absolute;
    left: -100px;
    top: 0;
    height: 100%;
    width: 100px;
    background: linear-gradient(to top, rgb(166, 135, 91) 6%, rgb(209, 191, 143) 77%);
    color: white;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
    border-radius: 4px 0px 0px 4px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    line-height: 60px;
}

.NAVRIGHT-middle:hover .NAVRIGHT-text {
    left: -100px;
    opacity: 1;
}

/* 客服二维码容器 */
.NAVRIGHT-qrcode-container {
    position: absolute;
    left: -170px;
    top: 50%;
    transform: translateY(-50%);
    width: 160px;
    height: 160px;
    background: linear-gradient(to top, rgb(166, 135, 91) 6%, rgb(209, 191, 143) 77%);
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.NAVRIGHT-qrcode-container::before {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 10px 0 10px 10px;
    border-style: solid;
    border-color: transparent transparent transparent rgb(209, 191, 143);
}

.NAVRIGHT-qrcode {
    width: 140px;
    height: 140px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 5px;
    background-color: white;
}

.NAVRIGHT-qrcode img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.NAVRIGHT-service:hover .NAVRIGHT-qrcode-container {
    left: -170px;
    opacity: 1;
}

/* 兑换模态框 */
.DUIHUAN-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.DUIHUAN-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* 模态框主体 */
.DUIHUAN-modal {
    width: 500px;
    background-color: #e3dcd2;
    border: 1px solid #d6b26b;
    border-radius: 5px;
    overflow: hidden;
    transform: translateY(-50px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.DUIHUAN-modal-overlay.active .DUIHUAN-modal {
    transform: translateY(0);
}

/* 标题栏 */
.DUIHUAN-modal-header {
    padding: 15px 20px;
    background: linear-gradient(90deg, #2c120b, #7f291d);
    color: white;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    min-height: 60px;
}

/* 关闭按钮 - 更新为字体图标 */
.DUIHUAN-modal-close {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background-color: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    border-radius: 50%;
}

.DUIHUAN-modal-close:hover {
    background-color: rgba(255, 0, 0, 0.3);
    transform: translateY(-50%) rotate(90deg);
}

.DUIHUAN-modal-close:active {
    background-color: rgba(255, 0, 0, 0.5);
    transform: translateY(-50%) rotate(90deg) scale(0.9);
}

/* 内容区域 */
.DUIHUAN-modal-body {
    padding: 20px;
}

/* 兑换说明 */
.DUIHUAN-notice {
    padding: 10px 15px;
    margin-bottom: 20px;
    color: #856404;
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    border-radius: 4px;
    font-size: 14px;
}

/* 表单样式 */
.DUIHUAN-form-group {
    margin-bottom: 20px;
}

.DUIHUAN-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.DUIHUAN-form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #d6b26b;
    border-radius: 4px;
    font-size: 14px;
    background-color: white;
}

select.DUIHUAN-form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

/* 提交按钮 */
.DUIHUAN-submit-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #e52e71;
    color: white;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.DUIHUAN-submit-btn:hover {
    background-color: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.status {
    margin: 20px 0;
    padding: 15px;
    border-radius: 8px;
    display: none;
}

.loading {
    text-align: center;
    /* background: #d1ecf1; */
    color: #000;
    /* border: 1px solid #bee5eb; */
    background: -webkit-linear-gradient(180deg, #feeeb8, #ffd386);
}

.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    text-align: center;
}

.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    text-align: center;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, .5);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


.PAGE-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0px 20px;
}

.PAGE-header {
    margin-bottom: 50px;
    text-align: center;
}

.PAGE-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.PAGE-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

.PAGE-card {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    border: none;
    overflow: hidden;
    background-color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.PAGE-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.PAGE-card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 20px 30px;
    font-weight: 600;
    font-size: 1.3rem;
    border-bottom: none;
}

.PAGE-card-body {
    padding: 30px;
}

.PAGE-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.PAGE-section-title:before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    height: 70%;
    width: 5px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

/* 修改后的规则列表样式 - 一行两列 */
.PAGE-rules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.PAGE-rule-item {
    background: rgba(74, 107, 223, 0.05);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 107, 223, 0.1);
}

.PAGE-rule-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background: rgba(74, 107, 223, 0.1);
}

.PAGE-rule-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(74, 107, 223, 0.2), rgba(108, 92, 231, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.PAGE-rule-content {
    flex: 1;
}

.PAGE-rule-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* 修改后的奖励列表样式 - 一行两列圆形界面 */
.PAGE-rewards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.PAGE-reward-item {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.PAGE-reward-item.highlight {
    border: 2px solid var(--reward-color);
}

.PAGE-reward-item.highlight:before {
    content: '热门';
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: var(--reward-color);
    color: white;
    padding: 3px 35px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
}

.PAGE-reward-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 159, 67, 0.1));
    color: var(--reward-color);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.PAGE-reward-item:hover .PAGE-reward-circle {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.2);
}

.PAGE-reward-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.PAGE-reward-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.PAGE-reward-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--reward-color);
}

.PAGE-cta-container {
    text-align: center;
    margin-top: 50px;
}

.PAGE-cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(74, 107, 223, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.PAGE-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(74, 107, 223, 0.4);
    color: white;
}

.PAGE-cta-button i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.PAGE-stats-container {
    display: flex;
    justify-content: space-around;
    margin: 40px 0;
    flex-wrap: wrap;
}

.PAGE-stat-item {
    text-align: center;
    padding: 20px;
    min-width: 200px;
}

.PAGE-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.PAGE-stat-label {
    font-size: 1rem;
    color: var(--text-light);
}


.NEWS-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: var(--bg-light);
}

.NEWS-header {
    margin-bottom: 50px;
    text-align: center;
}

.NEWS-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.NEWS-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

.NEWS-card {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border: none;
    overflow: hidden;
    background-color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.NEWS-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.NEWS-tabs-container {
    display: flex;
    justify-content: center;
    margin: 40px 0;
    /* 增加上下间距 */
    gap: 15px;
}

.NEWS-tab {
    padding: 12px 30px;
    border-radius: 30px;
    background-color: white;
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.NEWS-tab:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.NEWS-tab.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
}

.NEWS-list-container {
    padding: 20px;
}

.NEWS-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.NEWS-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.NEWS-item-header {
    padding: 18px 25px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.NEWS-item-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.NEWS-item-date {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-left: 15px;
}

.NEWS-item-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(74, 107, 223, 0.1);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.NEWS-item.active .NEWS-item-toggle {
    transform: rotate(180deg);
}

.NEWS-item-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: rgba(248, 249, 250, 0.5);
}

.NEWS-item.active .NEWS-item-content {
    padding: 20px 25px;
    max-height: 1000px;
}

.NEWS-item-text {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 15px;
}

.NEWS-item-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.NEWS-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.NEWS-item-source {
    font-size: 0.9rem;
    color: var(--text-light);
}

.NEWS-item-readmore {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.NEWS-item-readmore:hover {
    color: var(--secondary-color);
}




.PAGE-card {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border: none;
    overflow: hidden;
    background-color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.PAGE-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.PAGE-card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 18px 25px;
    font-weight: 500;
    font-size: 1.2rem;
    border-bottom: none;
}

.PAGE-table {
    margin-bottom: 0;
    border: none;
}

.PAGE-table thead th {
    background-color: white;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    padding: 16px 25px;
    font-size: 0.95rem;
    text-align: center;
    /* 表头居中 */
}

.PAGE-table tbody td {
    padding: 16px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    color: var(--text-dark);
    vertical-align: middle;
    text-align: center;
    /* 表格内容居中 */
}

.PAGE-table tbody tr:last-child td {
    border-bottom: none;
}

.PAGE-table tbody tr:hover td {
    background-color: rgba(74, 107, 223, 0.03);
}

.PAGE-badge {
    font-size: 0.9rem;
    padding: 7px 14px;
    border-radius: 20px;
    font-weight: 500;
    display: inline-block;
    /* 确保徽章也能居中 */
}

.PAGE-level-badge {
    background-color: rgba(74, 107, 223, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(74, 107, 223, 0.2);
}

.PAGE-points-badge {
    background-color: rgba(0, 206, 201, 0.1);
    color: #00a8a4;
    border: 1px solid rgba(0, 206, 201, 0.2);
}

.PAGE-diamond-badge {
    background-color: rgba(255, 193, 7, 0.1);
    color: #d4a100;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.PAGE-upgrade-badge {
    background-color: rgba(108, 92, 231, 0.1);
    color: var(--secondary-color);
    border: 1px solid rgba(108, 92, 231, 0.2);
}

.PAGE-icon {
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.PAGE-gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.PAGE-method-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.PAGE-method-item:last-child {
    border-bottom: none;
}

.PAGE-method-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(74, 107, 223, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.PAGE-method-content {
    flex: 1;
}

.PAGE-method-title {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.PAGE-method-desc {
    font-size: 0.9rem;
    color: var(--text-light);
}

.PAGE-method-points {
    font-weight: 600;
    color: var(--primary-color);
}

.CJ-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    overflow: hidden;
}

.CJ-modal-overlay.CJ-active {
    opacity: 1;
    visibility: visible;
}

#CJ-CHOUJIANGMODAL {
    background: white;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    min-height: 90vh;
    overflow: hidden;

}

.CJ-modal-header {
    background: red;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.CJ-modal-title {
    font-size: 1.2rem;
    font-weight: bold;
}

.CJ-close-btn {
    background: none;
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.CJ-modal-content {
    height: 90vh;
}

.CJ-modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.GAMELIST-game-tags-container {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.GAMELIST-game-tag-new {
    padding: 3px 5px;
    font-size: 12px;
    color: #f4f4f4;
    border-radius: 2px;
    background-color: #ff6600;
    white-space: nowrap;
}

.tag-blue {
    background-color: #3498db;
}

.tag-green {
    background-color: #2ecc71;
}

.tag-purple {
    background-color: #9b59b6;
}

.TU4USER-card {
    min-width: 300px;
    width: 450px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: 'Microsoft YaHei', sans-serif;
    display: flex;
    flex-direction: column;
    position: relative;
    max-height: 150px;
    margin-top: 57px;
}





.TU4USER-card-header {
    background: linear-gradient(45deg, #cc0015, #ff4d4d);
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.TU4USER-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.TU4USER-member-info {
    flex: 1;
}

.TU4USER-member-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.TU4USER-member-id {
    font-size: 14px;
    opacity: 0.9;
}

.TU4USER-card-body {
    padding: 5px 15px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.TU4USER-stats-row {
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
}

.TU4USER-stat-item {
    text-align: center;
    flex: 1;
    position: relative;
}

.TU4USER-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #ddd, transparent);
}

.TU4USER-stat-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.TU4USER-stat-value {
    font-size: 18px;
    font-weight: 400;
    background: linear-gradient(45deg, #cc0015, #ff4d4d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.TU4USER-btn-member {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 15px;
    background: white;
    color: #e74c3c;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.TU4USER-btn-member:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
}

.TU4USER-login-prompt {
    margin-bottom: 25px;
}

.TU4USER-login-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

.TU4USER-login-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.TU4USER-btn-login {
    padding: 12px 30px;
    background: linear-gradient(45deg, #cc0015, #ff4d4d);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 8px rgba(231, 76, 60, 0.3);
}

.TU4USER-btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(231, 76, 60, 0.4);
}


.KF-container {
    display: flex;
    gap: 40px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

.KF-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    width: 40%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.KF-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.KF-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    text-align: center;
}

.KF-avatar {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff7b54, #ff5e62);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.KF-avatar::before {
    content: "";
    width: 40px;
    height: 40px;
    background: white;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    transform: translateY(5px);
}

.KF-status {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid white;
    bottom: 5px;
    right: 5px;
}

.KF-status-online {
    background-color: #4cd964;
}

.KF-status-offline {
    background-color: #dddddd;
}

.KF-name {
    font-size: 18px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.KF-role {
    font-size: 14px;
    color: #4a90e2;
    margin-bottom: 8px;
}

.KF-time {
    font-size: 13px;
    color: #666;
}

.KF-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.KF-qrcode {
    width: 150px;
    height: 150px;
    background: #f0f0f0;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    position: relative;
}




.KF-qrtext {
    font-size: 13px;
    color: #666;
}

.KF-qqbtn {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 250px;
    justify-content: center;
    margin-top: 10px;
}

.KF-qqbtn:hover {
    background: linear-gradient(135deg, #5a9ce2, #468acd);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.KF-qqbtn:active {
    transform: translateY(0);
}

.KF-qqicon {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 4px;
    position: relative;
}

.KF-qqicon::before {
    content: "Q";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #4a90e2;
    font-weight: bold;
    font-size: 12px;
}

@media (max-width: 768px) {
    .KF-container {
        flex-direction: column;
        align-items: center;
    }

    .KF-card {
        max-width: 100%;
    }
}


.TGHOME-container {
    max-width: 1600px;
    width: 100%;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0;
    margin: 20px auto;
    overflow: hidden;
}

.TGHOME-header {
    background: linear-gradient(45deg, #cc0015, #ff4d4d);
    color: white;
    text-align: center;
    padding: 30px;
    font-size: 28px;
    font-weight: bold;
}

.TGHOME-content {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}

.TGHOME-main-content {
    flex: 3;
    min-width: 300px;
}

.TGHOME-sidebar {
    flex: 1;
    min-width: 250px;
    background: #f9f9f9;
    padding: 25px;
    border-left: 1px solid #eee;
}

.TGHOME-section {
    padding: 30px;
    border-bottom: 1px solid #eee;
}

.TGHOME-section:last-child {
    border-bottom: none;
}

.TGHOME-section-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #cc0015;
}

.TGHOME-btn-primary {
    background: linear-gradient(45deg, #cc0015, #ff4d4d);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: block;
    margin: 20px auto;
    box-shadow: 0 3px 10px rgba(204, 0, 21, 0.3);
    transition: all 0.3s ease;
    max-width: 300px;
    text-align: center;
}

.TGHOME-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(204, 0, 21, 0.4);
}

.TGHOME-benefits {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    gap: 20px;
}

.TGHOME-benefit-item {
    flex: 1;
    text-align: center;
    padding: 25px 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.TGHOME-benefit-item:hover {
    transform: translateY(-5px);
}

.TGHOME-benefit-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #666;
}

.TGHOME-benefit-value {
    font-size: 32px;
    font-weight: bold;
    color: #cc0015;
    padding: 10px;
    border-radius: 6px;
    background: rgba(204, 0, 21, 0.05);
}

.TGHOME-benefit-unit {
    font-size: 16px;
    color: #666;
    margin-left: 5px;
}

.TGHOME-commission {
    text-align: center;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.TGHOME-commission-value {
    font-size: 42px;
    font-weight: bold;
    color: #cc0015;
    margin: 15px 0;
    padding: 15px 25px;
    border-radius: 8px;
    background: rgba(204, 0, 21, 0.05);
    display: inline-block;
}

.TGHOME-commission-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-top: 10px;
}

.TGHOME-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 15px;
}

.TGHOME-step {
    flex: 1;
    text-align: center;
    padding: 25px 15px;
    position: relative;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.TGHOME-step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #cc0015, #ff4d4d);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    margin: 0 auto 15px;
}

.TGHOME-step-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.TGHOME-step-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

.TGHOME-text {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: center;
}

.TGHOME-text-bold {
    font-weight: bold;
    color: #cc0015;
}

.TGHOME-sidebar-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #cc0015;
    text-align: center;
}

.TGHOME-sidebar-item {
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.TGHOME-sidebar-item-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
    display: flex;
    align-items: center;
}

.TGHOME-sidebar-item-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #cc0015, #ff4d4d);
    border-radius: 50%;
    color: white;
    font-size: 12px;
}

.TGHOME-sidebar-item-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .TGHOME-content {
        flex-direction: column;
    }

    .TGHOME-sidebar {
        border-left: none;
        border-top: 1px solid #eee;
    }
}

@media (max-width: 768px) {
    .TGHOME-benefits {
        flex-direction: column;
    }

    .TGHOME-benefit-item {
        margin: 10px 0;
    }

    .TGHOME-steps {
        flex-direction: column;
    }

    .TGHOME-step {
        margin-bottom: 20px;
    }

    .TGHOME-header {
        font-size: 24px;
        padding: 20px;
    }

    .TGHOME-section {
        padding: 20px;
    }
}

.LEVELUPS-container {
    max-width: 1600px;
    width: 100%;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    padding: 0;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.LEVELUPS-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #495057;
    text-align: center;
    padding: 50px 40px;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 1px;
    border-bottom: 1px solid #dee2e6;
}

.LEVELUPS-header i {
    color: #cc0015;
    margin-right: 15px;
}

.LEVELUPS-table-container {
    overflow-x: auto;
    padding: 50px;
}

.LEVELUPS-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 16px;
    text-align: center;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.LEVELUPS-table th {
    background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
    color: #495057;
    padding: 20px 16px;
    font-weight: 600;
    font-size: 17px;
    border-bottom: 2px solid #dee2e6;
}

.LEVELUPS-table td {
    padding: 18px 16px;
    border-bottom: 1px solid #f1f3f4;
    background: white;
    transition: all 0.2s ease;
}

.LEVELUPS-table tr:last-child td {
    border-bottom: none;
}

.LEVELUPS-table tr:hover td {
    background: #f8f9fa;
}

.LEVELUPS-level {
    font-weight: 600;
    color: #cc0015;
    font-size: 18px;
}

.LEVELUPS-level-name {
    font-weight: 500;
    color: #495057;
    font-size: 16px;
}

.LEVELUPS-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    font-weight: 600;
    background: linear-gradient(135deg, #cc0015, #ff4d4d);
    box-shadow: 0 2px 8px rgba(204, 0, 21, 0.2);
}

.LEVELUPS-value {
    font-weight: 500;
    color: #495057;
    font-size: 16px;
}

.LEVELUPS-check {
    color: #28a745;
    font-size: 18px;
    font-weight: 600;
}

.LEVELUPS-percentage {
    color: #cc0015;
    font-weight: 600;
    font-size: 16px;
}

.LEVELUPS-multiplier {
    color: #cc0015;
    font-weight: 600;
    font-size: 16px;
}

.LEVELUPS-features {
    display: flex;
    justify-content: space-around;
    padding: 40px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    gap: 30px;
}

.LEVELUPS-feature {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    flex: 1;
    max-width: 300px;
}

.LEVELUPS-feature-icon {
    font-size: 32px;
    color: #cc0015;
    margin-bottom: 15px;
}

.LEVELUPS-feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 10px;
}

.LEVELUPS-feature-desc {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5;
}

.LEVELUPS-footer {
    padding: 30px;
    text-align: center;
    color: #6c757d;
    font-size: 14px;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}

.LEVELUPS-footer i {
    margin-right: 8px;
    color: #cc0015;
}

@media (max-width: 1200px) {
    .LEVELUPS-table-container {
        padding: 40px 30px;
    }

    .LEVELUPS-table {
        font-size: 15px;
    }

    .LEVELUPS-table th,
    .LEVELUPS-table td {
        padding: 16px 12px;
    }

    .LEVELUPS-header {
        font-size: 28px;
        padding: 40px 30px;
    }

    .LEVELUPS-features {
        padding: 30px;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 20px 15px;
    }

    .LEVELUPS-table-container {
        padding: 30px 20px;
    }

    .LEVELUPS-table {
        font-size: 14px;
    }

    .LEVELUPS-table th,
    .LEVELUPS-table td {
        padding: 14px 10px;
    }

    .LEVELUPS-header {
        font-size: 24px;
        padding: 30px 20px;
    }

    .LEVELUPS-features {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
    }

    .LEVELUPS-feature {
        max-width: 100%;
    }

    .LEVELUPS-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .LEVELUPS-table-container {
        padding: 20px 15px;
    }

    .LEVELUPS-table {
        font-size: 13px;
    }

    .LEVELUPS-table th,
    .LEVELUPS-table td {
        padding: 12px 8px;
    }

    .LEVELUPS-header {
        font-size: 20px;
        padding: 25px 15px;
    }
}

.NEWSPAGES-container {
    max-width: 1600px;
    width: 100%;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    padding: 0;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.NEWSPAGES-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #495057;
    text-align: center;
    padding: 50px 40px;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 1px;
    border-bottom: 1px solid #dee2e6;
}

.NEWSPAGES-header i {
    color: #cc0015;
    margin-right: 15px;
}

.NEWSPAGES-tabs {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 0 40px;
}

.NEWSPAGES-tab {
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
}

.NEWSPAGES-tab.active {
    color: #cc0015;
    border-bottom-color: #cc0015;
    background: white;
}

.NEWSPAGES-tab:hover {
    color: #cc0015;
    background: rgba(204, 0, 21, 0.05);
}

.NEWSPAGES-content {
    padding: 40px;
}

.NEWSPAGES-tab-content {
    display: none;
}

.NEWSPAGES-tab-content.active {
    display: block;
}

.NEWSPAGES-news-list {
    max-width: 1200px;
    margin: 0 auto;
}

.NEWSPAGES-news-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    border: 1px solid #f1f3f4;
    overflow: hidden;
    transition: all 0.3s ease;
}

.NEWSPAGES-news-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.NEWSPAGES-news-header {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: white;
}

.NEWSPAGES-news-title {
    font-size: 18px;
    font-weight: 600;
    color: #495057;
    flex: 1;
    margin-right: 20px;
}

.NEWSPAGES-news-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cc0015;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.NEWSPAGES-news-item.active .NEWSPAGES-news-icon {
    transform: rotate(180deg);
}

.NEWSPAGES-news-content {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #f8f9fa;
}

.NEWSPAGES-news-item.active .NEWSPAGES-news-content {
    padding: 30px;
    max-height: 500px;
}

.NEWSPAGES-news-text {
    color: #6c757d;
    line-height: 1.8;
    font-size: 15px;
}

.NEWSPAGES-news-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    color: #adb5bd;
    font-size: 14px;
}

.NEWSPAGES-footer {
    padding: 30px;
    text-align: center;
    color: #6c757d;
    font-size: 14px;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}

.NEWSPAGES-load-more {
    background: linear-gradient(45deg, #cc0015, #ff4d4d);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(204, 0, 21, 0.3);
}

.NEWSPAGES-load-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(204, 0, 21, 0.4);
}

@media (max-width: 1200px) {
    .NEWSPAGES-content {
        padding: 30px;
    }

    .NEWSPAGES-tabs {
        padding: 0 30px;
    }

    .NEWSPAGES-tab {
        padding: 18px 30px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 20px 15px;
    }

    .NEWSPAGES-header {
        font-size: 24px;
        padding: 30px 20px;
    }

    .NEWSPAGES-content {
        padding: 20px;
    }

    .NEWSPAGES-tabs {
        padding: 0 20px;
        flex-direction: column;
    }

    .NEWSPAGES-tab {
        padding: 15px 20px;
        border-bottom: 1px solid #dee2e6;
        border-left: 3px solid transparent;
    }

    .NEWSPAGES-tab.active {
        border-left-color: #cc0015;
        border-bottom-color: #dee2e6;
    }

    .NEWSPAGES-news-header {
        padding: 20px;
    }

    .NEWSPAGES-news-title {
        font-size: 16px;
    }

    .NEWSPAGES-news-item.active .NEWSPAGES-news-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .NEWSPAGES-header {
        font-size: 20px;
        padding: 25px 15px;
    }

    .NEWSPAGES-content {
        padding: 15px;
    }

    .NEWSPAGES-news-header {
        padding: 15px;
    }

    .NEWSPAGES-news-title {
        font-size: 15px;
    }
}