
.app-black {
    background-color: #151517;
}

/* 修复导航栏水平滚动条问题 */
body,html {
    overflow: visible;
}


.global-navigation {
    overflow: visible;
}

.games-menu-container {
    position: relative;
}

.games-dropdown-panel {
    background: transparent !important;
}

.global-navigation {
    background-color: #212224;
    position: sticky;
    top: 0;
    z-index: 9999;
}


/* 空白区域 */
.blank-area {
    position: fixed;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

/* 响应式菜单宽度 */
@media (max-width: 375px) {
    .mobile-menu {
        width: 100%;
    }
}

/* 菜单内容区域 */
.sidebar-content {
    margin: 20px 0;
    overflow-y: auto;
}

/* 菜单内容区域底部留白 */
.sidebar-content {
    margin-bottom: 154px;
}

/* 游戏筛选按钮 */
.games-filter-btn {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 8px 12px;
}

.games-filter-btn:hover {
    background-color: #3a3a3a !important;
}

.filter-btn-text {
    font-size: 12px;
}

.games-filter-btn.all.active {
    background-color: #a83df0 !important;
    color: white !important;
}

.icon-btn-all {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.games-filter-btn.windows {
    background-color: #a83df0 !important;
    color: white !important;
}

.icon-ext-windows {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.icon-apple {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.icon-ext-xbox {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.icon-psn {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.icon-ios {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.icon-android {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

/* 游戏列表项 */
.games-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.games-list a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none;
    color: white;
    transition: background-color 0.2s ease;
}

.games-list a:hover {
    background-color: #303134;
}

.icon {
    width: 44px;
    height: 44px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 15px;
    border-radius: 4px;
}

.game-title {
    font-size: 14px;
    font-weight: 500;
}

.new-game {
    color: #a83df0;
    font-size: 12px;
    margin-left: 5px;
}

.platform-icons {
    display: flex;
    margin-top: 5px;
}

.platform-icon {
    margin-right: 8px;
}

.platform-icon img {
    width: 16px;
    height: 16px;
}

.platform-icon i {
    width: 16px;
    height: 16px;
    font-size: 16px;
    margin-right: 4px;
}

/* 游戏列表区域 */
.games-section {
    flex: 1;
    overflow-y: auto;
}

.games-list-section {
    list-style: none;
    padding: 0;
    margin: 0;
}

.games-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.game-title-section {
    margin-bottom: 5px;
}

.text-uppercase {
    text-transform: uppercase;
}

/* 子侧边栏 */
.sub-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-color: #212224;
    z-index: 10001;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.sub-sidebar.active {
    transform: translateX(0);
}

.sub-sidebar .mobile-menu {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sub-sidebar-top {
    width: 100%;
    height: 60px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.7);
    position: relative;
}

.sub-sidebar-top .back {
    position: absolute;
    top: 12px;
    left: 20px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    width: 37px;
    height: 37px;
    border-radius: 25px;
}

.category-title-container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.sub-sidebar-top .close {
    position: absolute;
    top: 11px;
    right: 20px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    width: 37px;
    height: 37px;
    border-radius: 25px;
}

.sub-sidebar-top .back:hover,
.sub-sidebar-top .close:hover {
    opacity: 1;
    cursor: pointer;
    background-color: #2c2d31;
}

.sub-sidebar-top .back:active,
.sub-sidebar-top .close:active {
    opacity: 0.5;
}

.sub-sidebar-content {
    height: calc(100% - 60px);
    display: flex;
    flex-direction: column;
}

nav ul li {
    position: relative;
}

/* 下拉菜单样式 */
.games-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    min-width: 320px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.games-list-content {
    position: relative !important;
    overflow: hidden;
}

.games-section {
    overflow-y: auto;
    overflow-x: hidden;
}

/* 修复游戏列表项在下拉菜单中的显示 */
.games-list-section {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.5rem;
    padding: 0;
    margin: 0;
}

.games-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 移动端菜单样式 */
.mobile-menu {
    height: 100%;
}

.sidebar-btns {
    border-left: 3px solid transparent;
    width: 100%;
    height: 54px;
    transition: 0.2s ease;
}

.sidebar-btns:hover {
    border-left: 3px solid #a83df0;
    background-color: #303134;
}

.sidebar-btn {
    display: flex;
    align-items: center;
    padding: 10px 30px;
}

.games, .shop, .support, .pressroom {
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.games .mdi-chevron-right {
    margin-left: auto;
    width: 12px;
    height: 12px;
}

.divider {
    margin: 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-account-content {
    margin-top: 20px;
}

.sidebar-account-btns .sidebar-account-profile {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.sidebar-account-btns .sidebar-account-profile.login {
    justify-content: flex-end;
}

.profile-btn-group.login {
    margin-right: 10px;
}

.profile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 26px;
    border-radius: 5px;
    border: solid 1px #959696;
    cursor: pointer;
    font-size: 11px;
    color: #959696;
    transition: 0.2s ease;
}

.profile-btn:hover {
    color: rgba(255, 255, 255, 1);
    border: solid 1px rgba(255, 255, 255, 1);
}

.profile-btn:active {
    opacity: 0.5;
}

.profile-btn.logout, .profile-btn.login, .profile-btn.create-account {
    padding: 0px 10px;
}

/* 下载启动器样式 */
.download-launcher {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 154px;
    background-color: #171719;
    padding: 26px 21px 20px 21px;
    font-family: Arial;
    font-size: 14px;
}

.download-launcher-title {
    font-weight: bold;
    color: #a9a9ab;
    line-height: 1;
    margin-bottom: 9px;
}

.download-launcher-subtitle {
    color: #5b5b5c;
    line-height: 1;
    margin-bottom: 17px;
}

.btn-home {
    width: 332px;
    height: 45px;
}

.btn-home span {
    display: inline-block;
    margin-top: 8px;
}

.btn-home .mdi-download {
    width: 17px;
    height: 23px;
    margin-right: 10px;
    margin-bottom: 2px;
    vertical-align: middle;
}

.btn-home {
    color: #fff;
    background-color: #a83df0;
    background-size: 0 100%;
    border: none;
    border-radius: 5px;
    padding: 10px 30px;
    transition: background-color 0.5s;
}

.btn-home:hover {
    background-color: #a83df0;
    background: linear-gradient(90deg, rgba(168, 61, 240, 1) 0%, rgba(46, 199, 230, 1) 50%, rgba(168, 61, 240, 1) 100%);
    background-repeat: no-repeat;
    background-size: 200% 100%;
    transition: background-size 1s, background-color 3s;
}

.btn-home:active {
    opacity: 0.3;
    transition: background-size 0s;
}

.games-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.game-details-link {
    display: flex;
    align-items: flex-start;
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.3s;
    color: inherit;
}

.game-details-link:hover {
    background-color: #2a2c2f;
}

.icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.25rem;
    background-size: cover;
    background-position: center;
    margin-right: 0.75rem;
}

.game-title {
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.new-game {
    color: #2ec7e6;
    font-size: 0.75rem;
    font-weight: bold;
    margin-left: 0.5rem;
    text-transform: uppercase;
}

.platform-icons {
    display: flex;
    gap: 0.25rem;
}

.platform-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 确保下拉菜单内容不会导致页面滚动 */
.games-dropdown-panel {
    max-width: 100vw;
    overflow-x: hidden;
}

/* 确保下拉菜单内容不会导致页面滚动 */
.games-list {
    max-width: 100vw;
    width: 100vw;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
}

.games-list-content {
    max-width: 100%;
    overflow: hidden;
}

/* 隐藏滚动条但保持滚动功能 */
.games-section::-webkit-scrollbar {
    width: 6px;
}

.games-section::-webkit-scrollbar-track {
    background: #151517;
}

.games-section::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 3px;
}

.games-section::-webkit-scrollbar-thumb:hover {
    background: #666;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    min-width: 160px;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 0.875rem;
    color: #fff;
    text-align: left;
    list-style: none;
    background-color: #212224;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
}

.dropdown-menu.show {
    display: block;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #fff;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: #fff;
    text-decoration: none;
    background-color: #495057;
}

.dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #a83df0;
}

/* 游戏列表容器宽度 */
.game-list-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 548px) {
    .game-list-container {
        width: 507px;
        padding: 0;
    }
}

@media (min-width: 768px) {
    .game-list-container {
        width: 100%;
        padding: 0 40px;
    }
}

@media (min-width: 1280px) {
    .game-list-container {
        width: 961px;
        padding: 0;
    }
}

@media (min-width: 1440px) {
    .game-list-container {
        width: 1080px;
    }
}

@media (min-width: 1600px) {
    .game-list-container {
        width: 1200px;
    }
}

@media (min-width: 1920px) {
    .game-list-container {
        width: 1440px;
    }
}

/* 下拉菜单中的导航栏样式 */
.games-dropdown-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
}

/* Nexon-style navigation styles */
.global-navigation {
    background-color: #212224;
    height: 56px;
    min-width: 375px;
    padding: 0 17px 0 24px !important;
    box-shadow: 0px 2px 7px 0 rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
}

.nav-games-list, .nav-support {
    display: flex;
    align-items: center;
    height: 56px;
    padding: 3px 10px 0 10px;
    border-bottom: 3px solid transparent;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.75rem; /* 调小文字 */
}

.nav-games-list:hover, .nav-support:hover {
    color: rgba(255, 255, 255, 1);
    border-bottom: 3px solid #a83df0;
}

.nav-games-list.active {
    color: rgba(255, 255, 255, 1);
    border-bottom: 3px solid #a83df0;
}

.icon-btn-down {
    width: 11px;
    height: 5px;
    margin-left: 10px;
    margin-top: -1px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 5'%3E%3Cpath fill='%23FFF' d='M5.5 3.5L0 0v1l5.5 3.5L11 1V0z'/%3E%3C/svg%3E") no-repeat;
    background-size: contain;
}

.icon-btn-down.active {
    opacity: 1;
    transform: rotate(180deg);
}

.games-list {
    position: fixed;
    top: 56px;
    right: 0;
    bottom: 0;
    width: 100%;
    min-width: 320px;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 9999;
}

.games-list-content {
    height: calc(100% - 60px);
}

.close {
    position: absolute;
    top: 15px;
    right: 30px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    width: 37px;
    height: 37px;
    border-radius: 25px;
}

.close:hover {
    opacity: 1;
    background-color: #2c2d31;
}

.close:active {
    opacity: 0.5;
}

.games-filter-section {
    width: 100%;
    height: 77px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.games-filter-btn .filter-btn-text {
    display: none;
}

.games-filter-btn:hover {
    opacity: 1;
    cursor: pointer;
}

.games-filter-btn:active {
    opacity: 0.5;
}

.games-filter-btn.active {
    opacity: 1;
    border: solid 1px transparent;
    background-color: #a83df0;
    transition: all 0.2s ease;
}

.games-filter-btn.active:hover {
    background-color: #2ec7e6;
}

.games-filter-btn.active:active {
    opacity: 0.5;
}

.game-details-link {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.2s ease;
    text-decoration: none;
}

.game-details-link:hover {
    background-color: #303134;
    text-decoration: none;
}

.games-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    min-width: 320px;
    min-height: 500px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 9999;
    background: #191a1c;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.games-list-content {
    padding: 0;
}

.games-section {
    max-height: calc(100vh - 160px);
    overflow-y: auto;
    width: 100%;
}

.icon {
    background-size: cover;
    background-position: center;
}

.game-details-link:hover {
    background-color: #303134;
}

.game-title {
    font-weight: bold;
}

.new-game {
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.platform-icons {
    display: flex;
    gap: 0.25rem;
    margin-top: 0.25rem;
}

.platform-icon {
    width: 16px;
    height: 16px;
}

.btn-buy-nx {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    color: #fff;
    background-color: #a83df0;
    background-size: 0 100%;
    border: none;
    height: 32px;
    padding: 9px 14px;
    border-radius: 5px;
    transition: background-color 0.5s;
}

.btn-buy-nx:hover {
    background-color: #a83df0;
    background: linear-gradient(90deg, rgba(168, 61, 240, 1) 0%, rgba(46, 199, 230, 1) 50%, rgba(168, 61, 240, 1) 100%);
    background-repeat: no-repeat;
    background-size: 200% 100%;
    transition: background-size 1s, background-color 3s;
}

.nav-account {
    height: 11px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s ease;
}

.nav-account:hover {
    color: rgba(255, 255, 255, 1);
}

.nav-account:active {
    opacity: 0.4;
}

.nav-toggle {
    display: none;
}

/* Media queries for desktop */
@media (min-width: 1024px) {
    .games-filter-section {
        height: 88px;
        margin-bottom: -10px;
    }

    .games-filter-btn {
        width: auto;
        padding: 0px 10px;
        margin: 5px;
    }

    .games-filter-btn .filter-btn-text {
        display: block;
        margin-left: 6px;
    }

    .nav-games-list, .nav-support {
        margin-left: 20px;
    }

    .nav-games-list {
        margin-left: 40px;
    }

    .nav-add-balance {
        margin-right: 50px;
    }
}

/* Slide transition animations */
.slide-enter-active, .slide-leave-active {
    transition: all 0.3s ease;
    overflow: hidden;
}

.slide-enter-to, .slide-leave {
    max-height: 100%;
    overflow: hidden;
}

.slide-enter, .slide-leave-to {
    overflow: hidden;
    max-height: 0;
}

/* Transition for dropdown */
.slide-down-enter-active {
    transition: all 0.3s ease;
}

.slide-down-leave-active {
    transition: all 0.3s ease;
}

.slide-down-enter, .slide-down-leave-to {
    opacity: 0;
    transform: translateY(-10px);
}

.slide-down-enter-to, .slide-down-leave {
    opacity: 1;
    transform: translateY(0);
}

/* Games list section animation */
.games-list-section {
    /* Games list animation */
    transition: 0.3s ease;
    overflow: hidden;
}

.games-list-section.slide-enter-to,
.games-list-section.slide-leave {
    max-height: 100%;
    overflow: hidden;
}

.games-list-section.slide-enter,
.games-list-section.slide-leave-to {
    overflow: hidden;
    max-height: 0;
}

/* 卷闸门动画效果 */
.slide-down-enter-active {
    transition: all 0.3s ease;
    transition-property: opacity, transform, height;
    overflow: hidden;
}

.slide-down-leave-active {
    transition: all 0.3s ease;
    transition-property: opacity, transform, height;
    overflow: hidden;
}

.slide-down-enter, .slide-down-leave-to {
    opacity: 0;
    transform: translateY(-10px);
    height: 0;
}

.slide-down-enter-to, .slide-down-leave {
    opacity: 1;
    transform: translateY(0);
    height: auto;
}

/* 卷闸门动画 */
.roll-down-enter-active, .roll-down-leave-active {
    max-height: 100vh;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
}

.roll-down-enter, .roll-down-leave-to {
    max-height: 0;
    opacity: 0;
}

/* 淡入淡出动画 */
.fade-enter-active, .fade-leave-active {
    transition: opacity 0.3s ease;
}

.fade-enter, .fade-leave-to {
    opacity: 0;
}

/* 全屏下拉菜单样式 */
.games-dropdown-panel {
    width: 100vw !important;
    left: 0 !important;
    right: 0 !important;
    background-color: #151517 !important;
    background: #151517 !important;
    box-sizing: border-box;
    min-height: 500px;
    color: white;
}

/* 导航项样式 */
.nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-bottom: 0.125rem; /* 为蓝线留出空间 */
}

.nav-item .nav-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0.125rem;
    background-color: #2ec7e6; /* tailwind的blue-400 */
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-line {
    transform: scaleX(1);
}

/* GAMES菜单项容器 */
.games-menu-container {
    position: static;
}

.games-dropdown-nav button {
    min-width: 80px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* 游戏列表样式 */
.games-dropdown-list {
    margin-top: 1rem;
}

/* 大图切换动画 */
.carousel-wrapper {
    position: relative;
    height: 100%;
}

/* ===== 增强重叠交叉感轮播图动画 ===== */

/* 共用动画设置 */
.slide-next-enter-active,
.slide-next-leave-active,
.slide-prev-enter-active,
.slide-prev-leave-active {
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    will-change: transform, opacity;
}

/* 下一个幻灯片：向右切换 - 增强重叠感 */
.slide-next-enter {
    opacity: 0.3;
    transform: translateX(60px);
    z-index: 10;
}

.slide-next-enter-to {
    opacity: 1;
    transform: translateX(0);
}

.slide-next-leave {
    opacity: 1;
    transform: translateX(0);
}

.slide-next-leave-to {
    opacity: 0.3;
    transform: translateX(-60px);
}

/* 上一个幻灯片：向左切换 - 增强重叠感 */
.slide-prev-enter {
    opacity: 0.3;
    transform: translateX(-60px);
    z-index: 10;
}

.slide-prev-enter-to {
    opacity: 1;
    transform: translateX(0);
}

.slide-prev-leave {
    opacity: 1;
    transform: translateX(0);
}

.slide-prev-leave-to {
    opacity: 0.3;
    transform: translateX(60px);
}

/* 增强交叉重叠感的关键：让新旧幻灯片在整个动画过程中都可见 */
.slide-next-enter-active,
.slide-prev-enter-active {
    /* 进入动画：从30%透明度到100% */
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-next-leave-active,
.slide-prev-leave-active {
    /* 离开动画：从100%透明度到30% */
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 关键：确保动画同步，新旧幻灯片同时可见 */
.carousel-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden;
}

/* 添加一个额外的重叠阶段效果 */
@keyframes crossOverlap {
    0% {
        opacity: 0.3;
        filter: blur(1px);
    }
    40% {
        opacity: 0.7;
        filter: blur(0px);
    }
    60% {
        opacity: 0.7;
        filter: blur(0px);
    }
    100% {
        opacity: 1;
        filter: blur(0px);
    }
}

@keyframes crossOverlapOut {
    0% {
        opacity: 1;
        filter: blur(0px);
    }
    40% {
        opacity: 0.7;
        filter: blur(0px);
    }
    60% {
        opacity: 0.7;
        filter: blur(1px);
    }
    100% {
        opacity: 0.3;
        filter: blur(2px);
    }
}

/* 应用重叠动画 */
.slide-next-enter-active,
.slide-prev-enter-active {
    animation: crossOverlap 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-next-leave-active,
.slide-prev-leave-active {
    animation: crossOverlapOut 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 确保两个幻灯片在动画过程中都有足够的透明度，产生重叠感 */
.slide-next-enter,
.slide-prev-enter,
.slide-next-leave-to,
.slide-prev-leave-to {
    opacity: 0.4 !important;
}

/* 重点：增加透明度过渡的中间值，让新旧幻灯片在中间阶段都有较高透明度 */
.slide-next-leave {
    opacity: 1;
}

.slide-next-leave-active {
    opacity: 1;
    transition: opacity 0.5s ease 0s, transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
}

/* 添加一个视觉辅助，显示重叠阶段 */
.carousel-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 5;
    pointer-events: none;
}


/* 手机版蓝线效果 - 使用上次正确的代码 */
/* 修复移动版蓝线和灰线高度问题 - 确保一致 */
.banner-nav .preview-list .preview {
    height: 4px !important;
    transition: all 0.3s ease;
}

.banner-nav .preview-list .preview:not(.selected) {
    background-color: hsla(0, 0%, 100%, .3) !important;
}

/* 确保在移动端蓝线和灰线高度一致 */
@media (max-width: 1279px) {
    .banner-nav .preview-list .preview {
        height: 4px !important;
    }

    .banner-nav .preview-list .preview.selected {
        height: 4px !important;
        border-bottom: none !important;
    }
}

/* 确保在移动端选中的蓝线正确显示 */
@media (max-width: 1279px) {
    .banner-nav .preview-list .preview.selected {
        background-color: rgba(168, 61, 240, .5) !important;
    }

    .banner-nav .preview-list .preview.selected .timer-bar {
        display: block !important;
        background-color: #a83df0;
        height: 100%;
        transition: width linear;
    }

    .banner-nav .preview-list .preview:not(.selected) .timer-bar {
        display: none !important;
    }
}

/* 修改：电脑版小图列表容器 */
@media (min-width: 1280px) {
    .banner-nav {
        height: 80px !important;
        width: 961px !important;
        margin: 0 auto !important;
        position: relative;
        overflow: hidden;
        padding: 0 27px 0 0 !important;
        left: 0;
        right: 0;
        box-sizing: border-box;
    }

    .banner-nav .preview-list-container {
        width: calc(100% - 27px) !important;
        height: 80px !important;
        overflow: hidden;
        position: relative;
        margin: 0;
        box-sizing: border-box;
    }

    .banner-nav .preview-list {
        display: flex !important;
        transition: transform 0.3s ease;
        position: absolute;
        left: 0;
        top: 0;
        height: 80px !important;
        width: auto;
        min-width: calc(5 * 232px) !important;
    }

    .banner-nav .preview-list .preview {
        width: 232px !important;
        min-width: 232px !important;
        height: 80px !important;
        flex-shrink: 0;
        position: relative;
        background-color: rgba(46, 46, 50, .5) !important;
        cursor: pointer;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    .banner-nav .preview-list .preview:last-child {
        border-right: none;
    }

    .banner-nav .preview-list .preview.selected {
        background-color: rgba(105, 108, 113, .5) !important;
    }

    .banner-nav .preview-list .preview:hover {
        background-color: rgba(105, 108, 113, .5);
    }

    /* 确保小图内容显示 */
    .banner-nav .preview-list .preview .preview-contents {
        display: flex !important;
        height: 100%;
        width: 100%;
        align-items: center;
        padding: 10px 15px;
        box-sizing: border-box;
    }

    .banner-nav .preview-list .preview .preview-contents .preview-logo {
        height: 60px;
        width: 60px;
        min-width: 60px;
        margin-right: 10px;
        flex-shrink: 0;
    }

    .banner-nav .preview-list .preview .preview-contents > div {
        flex: 1;
        overflow: hidden;
        min-width: 0;
    }

    .banner-nav .preview-list .preview .preview-contents .preview-name {
        color: hsla(0, 0%, 100%, .5);
        font-family: Roboto;
        font-size: 10px;
        margin-bottom: 5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .banner-nav .preview-list .preview .preview-contents .preview-title {
        color: hsla(0, 0%, 100%, .8);
        font-family: Roboto;
        font-size: 12px;
        line-height: 1.25;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* 电脑版蓝线显示 */
    .banner-nav .preview-list .preview.selected .timer-bar {
        background-color: #a83df0 !important;
        height: 5px !important;
        transition: width 0.05s linear !important;
        width: 0%;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 2;
        display: block !important;
    }

    .banner-nav .preview-list .preview.selected .timer-bar-bg {
        display: block !important;
        background-color: hsla(0, 0%, 100%, .1) !important;
        bottom: 0;
        height: 5px;
        position: absolute;
        width: 100%;
        z-index: 1;
    }

    .banner-nav .preview-list .preview:not(.selected) .timer-bar {
        display: none;
    }

    .banner-nav .preview-list .preview:not(.selected) .timer-bar-bg {
        display: none;
    }
}

@media (min-width: 1440px) {
    .banner-nav {
        height: 100px !important;
        padding: 0 33px 0 0 !important;
        width: 1080px !important;
    }

    .banner-nav .preview-list-container {
        height: 100px !important;
        width: calc(100% - 33px) !important;
    }

    .banner-nav .preview-list {
        height: 100px !important;
        min-width: calc(5 * 261px) !important;
    }

    .banner-nav .preview-list .preview {
        width: 261px !important;
        min-width: 261px !important;
        height: 100px !important;
    }

    .banner-nav .preview-list .preview .preview-contents {
        padding: 13px 20px;
    }

    .banner-nav .preview-list .preview .preview-contents .preview-logo {
        height: 70px;
        width: 70px;
        min-width: 70px;
        margin-right: 15px;
    }

    .banner-nav .preview-list .preview .preview-contents .preview-name {
        font-size: 12px;
    }

    .banner-nav .preview-list .preview .preview-contents .preview-title {
        font-size: 14px;
    }
}

@media (min-width: 1600px) {
    .banner-nav {
        height: 110px !important;
        padding: 0 36px 0 0 !important;
        width: 1200px !important;
    }

    .banner-nav .preview-list-container {
        height: 110px !important;
        width: calc(100% - 36px) !important;
    }

    .banner-nav .preview-list {
        height: 110px !important;
        min-width: calc(5 * 290px) !important;
    }

    .banner-nav .preview-list .preview {
        width: 290px !important;
        min-width: 290px !important;
        height: 110px !important;
    }

    .banner-nav .preview-list .preview .preview-contents {
        padding: 15px 25px;
    }

    .banner-nav .preview-list .preview .preview-contents .preview-logo {
        height: 80px;
        width: 80px;
        min-width: 80px;
        margin-right: 20px;
    }

    .banner-nav .preview-list .preview .preview-contents .preview-name {
        font-size: 14px;
    }

    .banner-nav .preview-list .preview .preview-contents .preview-title {
        font-size: 16px;
    }
}

@media (min-width: 1920px) {
    .banner-nav {
        height: 120px !important;
        padding: 0 42px 0 0 !important;
        width: 1440px !important;
    }

    .banner-nav .preview-list-container {
        height: 120px !important;
        width: calc(100% - 42px) !important;
    }

    .banner-nav .preview-list {
        height: 120px !important;
        min-width: calc(5 * 349px) !important;
    }

    .banner-nav .preview-list .preview {
        width: 349px !important;
        min-width: 349px !important;
        height: 120px !important;
    }

    .banner-nav .preview-list .preview .preview-contents {
        padding: 20px 30px;
    }

    .banner-nav .preview-list .preview .preview-contents .preview-logo {
        height: 90px;
        width: 90px;
        min-width: 90px;
        margin-right: 25px;
    }

    .banner-nav .preview-list .preview .preview-contents .preview-name {
        font-size: 15px;
    }

    .banner-nav .preview-list .preview .preview-contents .preview-title {
        font-size: 17px;
    }
}

/* 移动端小图样式 */
.banner-nav {
    bottom: 0;
    height: 4px;
    padding: 0 20px;
    position: absolute;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-nav .preview-list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;

    display: flex;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: auto;
    scroll-behavior: smooth;
    width: 335px;
    max-width: 100%;
}

.banner-nav .preview-list .preview {
    background-color: hsla(0, 0%, 100%, .3);
    cursor: pointer;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 4px;
    overflow: hidden;
    -webkit-transition: all .2s;
    transition: all .2s;
    min-width: auto;
    max-width: 60px;
}

.banner-nav .preview-list .preview:not(:last-child) {
    margin-right: 3px;
}

.banner-nav .preview-list .preview.selected {
    background-color: rgba(168, 61, 240, .5);
    height: 4px;
    min-width: auto;
}

.banner-nav .preview-list .preview .preview-contents {
    display: none;
}

.banner-nav .preview-list .preview .preview-contents .preview-logo {
    position: relative;
    overflow: hidden;
}

.banner-nav .preview-list .preview .timer-bar {
    background-color: #a83df0;
    height: 100%;
    -webkit-transition: all linear;
    transition: all linear;
    width: 0;
}

.banner-nav .preview-list .preview .time-bar-bg {
    display: none;
}

.banner-nav .arrow {
    background-color: rgba(0, 0, 0, .5);
    border: 1px solid hsla(0, 0%, 100%, .2);
    bottom: 231px;
    cursor: pointer;
    height: 60px;
    position: absolute;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all .2s;
    transition: all .2s;
    width: 42px;
}

.banner-nav .arrow.desktop {
    display: none;
}

.banner-nav .arrow:not(:active):not(.disabled):hover {
    background-color: #0f121a;
    border: 1px solid hsla(0, 0%, 100%, .7);
}

.banner-nav .arrow:not(:active):not(.disabled):hover:before {
    opacity: 1;
}

.banner-nav .arrow:not(.disabled):active:before {
    opacity: .5;
}

.banner-nav .arrow:before {
    background-position: 50%;
    background-repeat: no-repeat;
    content: "";
    height: 100%;
    opacity: .8;
    position: absolute;
    width: 100%;
}

.banner-nav .arrow.previous {
    left: 0;
}

.banner-nav .arrow.previous:before {
    background-image: url(../images/previous.svg);
}

.banner-nav .arrow.next {
    right: 0;
}

.banner-nav .arrow.next:before {
    background-image: url(../images/next.svg);
}

@media (min-width: 548px) {
    .banner-nav .preview-list {
        width: 507px;
    }
}

@media (min-width: 768px) {
    .banner-nav {
        height: 7px;
    }

    .banner-nav .preview-list .preview {
        -webkit-box-flex: inherit;
        -ms-flex: inherit;
        flex: inherit;
        height: 3px;
        width: 54px;
        max-width: 77px;
    }

    .banner-nav .preview-list .preview.selected {
        height: 7px;
        width: 77px;
    }

    .banner-nav .preview-list .preview:not(:last-child) {
        margin-right: 5px;
    }

    .banner-nav .arrow {
        bottom: 315px;
    }
}

@media (min-width: 1024px) {
    .banner-nav .arrow {
        bottom: 100px;
    }
}

@media (min-width: 1280px) {
    .banner-nav {
        height: 80px;
        left: 0;
        margin: 0 auto;
        padding: 0 27px 0 0 !important;
        right: 0;
        width: 961px !important;
    }

    .banner-nav.extended {
        padding: 0 27px 0 0 !important;
    }

    .banner-nav.extended .preview-list {
        width: 100%;
    }

    .banner-nav.extended .preview-list .preview {
        min-width: 232px !important;
    }

    .banner-nav.extended .preview-list .preview.selected {
        width: 232px !important;
    }

    .banner-nav .arrow {
        bottom: 0;
        height: 40px;
        right: 0;
        width: 27px;
    }

    .banner-nav .arrow.disabled {
        cursor: default;
    }

    .banner-nav .arrow.disabled:before {
        opacity: .2;
    }

    .banner-nav .arrow.mobile {
        display: none;
    }

    .banner-nav .arrow.desktop {
        display: block;
    }

    .banner-nav .arrow.previous {
        bottom: 40px;
        left: auto;
    }

    .banner-nav .arrow.previous:before {
        background-image: url(../images/previous_1280.svg);
    }

    .banner-nav .arrow.previous:not(.nextClicked).disabled.nextHovered {
        border-bottom: 1px solid hsla(0, 0%, 100%, .7);
    }

    .banner-nav .arrow.next {
        border-top: none !important;
        left: auto;
    }

    .banner-nav .arrow.next:before {
        background-image: url(../images/next_1280.svg);
    }

    .banner-nav .arrow.mobile {
        display: none !important;
    }
}

@media (min-width: 1440px) {
    .banner-nav {
        height: 100px;
        padding: 0 33px 0 0 !important;
        width: 1080px !important;
    }

    .banner-nav.extended .preview-list {
        width: 100%;
    }

    .banner-nav.extended .preview-list .preview {
        min-width: 261px !important;
    }

    .banner-nav.extended .preview-list .preview.selected {
        width: 261px !important;
    }

    .banner-nav .arrow {
        height: 50px;
        width: 33px;
    }

    .banner-nav .arrow.previous {
        bottom: 50px;
    }
}

@media (min-width: 1600px) {
    .banner-nav {
        height: 110px;
        padding: 0 36px 0 0 !important;
        width: 1200px !important;
    }

    .banner-nav.extended .preview-list {
        width: 100%;
    }

    .banner-nav.extended .preview-list .preview {
        min-width: 290px !important;
    }

    .banner-nav.extended .preview-list .preview.selected {
        width: 290px !important;
    }

    .banner-nav .arrow {
        height: 55px;
        width: 36px;
    }

    .banner-nav .arrow.previous {
        bottom: 55px;
    }

    .banner-nav .arrow.previous:before {
        background-image: url(../images/previous_1600.svg);
    }

    .banner-nav .arrow.next:before {
        background-image: url(../images/next_1600.svg);
    }
}

@media (min-width: 1920px) {
    .banner-nav {
        height: 120px;
        padding: 0 42px 0 0 !important;
        width: 1440px !important;
    }

    .banner-nav.extended .preview-list {
        width: 100%;
    }

    .banner-nav.extended .preview-list .preview {
        min-width: 349px !important;
    }

    .banner-nav.extended .preview-list .preview.selected {
        width: 349px !important;
    }

    .banner-nav .arrow {
        height: 60px;
        width: 42px;
    }

    .banner-nav .arrow.previous {
        bottom: 60px;
    }

    .banner-nav .arrow.previous:before {
        background-image: url(../images/previous.svg);
    }

    .banner-nav .arrow.next:before {
        background-image: url(../images/next.svg);
    }
}

/* 大图响应式优化 */
@media (max-width: 374px) {
    .banner {
        height: 471px ;
        position: relative;
        overflow: hidden;
    }

    .carousel-wrapper {
        height: 100%;
    }

    .carousel {
        height: 100%;
    }

    .carousel .carousel-img {
        height: 331px !important;
        background-position: center !important;
        background-size: cover !important;
        width: 100% !important;
    }

    .carousel .shadow.bottom {
        height: 300px !important;
        background-size: cover !important;
        background-position: bottom !important;
        width: 100% !important;
    }

    .carousel .content {
        padding-bottom: 48px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .carousel .content .game-logo {
        height: 73px !important;
        width: 100% !important;
    }

    .carousel .content .game-info {
        max-width: 335px !important;
        width: 100% !important;
    }

    .carousel .content .game-info .subtitle {
        font-size: 14px !important;
        line-height: 1.57 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .carousel .shadow.bottom {
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
    }
}

@media (min-width: 375px) and (max-width: 767px) {
    .banner {
        height: 471px ;
    }

    .carousel .carousel-img {
        height: 331px ;
    }

    .carousel .shadow.bottom {
        height: 300px;
    }

    .carousel .content .game-logo {
        height: 73px;
    }
}

.carousel-next-enter-active,
.carousel-next-leave-active,
.carousel-previous-enter-active,
.carousel-previous-leave-active {
    -webkit-transition: all 1s;
    transition: all 1s;
}

.carousel-next-enter {
    opacity: 0;
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
}

.carousel-previous-enter {
    opacity: 0;
    -webkit-transform: translate(-50px);
    transform: translate(-50px);
}

.carousel {
    bottom: 0;
    height: 100%;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    white-space: nowrap;
    width: 100%;
}

.carousel .carousel-img {
    background-position: 50%;
    background-size: cover;
    height: 331px;
    width: 100%;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

.carousel .shadow {
    position: absolute;
    display: none;
}

.carousel .shadow.bottom {
    background: url(../images/bottom_375.png) no-repeat 50%;
    bottom: 0;
    display: block;
    height: 300px;
    width: 100%;
}

.carousel .content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    left: 0;
    margin: auto;
    padding-bottom: 48px;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

.carousel .content .game-logo {
    height: 73px;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.carousel .content .game-logo .logo-img {
    max-height: 100%;
    max-width: 80%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .carousel .content .game-logo {
        height: 60px;
        position: relative;
        top: 0;
        left: 0;
        margin-top: 40px;
        margin-bottom: 15px;
    }

    .carousel .content .game-logo .logo-img {
        max-height: 50px;
        max-width: 70%;
    }
}

.carousel .content .game-info {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    max-width: 335px;
    white-space: pre-wrap;
}

.carousel .content .game-info.nologo {
    margin-bottom: 25px;
}

.carousel .content .game-info .title {
    color: #fff;
    display: none;
    font-family: Roboto, serif;
    font-size: 37px;
    font-weight: 700;
    letter-spacing: -.75px;
    line-height: 1.19;
    margin-bottom: 15px;
    text-align: center;
}

.carousel .content .game-info .subtitle {
    color: #fff;
    font-size: 14px;
    letter-spacing: -.28px;
    line-height: 1.57;
    opacity: .7;
    text-align: center;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
}

.carousel .content .game-info button {
    background-color: #151517;
    border: 1px solid hsla(0, 0%, 100%, .5);
    border-radius: 5px;
    color: #fff;
    font-size: 12px;
    height: 46px;
    margin-top: 25px;
    padding: 0 35px;
    width: auto;
}

.carousel .content .game-info button:hover {
    border: 1px solid #fff;
}

.carousel .content .game-info button:active {
    border: 1px solid hsla(0, 0%, 100%, .2);
    color: hsla(0, 0%, 100%, .2);
}

@media (min-width: 548px) {
    .carousel .content .game-info {
        max-width: 507px;
    }
}

@media (min-width: 768px) {
    .carousel .carousel-img {
        height: 441px;
    }

    .carousel .shadow.bottom {
        background: url(../images/bottom_768.png) no-repeat top;
        height: 340px;
    }

    .carousel .content {
        padding-bottom: 49px;
    }

    .carousel .content .game-logo {
        height: 104px;
    }

    .carousel .content .game-logo .logo-img {
        max-height: 80px;
        max-width: 80%;
    }

    .carousel .content .game-info {
        padding: 0 110px;
        max-width: 100%;
    }

    .carousel .content .game-info.nologo {
        margin-bottom: 50px;
    }

    .carousel .content .game-info .title {
        display: block;
    }

    .carousel .content .game-info .subtitle {
        padding: 0 40px;
    }
}

@media (min-width: 1024px) {
    .carousel {
        width: 1024px;
    }

    .carousel .carousel-img {
        height: 100%;
        position: absolute;
        right: 0;
        width: 813px;
    }

    .carousel .shadow {
        display: block;
    }

    .carousel .shadow.left {
        background: url(../images/left.png) no-repeat top;
        background-size: cover;
        height: 100%;
        width: 589px;
    }

    .carousel .shadow.right {
        background: url(../images/right.png) no-repeat top;
        background-size: cover;
        height: 100%;
        right: 0;
        width: 223px;
    }

    .carousel .shadow.bottom {
        background: url(../images/bottom_1920.png) no-repeat top;
        background-size: cover;
        height: 94px;
    }

    .carousel .content {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding-bottom: 7px;
        width: 766px;
    }

    .carousel .content .game-logo {
        height: 54px;
        margin: 0 0 15px;
        width: auto;
        justify-content: flex-start;
    }

    .carousel .content .game-logo .logo-img {
        max-height: 40px;
        max-width: 200px;
    }

    .carousel .content .game-info {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 0;
    }

    .carousel .content .game-info .title {
        font-size: 29px;
        letter-spacing: -.58px;
        line-height: 1.14;
        margin-bottom: 10px;
        text-align: left;
        width: auto;
        max-width: 100%;
    }

    .carousel .content .game-info .subtitle {
        color: #a8a8a8;
        font-size: 12px;
        letter-spacing: -.24px;
        line-height: 1.67;
        padding: 0;
        text-align: left;
        width: auto;
        max-width: 100%;
    }

    .carousel .content .game-info button {
        font-size: 10px;
        height: 36px;
        margin-top: 18px;
        padding: 0 23px;
    }
}

@media (min-width: 1280px) {
    .carousel {
        width: 1280px;
    }

    .carousel .carousel-img {
        width: 1022px;
    }

    .carousel .shadow.left {
        width: 738px;
    }

    .carousel .shadow.right {
        width: 278px;
    }

    .carousel .shadow.bottom {
        height: 118px;
    }

    .carousel .content {
        padding-bottom: 80px;
        width: 961px;
    }

    .carousel .content .game-logo {
        height: 54px;
    }

    .carousel .content .game-logo .logo-img {
        max-height: 45px;
        max-width: 250px;
    }

    .carousel .content .game-info .title {
        width: auto;
        max-width: 100%;
    }
}

@media (min-width: 1440px) {
    .carousel {
        width: 1440px;
    }

    .carousel .carousel-img {
        width: 1148px;
    }

    .carousel .shadow.left {
        width: 830px;
    }

    .carousel .shadow.right {
        width: 314px;
    }

    .carousel .shadow.bottom {
        height: 133px;
    }

    .carousel .content {
        padding-bottom: 91px;
        width: 1080px;
    }

    .carousel .content .game-logo {
        height: 63px;
    }

    .carousel .content .game-logo .logo-img {
        max-height: 55px;
        max-width: 300px;
    }

    .carousel .content .game-info .title {
        font-size: 33px;
        letter-spacing: -.66px;
        line-height: 1.29;
        width: auto;
        max-width: 100%;
    }

    .carousel .content .game-info .subtitle {
        font-size: 14px;
        letter-spacing: -.28px;
        line-height: 1.43;
        width: auto;
        max-width: 100%;
    }

    .carousel .content .game-info button {
        font-size: 12px;
        height: 46px;
        padding: 0 35px;
    }
}

@media (min-width: 1600px) {
    .carousel {
        width: 1600px;
    }

    .carousel .carousel-img {
        width: 1292px;
    }

    .carousel .shadow.left {
        width: 911px;
    }

    .carousel .shadow.right {
        width: 355px;
    }

    .carousel .shadow.bottom {
        height: 150px;
    }

    .carousel .content {
        padding-bottom: 101px;
        width: 1200px;
    }

    .carousel .content .game-logo {
        height: 103px;
    }

    .carousel .content .game-logo .logo-img {
        max-height: 85px;
        max-width: 350px;
    }

    .carousel .content .game-info .title {
        font-size: 37.5px;
        line-height: 1.19;
        letter-spacing: -.75px;
        width: auto;
        max-width: 100%;
    }

    .carousel .content .game-info .subtitle {
        color: hsla(0, 0%, 100%, .7);
        line-height: 1.57;
    }
}

@media (min-width: 1920px) {
    .carousel {
        width: 1920px;
    }

    .carousel .carousel-img {
        width: 1530px;
    }

    .carousel .shadow.left {
        width: 1106px;
    }

    .carousel .shadow.right {
        width: 419px;
    }

    .carousel .shadow.bottom {
        height: 177px;
    }

    .carousel .content {
        padding-bottom: 120px;
        width: 1440px;
    }

    .carousel .content .game-logo {
        height: 120px;
    }

    .carousel .content .game-logo .logo-img {
        max-height: 100px;
        max-width: 400px;
    }
}

.banner {
    height: 471px;
    position: relative;
    width: 100%;
}

.banner.stickied {
    margin-bottom: 100px;
}

@media (min-width: 768px) {
    .banner {
        height: 600px;
    }
}

@media (min-width: 1024px) {
    .banner {
        height: 353px;
    }
}

@media (min-width: 1280px) {
    .banner {
        height: 441px;
    }
}

@media (min-width: 1440px) {
    .banner {
        height: 495px;
    }
}

@media (min-width: 1600px) {
    .banner {
        height: 559px;
    }
}

@media (min-width: 1920px) {
    .banner {
        height: 660px;
    }
}

img {
    vertical-align: middle;
}

img {
    border: 0;
}

button {
    text-transform: uppercase;
}


/* 修复电脑版小图内容显示问题 */
@media (min-width: 1280px) {
    .banner-nav .preview-list .preview .preview-contents {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .banner-nav .preview-list .preview {
        height: 80px !important;
        min-height: 80px !important;
    }

    .banner-nav .preview-list .preview.selected .timer-bar,
    .banner-nav .preview-list .preview.selected .timer-bar-bg {
        height: 5px !important;
        bottom: 0 !important;
    }

    .banner-nav .preview-list-container {
        width: calc(4 * 232px) !important;
        margin: 0 auto;
        overflow: hidden;
    }
}

@media (min-width: 1440px) {
    .banner-nav .preview-list .preview {
        height: 100px !important;
        min-height: 100px !important;
    }

    .banner-nav .preview-list-container {
        width: calc(4 * 261px) !important;
    }
}

@media (min-width: 1600px) {
    .banner-nav .preview-list .preview {
        height: 110px !important;
        min-height: 110px !important;
    }

    .banner-nav .preview-list-container {
        width: calc(4 * 290px) !important;
    }
}

@media (min-width: 1920px) {
    .banner-nav .preview-list .preview {
        height: 120px !important;
        min-height: 120px !important;
    }

    .banner-nav .preview-list-container {
        width: calc(4 * 349px) !important;
    }
}

.banner-nav .arrow {
    transition: opacity 0.3s ease;
}

/* 当按钮被隐藏时，确保不占用空间 */
.banner-nav .arrow[style*="display: none"] {
    display: none !important;
}


/* ======= 修复：当幻灯片数量小于等于4张时，预览列表靠左对齐 ======= */
@media (min-width: 1280px) {
    /* 当幻灯片数量小于等于4张时，整个导航区域不需要右边padding */
    .banner-nav:not(.has-arrows) {
        padding-right: 0 !important;
    }

    /* 当没有箭头按钮时，预览列表容器占满整个宽度 */
    .banner-nav:not(.has-arrows) .preview-list-container {
        width: 100% !important;
    }

    /* 预览列表靠左对齐 */
    .banner-nav:not(.has-arrows) .preview-list {
        justify-content: flex-start !important;
        transform: none !important;
    }

    /* 确保预览项宽度正确 */
    .banner-nav:not(.has-arrows) .preview-list .preview {
        width: 232px !important;
    }
}

@media (min-width: 1440px) {
    .banner-nav:not(.has-arrows) .preview-list .preview {
        width: 261px !important;
    }
}

@media (min-width: 1600px) {
    .banner-nav:not(.has-arrows) .preview-list .preview {
        width: 290px !important;
    }
}

@media (min-width: 1920px) {
    .banner-nav:not(.has-arrows) .preview-list .preview {
        width: 349px !important;
    }
}


.launcher-info {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 436px;
    margin-top: 90px;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 1
}

.launcher-info .mobile-bg {
    background: url(../images/bg.png) no-repeat 50%;
    bottom: 0;
    /*height: 344px;*/
    left: 0;
    position: absolute;
    width: 100%;
    z-index: -1
}

.launcher-info .preview-img {
    height: 180px;
    margin: 0 0 35px 35px;
    width: 308px
}

.launcher-info .contents {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 auto
}

.launcher-info .contents .title {
    color: #fff;
    font-family: Roboto;
    font-size: 27.5px;
    font-weight: 700;
    letter-spacing: .55px;
    margin-bottom: 20px;
    text-transform: uppercase
}

.launcher-info .contents .subtitle {
    color: hsla(0, 0%, 100%, .3);
    font-family: Roboto;
    font-size: 14px;
    letter-spacing: .28px;
    margin-bottom: 30px;
    text-align: center
}

.launcher-info .contents button {
    background-color: #a83df0;
    border: none;
    border-radius: 5px;
    color: #fff;
    height: 71px;
    margin: 0;
    outline: 0;
    padding: 0 20px 0 18px;
    -webkit-transition: background-color .2s, background-color .2s, border-color .2s, color .2s;
    transition: background-color .2s, background-color .2s, border-color .2s, color .2s;
    width: auto
}

.launcher-info .contents button:not(:active):not(.offPlatform):hover {
    background-color: #2ec7e6
}

.launcher-info .contents button:active:not(.offPlatform) {
    background-color: #6d2ab8;
    color: hsla(0, 0%, 100%, .5)
}

.launcher-info .contents button:active:not(.offPlatform) .download {
    opacity: .5
}

.launcher-info .contents button.offPlatform {
    background-color: #535353;
    color: hsla(0, 0%, 100%, .5);
    cursor: default
}

.launcher-info .contents button.offPlatform .download {
    opacity: .5
}

.launcher-info .contents button .button-contents {
    display: inline-block
}

.launcher-info .contents button .button-contents .download-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: left;
    text-transform: uppercase
}

.launcher-info .contents button .button-contents .download-subtitle {
    font-size: 14.5px;
    text-align: left
}

.launcher-info .contents button .download {
    display: inline-block;
    height: 26px;
    margin: 0 13px 5px 0;
    width: 21px
}

@media (min-width: 768px) {
    .launcher-info {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        background: url(../images/bg.png) no-repeat top;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        height: 304px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .launcher-info .mobile-bg {
        display: none
    }

    .launcher-info .preview-img {
        height: 206px;
        margin: 58px 22px 0 0;
        width: 352px
    }

    .launcher-info .contents {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin: 80px 0 20px 0
    }

    .launcher-info .contents .subtitle {
        text-align: left
    }
}

@media (min-width: 1024px) {
    .launcher-info {
        height: 290px
    }

    .launcher-info .preview-img {
        height: 228px;
        margin: 47px 9px 0 0;
        width: 389px
    }

    .launcher-info .contents .title {
        font-size: 24.5px;
        letter-spacing: .49px
    }

    .launcher-info .contents .subtitle {
        font-size: 12px;
        letter-spacing: .24px;
        margin-bottom: 25px
    }

    .launcher-info .contents button {
        height: 50px;
        padding: 0 13px
    }

    .launcher-info .contents button .button-contents .download-title {
        font-size: 12.5px;
        margin: 2px 0 0 0
    }

    .launcher-info .contents button .button-contents .download-subtitle {
        font-size: 10.5px
    }

    .launcher-info .contents button .download {
        background-size: contain;
        height: 19px;
        margin: 0 9px 3px 0;
        width: 15px
    }
}

@media (min-width: 1440px) {
    .launcher-info {
        background-repeat: repeat;
        height: 415px
    }

    .launcher-info .preview-img {
        height: 327px;
        margin: 67px 13px 0 0;
        width: 556px
    }

    .launcher-info .contents {
        margin: 140px 0 20px 0
    }

    .launcher-info .contents .title {
        font-size: 36.5px;
        letter-spacing: .73px;
        margin-bottom: 30px
    }

    .launcher-info .contents .subtitle {
        font-size: 16px;
        letter-spacing: .32px;
        margin-bottom: 35px
    }

    .launcher-info .contents button {
        height: 71px;
        padding: 0 20px 0 18px
    }

    .launcher-info .contents button .button-contents .download-title {
        font-size: 16px;
        margin: 0 0 5px 0
    }

    .launcher-info .contents button .button-contents .download-subtitle {
        font-size: 14.5px
    }

    .launcher-info .contents button .download {
        background-size: contain;
        height: 26px;
        margin: 0 13px 5px 0;
        width: 21px
    }
}


.footer {
    font-family: sans-serif;
    background-color: #1b1c1e;
    font-size: 12px;
    width: 100%;
    min-width: 320px;
}

.footer.hideFooter {
    display: none !important;
}

.footer.tw.zh {
    font-family: '微軟正黑體', 'Microsoft JhengHei', Arial, Helvetica, sans-serif;
}

.footer .footer-top {
    position: relative;
    height: auto;
    min-width: 150px;
    padding-left: 0;
    border-bottom: 1px solid #0b0d13;
}

.footer .footer-top .language {
    position: relative;
    color: #dcdcdc;
    width: 100%;
    height: 50px;
}

.footer .footer-top .language span {
    vertical-align: top;
    display: inline-block;
}

.footer .footer-top .language ul {
    margin-bottom: 0;
}

.footer .footer-top .language .current-language {
    position: relative;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
}

.footer .footer-top .language .current-language .icon-locale {
    width: 13px;
    height: 13px;
    margin-right: 13px;
    margin-top: 18px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.footer .footer-top .language .current-language .icon-footer-arrow {
    width: 13px;
    height: 13px;
    margin-left: 13px;
    margin-top: 18px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.footer .footer-top .language .current-language:hover .icon-locale,
.footer .footer-top .language .current-language:hover .icon-footer-arrow {
    opacity: 1;
}

.footer .footer-top .language .slide-enter-active,
.footer .footer-top .language .slide-leave-active {
    transition: 0.2s ease-out;
}

.footer .footer-top .language .slide-enter-to,
.footer .footer-top .language .slide-leave {
    max-height: 294px;
    overflow: hidden;
}

.footer .footer-top .language .slide-enter,
.footer .footer-top .language .slide-leave-to {
    overflow: hidden;
    max-height: 0;
}

.footer .footer-top .language .languages {
    position: absolute;
    z-index: 9999;
    width: 207px;
    bottom: 47px;
    left: 50%;
    transform: translate(-50%, 0%);
    background-color: #222223;
    border-radius: 5px;
    box-shadow: 0px 0px 24px 0 rgba(0, 0, 0, 0.6);
}

.footer .footer-top .language .languages .slide-enter-to,
.footer .footer-top .language .languages .slide-leave {
    max-height: 296px;
}

.footer .footer-top .language .languages .global-locale {
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: #1d1d1e;
}

.footer .footer-top .language .languages li {
    position: relative;
    line-height: 2em;
    transition: background-color 0.2s ease;
}

.footer .footer-top .language .languages li a {
    color: #ffffff;
    display: block;
    padding: 2px 15px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.footer .footer-top .language .languages li a:hover {
    opacity: 1;
}

.footer .footer-top .language .languages li.region {
    position: relative;
    text-transform: uppercase;
}

.footer .footer-top .language .languages li.region a {
    line-height: 18px;
    text-align: center;
    padding-top: 16px;
    padding-bottom: 15px;
}

.footer .footer-top .language .languages li.region .icon-plus,
.footer .footer-top .language .languages li.region .icon-minus {
    width: 9px;
    height: 9px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    margin-left: 2px;
}

.footer .footer-top .language .languages li.region .icon-btn-link {
    width: 12px;
    height: 10px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    margin-left: 2px;
}

.footer .footer-top .language .languages li.region:hover.global .icon-minus,
.footer .footer-top .language .languages li.region:hover.global .icon-plus {
    opacity: 1;
}

.footer .footer-top .language .languages li.region:hover.kr .icon-btn-link,
.footer .footer-top .language .languages li.region:hover.jp .icon-btn-link {
    opacity: 1;
}

.footer .footer-top .language .languages li.language-list {
    background-color: #1d1d1e;
    text-align: center;
    height: 28px;
}

.footer .footer-top .language .languages li:hover {
    background-color: #a83df0;
}

.footer .footer-top .language .languages li:hover:first-child:not(.language-list) {
    border-radius: 5px 5px 0px 0px;
}

.footer .footer-top .language .languages li:hover:last-child:not(.language-list) {
    border-radius: 0px 0px 5px 5px;
}

.footer .footer-top .language .languages li:active {
    opacity: 0.5;
}

.footer .footer-top .language .current-language.vertical-arrows .arrow-container {
    display: flex;
    flex-direction: column;
    margin-left: 13px;
}


.footer .footer-body {
    position: relative;
    min-height: 176px;
    width: 100%;
    text-align: center;
    background: #1b1c1e;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer .footer-body .links a {
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    color: rgba(255, 255, 255, .66);
    opacity: 1;
    transition: color 0.2s ease;
}

.footer .footer-body .links a:hover {
    color: rgba(255, 255, 255, .9);
}

.footer .footer-body .links > li + li:before {
    padding: 0 22px;
    color: #3c3c3c;
    content: '|\A0';
}

.footer .footer-body .links-top {
    padding-top: 42px;
    margin: 0px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer .footer-body .links-bottom {
    padding-top: 22px;
    margin: 0px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer .footer-body .links-bottom a {
    color: rgba(255, 255, 255, .33);
    font-weight: 600;
}

.footer .footer-logo {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .footer-logo img {
    height: 28px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer .footer-bottom {
    position: relative;
    height: 80px;
    background-color: #151618;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .footer-bottom .copyright {
    color: rgba(255, 255, 255, .18);
    text-align: center;
    padding-top: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.footer-message-button {
    position: fixed;
    right: max(28px, env(safe-area-inset-right));
    bottom: max(28px, env(safe-area-inset-bottom));
    z-index: 9000;
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 50%;
    background: #0f7cff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .34), 0 0 0 1px rgba(255, 255, 255, .08) inset;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.footer-message-button:hover {
    background: #1689ff;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .38), 0 0 0 1px rgba(255, 255, 255, .14) inset;
}

.footer-message-button:active {
    transform: translateY(1px);
}

.footer-message-button i {
    font-size: 29px;
    line-height: 1;
}

.footer-message-dot {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff3b5f;
    border: 2px solid #0f7cff;
}

@media (max-width: 768px) {
    .footer .footer-body {
        min-height: 220px;
        padding: 0 20px;
    }

    .footer .footer-body .links-top,
    .footer .footer-body .links-bottom {
        gap: 12px 0;
        padding-top: 28px;
    }

    .footer .footer-body .links-bottom {
        padding-top: 16px;
    }

    .footer .footer-body .links a {
        font-size: 12px;
    }

    .footer .footer-body .links > li + li:before {
        padding: 0 10px;
    }

    .footer .footer-logo {
        margin-top: 28px;
    }

    .footer-message-button {
        right: max(20px, env(safe-area-inset-right));
        bottom: max(22px, env(safe-area-inset-bottom));
        width: 54px;
        height: 54px;
    }

    .footer-message-button i {
        font-size: 27px;
    }

    .footer .footer-bottom {
        height: 72px;
        padding: 0 24px;
    }

    .footer .footer-bottom .copyright {
        font-size: 12px;
        line-height: 1.6;
    }
}

/* 自适应底部布局 */
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#app {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.global-navigation {
    flex-shrink: 0;
}

main {
    flex: 1;
}

footer {
    flex-shrink: 0;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-inline {
    padding-left: 0;
    list-style: none;
    margin-left: -5px;
}

.list-inline > li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
}

/* 游戏筛选按钮样式 */
.games-filter-btn {
    width: 29px;
    height: 29px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    margin: 3px;
    transition: opacity 0.2s ease;
    cursor: pointer;
    min-width: 29px;
}

.games-filter-btn.active {
    opacity: 1;
    background-color: white;
    color: #151517;
}

.games-filter-btn.active {
    opacity: 1 !important;
    background-color: white !important;
    color: #151517 !important;
}

.games-filter-btn:hover {
    opacity: 1 !important;
}

.games-filter-btn .filter-btn-text {
    margin-left: 6px !important;
    white-space: nowrap !important;
}

/* 移动端菜单过渡动画 */
.slide-menu-enter-active,
.slide-menu-leave-active {
    transition: all 0.3s ease;
}

.slide-menu-enter-from {
    opacity: 0;
    transform: translateX(100%);
}

.slide-menu-leave-to {
    opacity: 0;
    transform: translateX(100%);
}

/* 修复下拉菜单中的筛选区域 */
.games-filter-section {
    height: 77px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
}

/* 修复游戏列表在下拉菜单中的布局 */
.games-list-section {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
    gap: 0.5rem !important;
    padding: 0 !important;
    margin: 0 !important;
}

.games-section {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding: 1rem !important;
}

/* 游戏列表项样式 */
.games-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.game-details-link {
    display: flex !important;
    align-items: flex-start !important;
    padding: 0.75rem !important;
    border-radius: 0.5rem !important;
    text-decoration: none !important;
    transition: background-color 0.3s !important;
    color: inherit !important;
}

.game-details-link:hover {
    background-color: #2a2c2f !important;
}

.icon {
    width: 2.75rem !important;
    height: 2.75rem !important;
    border-radius: 0.25rem !important;
    background-size: cover !important;
    background-position: center !important;
    margin-right: 0.75rem !important;
}

.game-title {
    color: white !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    margin-bottom: 0.25rem !important;
}

.new-game {
    color: #2ec7e6 !important;
    font-size: 0.75rem !important;
    font-weight: bold !important;
    margin-left: 0.5rem !important;
    text-transform: uppercase !important;
}

.game-card-badge {
    background-color: #2ec7e6;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.15rem 0.5rem;
    border-radius: 0.25rem;
    display: inline-block;
    z-index: 20;
}

.absolute-bottom-left {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 20;
}

.game-title-no-wrap {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.platform-icons {
    display: flex !important;
    gap: 0.25rem !important;
}

.platform-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* 确保游戏列表容器正确显示 */
.games-section {
    flex: 1;
    overflow-y: auto;
    display: block;
}

.sub-sidebar-content .games-section {
    max-height: calc(100vh - 180px); /* 考虑顶部和筛选按钮的高度 */
}

/* 下载启动器按钮 */
.download-launcher {
    background: #151517 !important;
    border-top: 1px solid #2a2c2f !important;
}

.download-launcher .btn {
    background-color: #a83df0 !important;
    color: white !important;
    border: none !important;
    padding: 12px !important;
    border-radius: 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 600 !important;
}

.download-launcher .btn:hover {
    background-color: #7a2fc7 !important;
}


/* 修正移动端菜单动画 */
.xl\:hidden.fixed.top-0.left-0 {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.absolute.top-0.right-0 {
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

/* 修正Logo居中 */
.sidebar-top .absolute.left-5.right-5 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
}

/* 修正Games标题居中 */
.sub-sidebar-top .absolute.left-5.right-5 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
}

/* 修正Games菜单项垂直居中 */
.sidebar-btn.games {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.sidebar-btn.games span,
.sidebar-btn.games i {
    display: flex;
    align-items: center;
    height: 100%;
}


.launcher-info {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 436px;
    margin-top: 90px;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 1
}

.launcher-info .mobile-bg {
    background: url(../images/bg.png) no-repeat 50%;
    bottom: 0;
    /*height: 344px;*/
    left: 0;
    position: absolute;
    width: 100%;
    z-index: -1
}

.launcher-info .preview-img {
    height: 180px;
    margin: 0 0 35px 35px;
    width: 308px
}

.launcher-info .contents {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 auto
}

.launcher-info .contents .title {
    color: #fff;
    font-family: Roboto;
    font-size: 27.5px;
    font-weight: 700;
    letter-spacing: .55px;
    margin-bottom: 20px;
    text-transform: uppercase
}

.launcher-info .contents .subtitle {
    color: hsla(0, 0%, 100%, .3);
    font-family: Roboto;
    font-size: 14px;
    letter-spacing: .28px;
    margin-bottom: 30px;
    text-align: center
}

.launcher-info .contents button {
    background-color: #a83df0;
    border: none;
    border-radius: 5px;
    color: #fff;
    height: 71px;
    margin: 0;
    outline: 0;
    padding: 0 20px 0 18px;
    -webkit-transition: background-color .2s, background-color .2s, border-color .2s, color .2s;
    transition: background-color .2s, background-color .2s, border-color .2s, color .2s;
    width: auto
}

.launcher-info .contents button:not(:active):not(.offPlatform):hover {
    background-color: #2ec7e6
}

.launcher-info .contents button:active:not(.offPlatform) {
    background-color: #6d2ab8;
    color: hsla(0, 0%, 100%, .5)
}

.launcher-info .contents button:active:not(.offPlatform) .download {
    opacity: .5
}

.launcher-info .contents button.offPlatform {
    background-color: #535353;
    color: hsla(0, 0%, 100%, .5);
    cursor: default
}

.launcher-info .contents button.offPlatform .download {
    opacity: .5
}

.launcher-info .contents button .button-contents {
    display: inline-block
}

.launcher-info .contents button .button-contents .download-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: left;
    text-transform: uppercase
}

.launcher-info .contents button .button-contents .download-subtitle {
    font-size: 14.5px;
    text-align: left
}

.launcher-info .contents button .download {
    display: inline-block;
    height: 26px;
    margin: 0 13px 5px 0;
    width: 21px
}

@media (min-width: 768px) {
    .launcher-info {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        background: url(../images/bg.png) no-repeat top;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        height: 304px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .launcher-info .mobile-bg {
        display: none
    }

    .launcher-info .preview-img {
        height: 206px;
        margin: 58px 22px 0 0;
        width: 352px
    }

    .launcher-info .contents {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin: 80px 0 20px 0
    }

    .launcher-info .contents .subtitle {
        text-align: left
    }
}

@media (min-width: 1024px) {
    .launcher-info {
        height: 290px
    }

    .launcher-info .preview-img {
        height: 228px;
        margin: 47px 9px 0 0;
        width: 389px
    }

    .launcher-info .contents .title {
        font-size: 24.5px;
        letter-spacing: .49px
    }

    .launcher-info .contents .subtitle {
        font-size: 12px;
        letter-spacing: .24px;
        margin-bottom: 25px
    }

    .launcher-info .contents button {
        height: 50px;
        padding: 0 13px
    }

    .launcher-info .contents button .button-contents .download-title {
        font-size: 12.5px;
        margin: 2px 0 0 0
    }

    .launcher-info .contents button .button-contents .download-subtitle {
        font-size: 10.5px
    }

    .launcher-info .contents button .download {
        background-size: contain;
        height: 19px;
        margin: 0 9px 3px 0;
        width: 15px
    }
}

@media (min-width: 1440px) {
    .launcher-info {
        background-repeat: repeat;
        height: 415px
    }

    .launcher-info .preview-img {
        height: 327px;
        margin: 67px 13px 0 0;
        width: 556px
    }

    .launcher-info .contents {
        margin: 140px 0 20px 0
    }

    .launcher-info .contents .title {
        font-size: 36.5px;
        letter-spacing: .73px;
        margin-bottom: 30px
    }

    .launcher-info .contents .subtitle {
        font-size: 16px;
        letter-spacing: .32px;
        margin-bottom: 35px
    }

    .launcher-info .contents button {
        height: 71px;
        padding: 0 20px 0 18px
    }

    .launcher-info .contents button .button-contents .download-title {
        font-size: 16px;
        margin: 0 0 5px 0
    }

    .launcher-info .contents button .button-contents .download-subtitle {
        font-size: 14.5px
    }

    .launcher-info .contents button .download {
        background-size: contain;
        height: 26px;
        margin: 0 13px 5px 0;
        width: 21px
    }
}

/* 顶部登录后下拉动画 */
.fade-enter-active, .fade-leave-active {
    transition: opacity 0.2s ease;
}

.fade-enter, .fade-leave-to {
    opacity: 0;
}

/* 登录页面渐变背景 */
.account-bg {
    background-image: radial-gradient(circle farthest-side at center, #2c2c2c 0, #141414 100%);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: #141414;
    width: 100%;
    height: 100%;
    min-width: 320px;
    overflow-x: hidden;
    padding: 0;
}
.account-main{
    background: transparent no-repeat top;
    background-size: cover;
}

/* 修复暗色主题页面里 Vant 弹窗文字继承异常导致内容不可见 */
.van-dialog {
    color: #323233 !important;
    background: #fff !important;
}

.van-dialog__header,
.van-dialog__message,
.van-dialog__content {
    color: #323233 !important;
}

.van-dialog__message {
    min-height: 24px;
}

.van-dialog .van-button,
.van-dialog__confirm,
.van-dialog__cancel {
    color: #a83df0 !important;
    background: #fff !important;
}

/* 模板主题色覆盖：主色取 logo 紫，辅色取 logo 青蓝 */
body .text-blue-400,
body .text-blue-500 {
    color: #a83df0 !important;
}

body .text-red-400,
body .text-red-500 {
    color: #a83df0 !important;
}

body .text-yellow-400 {
    color: #2ec7e6 !important;
}

body .bg-blue-500,
body .bg-blue-600,
body .bg-red-600 {
    background-color: #a83df0 !important;
}

body .hover\:bg-blue-700:hover,
body .hover\:bg-blue-600:hover,
body .hover\:bg-blue-500:hover,
body .hover\:bg-red-700:hover {
    background-color: #2ec7e6 !important;
}

body .bg-blue-900,
body .bg-red-900 {
    background-color: rgba(168, 61, 240, .12) !important;
}

body .border-blue-500,
body .border-blue-500\/30,
body .border-red-500\/30 {
    border-color: rgba(168, 61, 240, .3) !important;
}

body .border-blue-500\/50,
body .border-red-500\/50 {
    border-color: rgba(168, 61, 240, .5) !important;
}

body .hover\:border-blue-500:hover,
body .hover\:border-red-500:hover {
    border-color: #a83df0 !important;
}

body .focus\:border-blue-500:focus,
body .focus\:ring-blue-500:focus,
body .focus\:ring-red-500:focus {
    border-color: #a83df0 !important;
    --tw-ring-color: #a83df0 !important;
}

body .hover\:border-l-\[\#a83df0\]:hover {
    border-left-color: #a83df0 !important;
}

/* 大面积操作控件使用更细腻的紫青渐变，避免纯色块过亮 */
.fever-auth-submit,
.fever-cardquery-submit,
.fever-ledger-panel-head a,
.fever-settings-content [class*="bg-blue-600"],
.fever-idauth-page button[class*="bg-blue-600"],
.fever-idauth-page button[class*="bg-red-600"],
body .bg-blue-600,
body .bg-red-600 {
    background: linear-gradient(92deg, #8d32d7 0%, #a83df0 58%, #2ec7e6 140%) !important;
    box-shadow: 0 12px 26px rgba(168, 61, 240, .12);
}

.fever-auth-submit:hover,
.fever-cardquery-submit:hover,
.fever-ledger-panel-head a:hover,
.fever-settings-content [class*="bg-blue-600"]:hover,
.fever-idauth-page button[class*="bg-blue-600"]:hover,
.fever-idauth-page button[class*="bg-red-600"]:hover,
body .hover\:bg-blue-700:hover,
body .hover\:bg-blue-600:hover,
body .hover\:bg-blue-500:hover,
body .hover\:bg-red-700:hover {
    background: linear-gradient(92deg, #2ec7e6 0%, #a83df0 100%) !important;
}

.home-section-actions button:hover,
.home-filter-list button.active,
.fever-recharge-option.active,
.fever-recharge-product.active {
    background: linear-gradient(92deg, #8d32d7 0%, #a83df0 72%, #2ec7e6 150%) !important;
    color: #fff !important;
}

/* 点卡查询页主题样式：只改视觉，不改变查询逻辑 */
.fever-cardquery-body {
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, .97), rgba(12, 12, 12, .93)),
        url("/static/template/nexon/images/bg.png");
    background-size: cover;
    background-attachment: fixed;
    color: rgba(255, 255, 255, .72);
    overflow-x: hidden;
}

.fever-cardquery-app {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.fever-cardquery-page {
    flex: 1;
    width: min(1640px, calc(100% - 256px));
    margin: 0 auto;
    padding: 128px 0 82px;
}

.fever-cardquery-layout {
    display: grid;
    grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
    gap: 42px;
    align-items: start;
}

.fever-cardquery-hero {
    position: sticky;
    top: 110px;
    min-height: 360px;
    padding: 44px 38px;
    background:
        linear-gradient(140deg, rgba(168, 61, 240, .14), rgba(0, 0, 0, .22)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 18px),
        #111214;
    border: 1px solid rgba(255, 255, 255, .08);
    overflow: hidden;
}

.fever-cardquery-hero::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #a83df0;
}

.fever-cardquery-hero::after {
    content: "";
    position: absolute;
    right: -118px;
    bottom: -154px;
    width: 330px;
    height: 330px;
    border: 58px solid rgba(168, 61, 240, .12);
    border-radius: 50%;
}

.fever-cardquery-eyebrow {
    position: relative;
    z-index: 1;
    margin: 0 0 20px;
    color: #a83df0;
    font-size: 15px;
    line-height: 1;
    font-weight: 800;
}

.fever-cardquery-hero h1 {
    position: relative;
    z-index: 1;
    margin: 0 0 18px;
    color: #fff;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: 0;
}

.fever-cardquery-hero p:last-child {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: 16px;
    line-height: 1.8;
}

.fever-cardquery-content {
    min-width: 0;
}

.fever-cardquery-panel,
.fever-cardquery-faq {
    background: #111214;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .32);
}

.fever-cardquery-panel-head {
    padding: 24px 30px 0;
}

.fever-cardquery-panel-head h2,
.fever-cardquery-section-title h3,
.fever-cardquery-faq-title h4 {
    margin: 0;
    color: #fff;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: 0;
}

.fever-cardquery-panel-head h2::after,
.fever-cardquery-section-title h3::after,
.fever-cardquery-faq-title h4::after {
    content: "";
    display: block;
    width: 28px;
    height: 4px;
    margin-top: 14px;
    background: #a83df0;
    border-radius: 2px;
}

.fever-cardquery-form {
    padding: 30px;
}

.fever-cardquery-fields {
    display: grid;
    gap: 20px;
}

.fever-cardquery-field {
    display: grid;
    grid-template-columns: 94px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
}

.fever-cardquery-field-top {
    align-items: start;
}

.fever-cardquery-field label {
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
}

.fever-cardquery-input {
    width: 100%;
    height: 48px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 0;
    outline: none;
    background: #0b0f17;
    color: #fff;
    font-size: 14px;
    transition: border-color .2s ease, background .2s ease;
}

.fever-cardquery-input::placeholder {
    color: rgba(255, 255, 255, .28);
}

.fever-cardquery-input:focus {
    border-color: #a83df0;
    background: #101624;
}

.fever-cardquery-captcha {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.fever-cardquery-captcha-img {
    width: 112px;
    height: 48px;
    object-fit: cover;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, .14);
    cursor: pointer;
}

.fever-cardquery-actions {
    margin-top: 28px;
    padding-left: 112px;
}

.fever-cardquery-submit {
    width: min(280px, 100%);
    height: 50px;
    border: 0;
    border-radius: 0;
    background: #a83df0;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.fever-cardquery-submit:hover {
    background: #2ec7e6;
}

.fever-cardquery-submit:active {
    transform: translateY(1px);
}

.fever-cardquery-results {
    margin-top: 34px;
}

.fever-cardquery-section-title {
    margin: 0 0 18px;
}

.fever-cardquery-table-wrap {
    margin-bottom: 32px;
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, .08);
    background: #101113;
}

.fever-cardquery-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 14px;
}

.fever-cardquery-table thead {
    background: #191a1d;
}

.fever-cardquery-table th,
.fever-cardquery-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.fever-cardquery-table th {
    color: #fff;
    font-weight: 800;
}

.fever-cardquery-table td {
    color: rgba(255, 255, 255, .68);
}

.fever-cardquery-mobile-record {
    padding: 14px;
    background: #151619;
    border: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
}

.fever-cardquery-faq {
    margin-top: 34px;
    padding: 30px;
}

.fever-cardquery-faq-title {
    margin-bottom: 22px;
}

.fever-cardquery-faq-item {
    overflow: hidden;
    background: #151619;
    border: 1px solid rgba(255, 255, 255, .08);
}

.fever-cardquery-faq-question {
    min-height: 58px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #fff;
    cursor: pointer;
    transition: background .2s ease;
}

.fever-cardquery-faq-question:hover {
    background: #1b1c20;
}

.fever-cardquery-faq-question span {
    font-weight: 800;
}

.fever-cardquery-faq-question i {
    color: #a83df0;
    font-size: 20px;
}

.fever-cardquery-faq-answer {
    padding: 0 18px 18px;
    color: rgba(255, 255, 255, .64);
    font-size: 14px;
    line-height: 1.75;
}

.fever-notice-panel {
    min-width: 0;
    background: #111214;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .32);
}

.fever-notice-layout {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.fever-notice-tabs {
    margin: 24px 30px 0;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.fever-notice-tab {
    position: relative;
    min-width: max-content;
    height: 48px;
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, .44);
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    cursor: pointer;
    transition: color .2s ease;
}

.fever-notice-tab + .fever-notice-tab {
    margin-left: 18px;
}

.fever-notice-tab:hover,
.fever-notice-tab.active {
    color: #fff;
}

.fever-notice-tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 28px;
    height: 4px;
    border-radius: 2px;
    background: #a83df0;
}

.fever-notice-list {
    min-height: 520px;
    padding: 10px 30px 30px;
}

.fever-notice-item {
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transition: background .2s ease;
}

.fever-notice-item:last-child {
    border-bottom: 0;
}

.fever-notice-item-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.fever-notice-item-head h3 {
    margin: 0;
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 800;
}

.fever-notice-item-head span {
    flex: 0 0 auto;
    color: rgba(255, 255, 255, .36);
    font-size: 12px;
    line-height: 1.8;
}

.fever-notice-content {
    margin-top: 10px;
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
    line-height: 1.8;
}

.fever-notice-content a {
    color: rgba(255, 255, 255, .86);
}

.fever-notice-empty {
    min-height: 430px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .5);
    text-align: center;
}

.fever-notice-empty i {
    color: rgba(168, 61, 240, .82);
    font-size: 44px;
    line-height: 1;
    margin-bottom: 16px;
}

.fever-notice-empty div {
    color: rgba(255, 255, 255, .72);
    font-size: 16px;
    font-weight: 800;
}

.fever-notice-empty p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, .38);
    font-size: 13px;
}

.fever-notice-pagination {
    padding: 20px 30px 28px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.fever-notice-pagination button {
    height: 36px;
    min-width: 78px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: #151619;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.fever-notice-pagination button:hover:not(:disabled) {
    border-color: #a83df0;
    background: #a83df0;
    color: #fff;
}

.fever-notice-pagination button:disabled {
    opacity: .38;
    cursor: not-allowed;
}

.fever-notice-pagination span {
    color: rgba(255, 255, 255, .58);
    font-size: 13px;
}

/* 帮助/协议类页面主题样式：保留后台动态内容，只统一外观风格 */
.fever-help-page {
    padding-top: 126px;
}

.fever-help-shell {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.fever-help-panel {
    min-height: 620px;
    background: #111214;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .32);
}

.fever-help-panel-head {
    position: relative;
    padding: 34px 42px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background:
        linear-gradient(120deg, rgba(168, 61, 240, .13), rgba(168, 61, 240, 0) 44%),
        #151619;
    overflow: hidden;
}

.fever-help-panel-head::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #a83df0;
}

.fever-help-panel-head::after {
    content: "";
    position: absolute;
    right: -92px;
    top: -116px;
    width: 260px;
    height: 260px;
    border: 48px solid rgba(168, 61, 240, .1);
    border-radius: 50%;
}

.fever-help-panel-head h1 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #fff;
    font-size: 34px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: 0;
}

.fever-help-content {
    padding: 38px 42px 48px;
    color: rgba(255, 255, 255, .66);
    font-size: 15px;
    line-height: 1.9;
    word-break: break-word;
}

.fever-help-content * {
    color: rgba(255, 255, 255, .66) !important;
    background: transparent !important;
}

.fever-help-content h1,
.fever-help-content h2,
.fever-help-content h3,
.fever-help-content h4,
.fever-help-content h5,
.fever-help-content h6 {
    margin: 30px 0 14px;
    color: #fff !important;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0;
}

.fever-help-content h1 {
    font-size: 28px;
}

.fever-help-content h2 {
    font-size: 24px;
}

.fever-help-content h3 {
    font-size: 20px;
}

.fever-help-content h4,
.fever-help-content h5,
.fever-help-content h6 {
    font-size: 17px;
}

.fever-help-content p,
.fever-help-content div {
    color: rgba(255, 255, 255, .66);
}

.fever-help-content p {
    margin: 0 0 14px;
}

.fever-help-content a {
    color: rgba(255, 255, 255, .9) !important;
    text-decoration: underline;
    text-decoration-color: rgba(168, 61, 240, .65);
    text-underline-offset: 4px;
}

.fever-help-content a:hover {
    color: #fff !important;
    text-decoration-color: #a83df0;
}

.fever-help-content ul,
.fever-help-content ol {
    margin: 12px 0 18px;
    padding-left: 24px;
}

.fever-help-content li {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, .66);
}

.fever-help-content strong,
.fever-help-content b {
    color: rgba(255, 255, 255, .86) !important;
}

.fever-help-content table {
    width: 100%;
    margin: 22px 0;
    border-collapse: collapse;
    background: #101113 !important;
    color: rgba(255, 255, 255, .66);
}

.fever-help-content th,
.fever-help-content td {
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .1);
    vertical-align: top;
}

.fever-help-content th {
    background: #191a1d !important;
    color: #fff !important;
    font-weight: 800;
}

.fever-help-content img {
    max-width: 100%;
    height: auto;
}

.fever-help-content hr {
    margin: 28px 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

/* 账户中心页面：购买记录、余额账单、账户设置统一为黑红游戏风格 */
.fever-account-body {
    background:
        linear-gradient(90deg, rgba(5, 5, 5, .97), rgba(12, 12, 12, .94)),
        url("/static/template/nexon/images/bg.png");
    background-size: cover;
    background-attachment: fixed;
}

.fever-account-app {
    min-height: 100vh;
}

.fever-account-page {
    flex: 1;
    width: min(1640px, calc(100% - 256px));
    margin: 0 auto;
    padding: 118px 0 82px;
    color: rgba(255, 255, 255, .68);
}

.fever-account-page > div {
    max-width: none !important;
    padding: 0 !important;
    color: rgba(255, 255, 255, .68) !important;
}

.fever-account-panel {
    min-height: 0 !important;
    background: #111214 !important;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .32);
}

.fever-account-panel > div {
    max-width: none !important;
    padding: 0 !important;
}

.fever-account-records .mb-6:first-child,
.fever-account-title {
    position: relative;
    margin: 0 !important;
    padding: 34px 42px 30px !important;
    border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
    background:
        linear-gradient(120deg, rgba(168, 61, 240, .13), rgba(168, 61, 240, 0) 44%),
        #151619 !important;
    overflow: hidden;
}

.fever-account-records .mb-6:first-child::before,
.fever-account-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #a83df0;
}

.fever-account-records h1,
.fever-account-title {
    color: #fff !important;
    font-size: 32px !important;
    line-height: 1.25 !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
}

.fever-account-records .mb-6:first-child [class*="border-t"] {
    display: none;
}

.fever-account-records .mb-6:first-child button {
    color: rgba(255, 255, 255, .6) !important;
}

.fever-account-records .mb-6:first-child button:hover {
    color: #fff !important;
}

.fever-account-records .mb-6:first-child strong {
    color: #2ec7e6 !important;
}

.fever-account-records .hidden.md\:block,
.fever-account-records .block.md\:hidden,
.fever-account-records .flex.justify-center.list-none {
    padding-left: 42px;
    padding-right: 42px;
}

.fever-account-records .hidden.md\:block {
    padding-top: 34px;
}

.fever-account-records [class*="border-t"][class*="border-b"] {
    border: 1px solid rgba(255, 255, 255, .08) !important;
    border-radius: 0 !important;
    background: #101113 !important;
}

.fever-account-records [class*="bg-gradient-to-b"] {
    background: #191a1d !important;
}

.fever-account-records [class*="divide-y"] {
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.fever-account-records [class*="grid-cols-12"] > div {
    border-color: rgba(255, 255, 255, .07) !important;
}

.fever-account-records [class*="font-normal"][class*="text-white"] {
    color: #fff !important;
    font-weight: 800 !important;
}

.fever-account-records [class*="text-[#ccc]"],
.fever-account-records [class*="text-[#aaa]"],
.fever-account-records [class*="text-[#777]"] {
    color: rgba(255, 255, 255, .62) !important;
}

.fever-account-records [class*="hover:bg-[#2a2a2a]"]:hover {
    background: #181a1d !important;
}

.fever-account-records [class*="bg-[#1e1e1e]"] {
    border-color: rgba(255, 255, 255, .08) !important;
    border-radius: 0 !important;
    background: #151619 !important;
}

.fever-account-records .van-pagination {
    margin-top: 4px;
}

.fever-account-records .van-pagination__item {
    border-color: rgba(255, 255, 255, .1) !important;
    background: #151619 !important;
    color: rgba(255, 255, 255, .72) !important;
}

.fever-account-records .van-pagination__item--active,
.fever-account-records .van-pagination__item:active {
    background: #a83df0 !important;
    color: #fff !important;
}

.fever-ledger-page {
    display: grid;
    gap: 24px;
}

.fever-ledger-hero {
    position: relative;
    min-height: 190px;
    padding: 38px 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(168, 61, 240, .15), rgba(168, 61, 240, 0) 48%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 18px),
        #111214;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .28);
}

.fever-ledger-hero::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #a83df0;
}

.fever-ledger-hero::after {
    content: "";
    position: absolute;
    right: -92px;
    bottom: -150px;
    width: 340px;
    height: 340px;
    border: 58px solid rgba(168, 61, 240, .1);
    border-radius: 50%;
}

.fever-ledger-hero > div {
    position: relative;
    z-index: 1;
}

.fever-ledger-hero h1 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 42px;
    line-height: 1.12;
    font-weight: 800;
}

.fever-ledger-hero span {
    display: block;
    color: rgba(255, 255, 255, .58);
    font-size: 15px;
    line-height: 1.75;
}

.fever-ledger-summary {
    flex: 0 0 220px;
    padding: 22px;
    background: rgba(0, 0, 0, .24);
    border: 1px solid rgba(255, 255, 255, .08);
}

.fever-ledger-summary span {
    color: rgba(255, 255, 255, .5);
    font-size: 13px;
    font-weight: 800;
}

.fever-ledger-summary strong {
    display: block;
    margin-top: 12px;
    color: #2ec7e6;
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
}

.fever-ledger-panel {
    background: #111214;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .24);
}

.fever-ledger-panel-head {
    min-height: 84px;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: #151619;
}

.fever-ledger-panel-head h2 {
    margin: 0;
    color: #fff;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 800;
}

.fever-ledger-panel-head span {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, .42);
    font-size: 13px;
}

.fever-ledger-panel-head a {
    height: 38px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #a83df0;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.fever-ledger-panel-head a:hover {
    background: #2ec7e6;
}

.fever-ledger-table-wrap {
    position: relative;
    min-height: 420px;
    overflow-x: auto;
}

.fever-ledger-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 14px;
}

.fever-ledger-table thead {
    background: #191a1d;
}

.fever-ledger-table th,
.fever-ledger-table td {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    vertical-align: middle;
}

.fever-ledger-table th {
    color: #fff;
    font-weight: 800;
    white-space: nowrap;
}

.fever-ledger-table td {
    color: rgba(255, 255, 255, .64);
}

.fever-ledger-table tbody tr:hover {
    background: #181a1d;
}

.fever-ledger-money,
.fever-ledger-money b {
    color: #2ec7e6 !important;
    font-weight: 800;
}

.fever-ledger-empty {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, .44);
    text-align: center;
}

.fever-ledger-empty i {
    color: rgba(168, 61, 240, .86);
    font-size: 46px;
    line-height: 1;
}

.fever-ledger-empty strong {
    color: rgba(255, 255, 255, .76);
    font-size: 17px;
    font-weight: 800;
}

.fever-ledger-empty span {
    color: rgba(255, 255, 255, .42);
    font-size: 13px;
}

.fever-ledger-mobile {
    padding: 20px;
    display: grid;
    gap: 12px;
}

.fever-ledger-card {
    padding: 16px;
    background: #151619;
    border: 1px solid rgba(255, 255, 255, .08);
}

.fever-ledger-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.fever-ledger-card-top strong {
    color: #fff;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 800;
}

.fever-ledger-card dl {
    margin: 12px 0 0;
    display: grid;
    gap: 9px;
}

.fever-ledger-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.fever-ledger-card dt {
    color: rgba(255, 255, 255, .42);
    font-size: 12px;
}

.fever-ledger-card dd {
    margin: 0;
    min-width: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    text-align: right;
    word-break: break-word;
}

.fever-ledger-pagination {
    padding: 18px 30px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: #0d0e10;
}

.fever-ledger-pagination .van-pagination {
    width: min(520px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr) 116px;
    align-items: center;
    gap: 10px;
}

.fever-ledger-pagination .van-pagination__items {
    display: contents;
}

.fever-ledger-pagination .van-pagination__item {
    min-width: 0 !important;
    height: 40px !important;
    border: 1px solid rgba(255, 255, 255, .09) !important;
    border-radius: 0 !important;
    background: #151619 !important;
    color: rgba(255, 255, 255, .62) !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.fever-ledger-pagination .van-pagination__item:not(.van-pagination__item--disabled):hover {
    border-color: rgba(168, 61, 240, .65) !important;
    color: #fff !important;
}

.fever-ledger-pagination .van-pagination__item--active {
    order: 2;
    border-color: transparent !important;
    background: transparent !important;
    color: rgba(255, 255, 255, .54) !important;
    cursor: default;
}

.fever-ledger-pagination .van-pagination__page-desc {
    height: 40px;
    order: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .06);
    background: #101113;
    color: rgba(255, 255, 255, .48);
    font-size: 13px;
    font-weight: 800;
}

.fever-ledger-pagination .van-pagination__prev {
    order: 1;
}

.fever-ledger-pagination .van-pagination__next {
    order: 3;
}

.fever-ledger-pagination .van-pagination__prev:active,
.fever-ledger-pagination .van-pagination__next:active {
    background: #a83df0 !important;
    color: #fff !important;
}

.fever-ledger-pagination .van-pagination__item--disabled {
    border-color: rgba(255, 255, 255, .05) !important;
    background: #111214 !important;
    color: rgba(255, 255, 255, .2) !important;
    opacity: 1 !important;
}

.fever-settings-page {
    width: min(1180px, calc(100% - 256px));
}

.fever-settings-shell {
    align-items: flex-start;
}

.fever-settings-tabs {
    position: sticky;
    top: 100px;
    padding: 12px;
    background: #111214;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .24);
}

.fever-settings-tabs a {
    min-height: 52px;
    border-radius: 0 !important;
    background: transparent !important;
    color: rgba(255, 255, 255, .48) !important;
    font-weight: 800;
}

.fever-settings-tabs a:hover,
.fever-settings-tabs a[class*="text-white"] {
    background: #181a1d !important;
    color: #fff !important;
}

.fever-settings-tabs a[class*="text-white"]::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 4px;
    background: #a83df0;
}

.fever-settings-tabs [class*="bg-blue-500"] {
    display: none !important;
}

.fever-settings-content [class*="bg-[#1e1e20]"] {
    border: 1px solid rgba(255, 255, 255, .08) !important;
    border-radius: 0 !important;
    background: #111214 !important;
    box-shadow: 0 22px 60px rgba(0, 0, 0, .24);
}

.fever-settings-content [class*="bg-[#2c2e31]"] {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    border-radius: 0 !important;
    background:
        linear-gradient(120deg, rgba(168, 61, 240, .1), rgba(168, 61, 240, 0) 44%),
        #151619 !important;
}

.fever-settings-content h2,
.fever-settings-content h3 {
    color: #fff !important;
    font-weight: 800 !important;
}

.fever-settings-content [class*="text-gray-400"],
.fever-settings-content [class*="text-[#7e7e7f]"] {
    color: rgba(255, 255, 255, .5) !important;
}

.fever-settings-content [class*="text-white"] {
    color: rgba(255, 255, 255, .82) !important;
}

.fever-settings-content [class*="text-blue-500"] {
    color: #a83df0 !important;
    text-decoration: none !important;
}

.fever-settings-content [class*="bg-blue-600"] {
    border-radius: 0 !important;
    background: #a83df0 !important;
}

.fever-settings-content [class*="bg-blue-600"]:hover {
    background: #2ec7e6 !important;
}

/* 账户设置页：真正的工作台布局覆盖 */
.fever-settings-page {
    display: grid;
    gap: 24px;
}

.fever-settings-hero {
    position: relative;
    min-height: 190px;
    padding: 38px 42px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(230px, 320px) 220px;
    align-items: center;
    gap: 24px;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(168, 61, 240, .15), rgba(168, 61, 240, 0) 48%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 18px),
        #111214;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .28);
}

.fever-settings-hero::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #a83df0;
}

.fever-settings-hero::after {
    content: "";
    position: absolute;
    right: -92px;
    bottom: -150px;
    width: 340px;
    height: 340px;
    border: 58px solid rgba(168, 61, 240, .1);
    border-radius: 50%;
}

.fever-settings-hero > * {
    position: relative;
    z-index: 1;
}

.fever-settings-hero-main h1 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 42px;
    line-height: 1.12;
    font-weight: 800;
}

.fever-settings-hero-main span {
    display: block;
    color: rgba(255, 255, 255, .58);
    font-size: 15px;
    line-height: 1.75;
}

.fever-settings-profile,
.fever-settings-balance {
    padding: 22px;
    background: rgba(0, 0, 0, .24);
    border: 1px solid rgba(255, 255, 255, .08);
}

.fever-settings-profile {
    display: flex;
    align-items: center;
    gap: 14px;
}

.fever-settings-profile > i {
    color: #a83df0;
    font-size: 44px;
    line-height: 1;
}

.fever-settings-profile strong {
    display: block;
    max-width: 190px;
    overflow: hidden;
    color: #fff;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fever-settings-profile span,
.fever-settings-balance span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, .48);
    font-size: 13px;
    line-height: 1.3;
}

.fever-settings-balance strong {
    display: block;
    margin-top: 12px;
    color: #2ec7e6;
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
}

.fever-settings-shell {
    align-items: start;
}

.fever-settings-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.fever-settings-grid > .lg\:w-64 {
    width: 260px !important;
    min-width: 0;
}

.fever-settings-content {
    min-width: 0;
}

.fever-settings-tabs {
    padding: 14px;
}

.fever-settings-tabs a {
    min-height: 58px;
    padding: 0 18px !important;
    justify-content: flex-start !important;
    gap: 12px;
}

.fever-settings-tabs a i {
    margin-right: 0 !important;
    color: rgba(255, 255, 255, .5);
    font-size: 22px;
}

.fever-settings-tabs a span {
    display: block !important;
    margin-right: 0 !important;
    font-size: 14px;
}

.fever-settings-tabs a[class*="text-white"] i,
.fever-settings-tabs a:hover i {
    color: #a83df0;
}

.fever-settings-content [class*="-mx-4"][class*="-mt-4"] {
    margin-left: -16px !important;
    margin-right: -16px !important;
    margin-top: -16px !important;
    padding: 24px 26px !important;
    background: #151619 !important;
}

.fever-settings-content [class*="-mx-4"][class*="-mt-4"]::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 4px;
    margin-right: 12px;
    vertical-align: middle;
    background: #a83df0;
}

.fever-settings-content .account-overview-content > .flex {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px !important;
}

.fever-settings-content .account-overview-content > .flex > div {
    width: auto !important;
}

.fever-settings-content .account-overview-content [class*="min-h-28"] {
    min-height: 112px;
}

.fever-settings-content .personal-info-content [class*="hidden md:flex"],
.fever-settings-content .password-security-content [class*="hidden md:flex"],
.fever-settings-content [v-if*="linkedAccount"] [class*="hidden md:flex"] {
    min-height: 170px;
    align-items: stretch;
}

.fever-settings-content .personal-info-content [class*="flex items-start"],
.fever-settings-content .password-security-content [class*="flex items-center"],
.fever-settings-content [v-if*="linkedAccount"] [class*="flex items-center"] {
    min-height: 46px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.fever-settings-body .van-dialog .van-button--primary,
.fever-settings-body .van-dialog .van-button--info {
    border-color: #a83df0 !important;
    background: #a83df0 !important;
    color: #fff !important;
}

/* 实名认证页：账户中心式左右分栏流程布局，只覆盖视觉样式 */
.fever-idauth-page {
    width: min(1180px, calc(100% - 256px));
}

.fever-idauth-page > div {
    max-width: none !important;
    padding: 0 !important;
}

.fever-idauth-page .watermark {
    display: none;
}

.fever-idauth-workspace {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
    align-items: start;
}

.fever-idauth-workspace > .relative {
    display: none;
}

.fever-idauth-hero {
    grid-column: 1 / -1;
    position: relative;
    min-height: 186px;
    padding: 38px 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(168, 61, 240, .16), rgba(168, 61, 240, 0) 48%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 18px),
        #111214;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .28);
}

.fever-idauth-hero::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #a83df0;
}

.fever-idauth-hero::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -150px;
    width: 340px;
    height: 340px;
    border: 58px solid rgba(168, 61, 240, .1);
    border-radius: 50%;
}

.fever-idauth-hero > div {
    position: relative;
    z-index: 1;
}

.fever-idauth-hero h1 {
    margin: 0 0 14px;
    color: #fff !important;
    font-size: 42px !important;
    line-height: 1.12 !important;
    font-weight: 800 !important;
}

.fever-idauth-hero span {
    display: block;
    max-width: 560px;
    color: rgba(255, 255, 255, .58);
    font-size: 15px;
    line-height: 1.75;
}

.fever-idauth-hero-status {
    flex: 0 0 220px;
    padding: 22px;
    background: rgba(0, 0, 0, .24);
    border: 1px solid rgba(255, 255, 255, .08);
}

.fever-idauth-hero-status strong {
    display: block;
    color: #2ec7e6;
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
}

.fever-idauth-hero-status span {
    margin-top: 12px;
    color: rgba(255, 255, 255, .58);
    font-size: 13px;
}

.fever-idauth-main-card {
    grid-column: 1;
}

.fever-idauth-guide-card {
    grid-column: 2;
    grid-row: 2 / span 3;
    position: sticky;
    top: 100px;
}

.fever-idauth-status {
    grid-column: 1;
}

.fever-idauth-page .card-bg {
    border: 1px solid rgba(255, 255, 255, .08) !important;
    border-radius: 0 !important;
    background: #111214 !important;
    box-shadow: 0 22px 60px rgba(0, 0, 0, .24);
}

.fever-idauth-main-card,
.fever-idauth-guide-card {
    overflow: hidden;
}

.fever-idauth-page .verification-header,
.fever-idauth-page .card-bg > .flex.items-center.mb-6:first-child,
.fever-idauth-page .section-title {
    position: relative;
}

.fever-idauth-page .verification-header {
    margin: -24px -24px 32px !important;
    padding: 26px 30px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: #151619;
}

.fever-idauth-page .verification-header::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #a83df0;
}

.fever-idauth-page .verification-header h1 {
    font-size: 24px !important;
}

.fever-idauth-page .verification-header p {
    margin: 0;
}

.fever-idauth-page h1,
.fever-idauth-page h2,
.fever-idauth-page .section-title {
    color: #fff !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
}

.fever-idauth-page h1 {
    font-size: 32px !important;
    line-height: 1.25 !important;
}

.fever-idauth-page .section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px !important;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    font-size: 18px !important;
}

.fever-idauth-page .section-title::before {
    content: "";
    width: 20px;
    height: 4px;
    background: #a83df0;
}

.fever-idauth-page .verification-header p,
.fever-idauth-page .text-darktext,
.fever-idauth-page p,
.fever-idauth-page li {
    color: rgba(255, 255, 255, .58) !important;
}

.fever-idauth-page .upload-card {
    max-width: none !important;
    border-color: rgba(255, 255, 255, .14) !important;
    border-radius: 0 !important;
    background:
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 18px),
        #151619 !important;
    box-shadow: none;
}

.fever-idauth-page .uploader-preview {
    min-height: 190px;
}

.fever-idauth-page .upload-card:hover,
.fever-idauth-page .upload-card.active {
    border-color: #a83df0 !important;
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, .28);
}

.fever-idauth-page .upload-placeholder {
    color: rgba(255, 255, 255, .86) !important;
}

.fever-idauth-page .upload-placeholder i,
.fever-idauth-page .upload-placeholder [class*="text-blue-400"],
.fever-idauth-page [class*="text-blue-400"] {
    color: #a83df0 !important;
}

.fever-idauth-page .requirement-item {
    align-items: center !important;
    border-radius: 0 !important;
    box-shadow: none;
}

.fever-idauth-page .requirement-item img {
    width: 112px;
    height: 72px;
    object-fit: cover;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, .08);
}

.fever-idauth-page input {
    height: 48px;
    border: 1px solid rgba(255, 255, 255, .14) !important;
    border-radius: 0 !important;
    background: #0b0f17 !important;
    color: #fff !important;
    box-shadow: none !important;
}

.fever-idauth-page input::placeholder {
    color: rgba(255, 255, 255, .28) !important;
}

.fever-idauth-page input:focus {
    border-color: #a83df0 !important;
    outline: none !important;
}

.fever-idauth-page button[class*="bg-blue-600"],
.fever-idauth-page button[class*="bg-red-600"] {
    border-radius: 0 !important;
    background: #a83df0 !important;
    color: #fff !important;
    font-weight: 800 !important;
}

.fever-idauth-page button[class*="bg-blue-600"]:hover,
.fever-idauth-page button[class*="bg-red-600"]:hover {
    background: #2ec7e6 !important;
}

.fever-idauth-page .fever-idauth-status {
    margin-bottom: 20px;
    border: 1px solid rgba(46, 199, 230, .28);
    background: rgba(46, 199, 230, .1) !important;
    color: #2ec7e6 !important;
}

.fever-idauth-page .success-badge {
    background: rgba(103, 194, 58, .14) !important;
    color: #67c23a !important;
}

.fever-idauth-page .pending-badge {
    background: rgba(46, 199, 230, .14) !important;
    color: #2ec7e6 !important;
}

.fever-idauth-page .error-badge {
    background: rgba(168, 61, 240, .14) !important;
    color: #a83df0 !important;
}

.fever-idauth-page .bg-green-900,
.fever-idauth-page .bg-red-900 {
    background: rgba(168, 61, 240, .12) !important;
}

.fever-idauth-page .text-green-400,
.fever-idauth-page .text-red-400,
.fever-idauth-page .text-red-500,
.fever-idauth-page .text-primary {
    color: #a83df0 !important;
}

.fever-idauth-page .bg-darkcard {
    border: 1px solid rgba(255, 255, 255, .08);
    background: #151619 !important;
}

.fever-idauth-guide-card {
    padding: 28px !important;
}

.fever-idauth-guide-card > .flex {
    align-items: flex-start;
    padding-bottom: 18px;
    margin-bottom: 20px !important;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.fever-idauth-guide-card h2 {
    font-size: 20px !important;
}

.fever-idauth-guide-card .space-y-4 {
    display: grid;
    gap: 14px;
}

.fever-idauth-guide-card .space-y-4 p {
    margin: 0;
    padding-left: 14px;
    border-left: 3px solid rgba(168, 61, 240, .55);
    line-height: 1.7;
}

.fever-idauth-page .van-uploader__preview-delete {
    background: rgba(168, 61, 240, .9) !important;
}

.fever-points-account {
    position: relative;
    z-index: 1;
    margin-top: 34px;
    padding: 18px;
    background: rgba(0, 0, 0, .24);
    border: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .64);
    font-size: 13px;
    line-height: 1.7;
}

.fever-points-account div {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.fever-points-account a {
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
}

.fever-points-account a:hover {
    color: #fff;
}

.fever-points-account strong {
    color: #2ec7e6;
    font-weight: 800;
}

.fever-points-dropdown {
    position: relative;
    min-width: 0;
}

.fever-points-dropdown-button {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 0;
    outline: none;
    background: #0b0f17;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease;
}

.fever-points-dropdown-button:hover,
.fever-points-dropdown-button:focus {
    border-color: #a83df0;
    background: #101624;
}

.fever-points-selected-card,
.fever-points-placeholder,
.fever-points-dropdown-item {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fever-points-placeholder {
    color: rgba(255, 255, 255, .34);
}

.fever-points-card-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, .12);
}

.fever-points-dropdown-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    z-index: 30;
    max-height: 260px;
    overflow-y: auto;
    background: #151619;
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .38);
}

.fever-points-dropdown-item {
    padding: 12px 14px;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.fever-points-dropdown-item:hover {
    background: #1d1f23;
    color: #fff;
}

.fever-recharge-maintenance {
    color: #2ec7e6;
    font-size: 13px;
    margin-left: auto;
}

.fever-recharge-options,
.fever-recharge-products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.fever-recharge-option,
.fever-recharge-product {
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 0;
    background: #151619;
    color: rgba(255, 255, 255, .78);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.fever-recharge-option i,
.fever-recharge-product i {
    font-size: 19px;
}

.fever-recharge-option:hover,
.fever-recharge-product:hover,
.fever-recharge-option.active,
.fever-recharge-product.active {
    border-color: #a83df0;
    background: #a83df0;
    color: #fff;
}

.fever-recharge-product {
    min-height: 72px;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
}

.fever-recharge-product div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 17px;
    line-height: 1.1;
}

.fever-recharge-product span {
    color: #2ec7e6;
    font-size: 12px;
    line-height: 1.3;
    text-align: center;
}

.fever-recharge-product.active span,
.fever-recharge-product:hover span {
    color: #fff;
}

@media (max-width: 1279px) {
    .fever-cardquery-page {
        width: calc(100% - 48px);
    }

    .fever-cardquery-layout {
        grid-template-columns: 1fr;
    }

    .fever-cardquery-hero {
        position: relative;
        top: auto;
        min-height: 0;
    }
}

@media (max-width: 767px) {
    .fever-cardquery-page {
        width: calc(100% - 28px);
        padding: 94px 0 48px;
    }

    .fever-cardquery-hero {
        padding: 28px 22px;
    }

    .fever-cardquery-hero h1 {
        font-size: 31px;
    }

    .fever-cardquery-panel-head,
    .fever-cardquery-form,
    .fever-cardquery-faq,
    .fever-notice-list,
    .fever-notice-pagination,
    .fever-help-panel-head,
    .fever-help-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .fever-notice-tabs {
        margin-left: 20px;
        margin-right: 20px;
    }

    .fever-help-page {
        padding-top: 94px;
    }

    .fever-help-panel {
        min-height: 480px;
    }

    .fever-help-panel-head {
        padding-top: 28px;
        padding-bottom: 24px;
    }

    .fever-help-panel-head h1 {
        font-size: 28px;
    }

    .fever-help-content {
        padding-top: 28px;
        padding-bottom: 34px;
        font-size: 14px;
        line-height: 1.85;
    }

    .fever-notice-item-head {
        display: block;
    }

    .fever-notice-item-head span {
        display: block;
        margin-top: 6px;
    }

    .fever-cardquery-field {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .fever-recharge-options,
    .fever-recharge-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fever-cardquery-captcha-img {
        width: 104px;
    }

    .fever-cardquery-actions {
        padding-left: 0;
    }

    .fever-cardquery-submit {
        width: 100%;
    }

    .fever-points-account {
        margin-top: 24px;
    }

    .fever-account-page,
    .fever-settings-page,
    .fever-idauth-page {
        width: calc(100% - 28px);
        padding: 94px 0 48px;
    }

    .fever-account-records .mb-6:first-child,
    .fever-account-title {
        padding: 28px 20px 24px !important;
    }

    .fever-account-records h1,
    .fever-account-title {
        font-size: 28px !important;
    }

    .fever-account-records .hidden.md\:block,
    .fever-account-records .block.md\:hidden,
    .fever-account-records .flex.justify-center.list-none {
        padding-left: 20px;
        padding-right: 20px;
    }

    .fever-ledger-hero {
        min-height: 0;
        padding: 28px 22px;
        display: block;
    }

    .fever-ledger-hero h1 {
        font-size: 32px;
    }

    .fever-ledger-summary {
        margin-top: 22px;
        width: 100%;
    }

    .fever-ledger-panel-head {
        padding: 20px;
        display: block;
    }

    .fever-ledger-panel-head a {
        width: max-content;
        margin-top: 16px;
    }

    .fever-ledger-pagination {
        padding-left: 20px;
        padding-right: 20px;
    }

    .fever-settings-tabs {
        position: static;
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fever-settings-tabs a {
        min-height: 46px;
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .fever-settings-tabs a[class*="text-white"]::before {
        left: 12px;
        top: auto;
        right: 12px;
        bottom: 0;
        width: auto;
        height: 3px;
    }

    .fever-settings-hero {
        min-height: 0;
        padding: 28px 22px;
        display: block;
    }

    .fever-settings-hero-main h1 {
        font-size: 32px;
    }

    .fever-settings-profile,
    .fever-settings-balance {
        margin-top: 16px;
    }

    .fever-settings-shell {
        display: block !important;
    }

    .fever-settings-grid {
        display: block !important;
    }

    .fever-settings-grid > .lg\:w-64 {
        width: 100% !important;
    }

    .fever-settings-content .account-overview-content > .flex {
        grid-template-columns: 1fr;
    }

    .fever-idauth-page .verification-header {
        margin: -24px -24px 28px !important;
        padding: 28px 20px 24px;
    }

    .fever-idauth-page h1 {
        font-size: 28px !important;
    }

    .fever-idauth-workspace {
        display: block;
    }

    .fever-idauth-hero {
        min-height: 0;
        padding: 28px 22px;
        display: block;
        margin-bottom: 20px;
    }

    .fever-idauth-hero h1 {
        font-size: 32px !important;
    }

    .fever-idauth-hero-status {
        margin-top: 22px;
        width: 100%;
    }

    .fever-idauth-guide-card {
        position: static;
        margin-top: 20px;
    }
}

/* 网易游戏风格登录页：只负责视觉布局，不改变表单提交逻辑 */
.fever-auth-body {
    min-height: 100vh;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, .96) 0%, rgba(8, 8, 8, .9) 42%, rgba(18, 18, 18, .96) 100%),
        url("/static/template/nexon/images/bg.png");
    background-color: #0d1018;
    background-size: cover;
    color: rgba(255, 255, 255, .72);
}

.fever-auth-app {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.fever-auth-page {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 104px 24px 80px;
}

.fever-auth-shell {
    width: min(1180px, 100%);
    min-height: 560px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    background: #111722;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .46);
}

.fever-auth-side {
    position: relative;
    min-height: 560px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .78)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 18px),
        #141414;
}

.fever-auth-side::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #a83df0;
}

.fever-auth-side::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -180px;
    width: 420px;
    height: 420px;
    border: 72px solid rgba(168, 61, 240, .16);
    border-radius: 50%;
}

.fever-auth-logo {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: max-content;
}

.fever-auth-logo img {
    display: block;
    height: 42px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
}

.fever-auth-side-content {
    position: relative;
    z-index: 1;
    max-width: 440px;
}

.fever-auth-kicker {
    margin: 0 0 18px;
    color: #a83df0;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
}

.fever-auth-side-content h1 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 46px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: 0;
}

.fever-auth-side-content p:last-child {
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: 16px;
    line-height: 1.8;
}

.fever-auth-card {
    background: #111214;
    padding: 54px 46px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fever-auth-tabs {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-bottom: 34px;
    border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.fever-auth-tab {
    position: relative;
    height: 52px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, .4);
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    transition: color .2s ease;
}

.fever-auth-tab.active,
.fever-auth-tab:hover {
    color: #fff;
}

.fever-auth-tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 28px;
    height: 4px;
    border-radius: 2px;
    background: #a83df0;
}

.fever-auth-form-wrap {
    width: 100%;
}

.fever-auth-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.fever-auth-field .form-label {
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
}

.fever-auth-input {
    width: 100%;
    height: 48px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 0;
    outline: none;
    background: #0b0f17;
    color: #fff;
    font-size: 14px;
    transition: border-color .2s ease, background .2s ease;
}

.fever-auth-input::placeholder {
    color: rgba(255, 255, 255, .28);
}

.fever-auth-input:focus {
    border-color: #a83df0;
    background: #101624;
}

.fever-auth-captcha {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fever-auth-captcha-input {
    flex: 1;
    min-width: 0;
}

.fever-auth-captcha-img {
    height: 48px;
    width: 112px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, .14);
    cursor: pointer;
}

.fever-auth-checkrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 4px 0 24px;
    color: rgba(255, 255, 255, .54);
    font-size: 13px;
    line-height: 1.5;
}

.fever-auth-checkrow a {
    color: rgba(255, 255, 255, .86);
    text-decoration: none;
}

.fever-auth-checkrow a:hover {
    color: #fff;
}

.fever-auth-check {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, .24);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease;
}

.fever-auth-check.active {
    background: #a83df0;
    border-color: #a83df0;
}

.fever-auth-checkmark {
    color: #fff;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
}

.fever-auth-submit {
    width: 100%;
    height: 50px;
    border: 0;
    border-radius: 0;
    background: #a83df0;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.fever-auth-submit:hover {
    background: #2ec7e6;
}

.fever-auth-submit:active {
    transform: translateY(1px);
}

@media (max-width: 900px) {
    .fever-auth-page {
        padding: 28px 16px 48px;
        align-items: flex-start;
    }

    .fever-auth-shell {
        min-height: 0;
        display: block;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .fever-auth-side {
        min-height: 0;
        padding: 18px 0 28px;
        background: transparent;
    }

    .fever-auth-side::before,
    .fever-auth-side::after {
        display: none;
    }

    .fever-auth-logo img {
        height: 34px;
        max-width: 220px;
    }

    .fever-auth-side-content {
        margin-top: 54px;
    }

    .fever-auth-side-content h1 {
        font-size: 32px;
        margin-bottom: 14px;
    }

    .fever-auth-side-content p:last-child {
        font-size: 14px;
        line-height: 1.65;
    }

    .fever-auth-card {
        margin-top: 24px;
        padding: 28px 20px 26px;
        background: #111214;
        border: 1px solid rgba(255, 255, 255, .08);
    }

    .fever-auth-tabs {
        margin-bottom: 26px;
    }

    .fever-auth-tab {
        font-size: 18px;
    }

    .fever-auth-captcha {
        align-items: stretch;
    }

    .fever-auth-captcha-img {
        width: 104px;
    }
}


/* 全局细灰暗滚动条 */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #1f2937; /* gray-800 */
}

::-webkit-scrollbar-thumb {
    background: #4b5563; /* gray-600 */
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6b7280; /* gray-500 */
}

/* Firefox 支持 */
* {
    scrollbar-width: thin;
    scrollbar-color: #4b5563 #1f2937;
}
/* 首页幻灯电脑版小图导航预览图片 */
.preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 首页顶部导航：按网易发烧游戏参考图重做 */
.fever-topbar {
    height: 70px;
    background: #07090f !important;
    color: #fff;
}

.fever-topbar-inner {
    width: min(1640px, calc(100% - 256px));
    height: 70px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fever-topbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
    flex: 0 0 auto;
}

.fever-topbar-logo-img {
    display: block;
    height: 36px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

.fever-topbar-brand-mark {
    position: relative;
    width: 34px;
    height: 34px;
    display: inline-block;
}

.fever-topbar-brand-mark::before,
.fever-topbar-brand-mark::after {
    content: "";
    position: absolute;
    border: 3px solid #e5292f;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    transform: rotate(-35deg);
}

.fever-topbar-brand-mark::before {
    inset: 1px;
}

.fever-topbar-brand-mark::after {
    inset: 9px 5px 5px 9px;
}

.fever-topbar-brand-text {
    color: rgba(255, 255, 255, .82);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .3px;
}

.fever-topbar-nav {
    align-items: center;
    gap: 34px;
    margin-left: 68px;
    margin-right: auto;
    height: 70px;
}

.fever-topbar-nav a {
    position: relative;
    height: 70px;
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, .38);
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: color .2s ease;
}

.fever-topbar-nav a:hover,
.fever-topbar-nav a.active {
    color: #fff;
}

.fever-topbar-nav a.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 10px;
    width: 22px;
    height: 4px;
    border-radius: 2px;
    background: #a83df0;
    transform: translateX(-50%);
}

.fever-topbar-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 0 0 auto;
}

.fever-topbar-auth-link {
    color: rgba(255, 255, 255, .38);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    line-height: 70px;
    transition: color .2s ease;
}

.fever-topbar-auth-link:hover {
    color: rgba(255, 255, 255, .82);
}

.fever-topbar-account {
    position: relative;
}

.fever-topbar-account-button {
    height: 70px;
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, .46);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    transition: color .2s ease;
}

.fever-topbar-account-button:hover {
    color: rgba(255, 255, 255, .82);
}

.fever-topbar-account-button .mdi-account-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #24262b;
    color: rgba(255, 255, 255, .46);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    line-height: 1;
    transition: background .2s ease, color .2s ease;
}

.fever-topbar-account-button:hover .mdi-account-circle {
    background: #2f3137;
    color: rgba(255, 255, 255, .7);
}

.fever-topbar-account-button span {
    max-width: 132px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fever-topbar-account-arrow {
    color: currentColor;
    font-size: 18px;
    line-height: 1;
    transition: transform .2s ease;
}

.fever-topbar-account-arrow.active {
    transform: rotate(180deg);
}

.fever-topbar-account-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 348px;
    padding: 22px 24px 24px;
    background: #202124;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 2px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .45);
}

.fever-topbar-account-menu::before {
    content: "";
    position: absolute;
    top: -10px;
    right: 18px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #202124;
}

.fever-topbar-account-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.fever-topbar-account-card > i {
    flex: 0 0 auto;
    color: #a83df0;
    font-size: 38px;
    line-height: 1;
}

.fever-topbar-account-card div {
    min-width: 0;
}

.fever-topbar-account-card strong {
    display: block;
    max-width: 270px;
    overflow: hidden;
    color: #fff;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fever-topbar-account-card span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, .46);
    font-size: 13px;
    line-height: 1.3;
}

.fever-topbar-account-balance {
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.fever-topbar-account-balance span {
    color: rgba(255, 255, 255, .48);
    font-size: 15px;
    font-weight: 800;
}

.fever-topbar-account-balance strong {
    color: #2ec7e6;
    font-size: 19px;
    line-height: 1;
    font-weight: 800;
}

.fever-topbar-account-links {
    padding-top: 12px;
}

.fever-topbar-account-links a {
    height: 48px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, .68);
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

.fever-topbar-account-links a:hover {
    color: #fff;
    transform: translateX(3px);
}

.fever-topbar-account-links i {
    width: 24px;
    color: rgba(255, 255, 255, .62);
    font-size: 22px;
    line-height: 1;
    text-align: center;
}

.fever-topbar-account-links a:hover i {
    color: #a83df0;
}

.fever-topbar-mobile-actions {
    display: flex;
    align-items: center;
}

@media (max-width: 1279px) {
    .fever-topbar {
        height: 70px !important;
    }

    .fever-topbar.fever-topbar-menu-open {
        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        min-height: 100vh !important;
        min-height: 100dvh !important;
        overflow: visible !important;
        background: transparent !important;
        border-bottom: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
    }

    .fever-topbar:has(.fever-mobile-menu-overlay) {
        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        min-height: 100vh !important;
        min-height: 100dvh !important;
        overflow: visible !important;
        background: transparent !important;
        border-bottom: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
    }

    .fever-topbar-inner {
        width: calc(100% - 32px);
        height: 70px !important;
    }

    .fever-topbar-brand-text {
        font-size: 18px;
    }

    .fever-topbar-logo-img {
        max-height: 36px;
        max-width: 220px;
    }

    .fever-topbar-mobile-actions {
        flex: 0 0 auto;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .fever-topbar-mobile-actions > button {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        min-height: 42px !important;
        max-width: 42px !important;
        max-height: 42px !important;
        padding: 0 !important;
        border: 1px solid rgba(180, 196, 235, .10) !important;
        border-radius: 50% !important;
        background: rgba(32, 40, 58, .94) !important;
        box-shadow: none !important;
        opacity: 1 !important;
    }

    .fever-topbar-mobile-actions > button:hover {
        background: rgba(40, 50, 72, .98) !important;
    }

    .fever-topbar-mobile-actions > button i {
        font-size: 24px !important;
        line-height: 1 !important;
        color: rgba(245, 248, 255, .88) !important;
    }

    .fever-mobile-menu-overlay {
        position: absolute !important;
        inset: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        min-height: 100vh !important;
        min-height: 100dvh !important;
        background: rgba(0, 0, 0, .52) !important;
        overflow: hidden !important;
    }

    .fever-mobile-menu-panel {
        position: absolute !important;
        top: 0 !important;
        right: 0 !important;
        width: min(375px, 100vw) !important;
        min-width: 0 !important;
        height: 100vh !important;
        height: 100dvh !important;
        min-height: 100vh !important;
        min-height: 100dvh !important;
        background:
            radial-gradient(circle at 14% 0%, rgba(46, 199, 230, .13), transparent 34%),
            radial-gradient(circle at 90% 10%, rgba(168, 61, 240, .15), transparent 36%),
            linear-gradient(180deg, #111722 0%, #0b0f17 100%) !important;
        border-left: 1px solid rgba(180, 196, 235, .12);
        box-shadow: -18px 0 50px rgba(0, 0, 0, .46) !important;
        transform: translateX(100%) !important;
        transition: transform .28s ease !important;
    }

    .fever-mobile-menu-panel.active {
        transform: translateX(0) !important;
    }

    .fever-mobile-menu-panel .mobile-menu {
        width: 100% !important;
        height: 100vh !important;
        height: 100dvh !important;
        min-height: 100vh !important;
        min-height: 100dvh !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .fever-mobile-menu-panel .sidebar-top {
        flex: 0 0 60px !important;
        height: 60px !important;
        padding: 0 18px !important;
        background: rgba(8, 11, 17, .76);
        border-bottom: 1px solid rgba(180, 196, 235, .09);
        box-shadow: none !important;
    }

    .fever-mobile-menu-brand {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        min-width: 0;
    }

    .fever-mobile-menu-brand img {
        display: block;
        max-width: 172px;
        max-height: 32px;
        object-fit: contain;
    }

    .fever-mobile-menu-brand span {
        color: #fff;
        font-size: 18px;
        font-weight: 800;
    }

    .fever-mobile-menu-panel .fever-mobile-menu-close {
        top: 50% !important;
        right: 16px !important;
        width: 34px !important;
        height: 34px !important;
        min-width: 34px !important;
        min-height: 34px !important;
        max-width: 34px !important;
        max-height: 34px !important;
        padding: 0 !important;
        border: 1px solid rgba(180, 196, 235, .12);
        border-radius: 50% !important;
        background: rgba(19, 25, 37, .86) !important;
        color: rgba(232, 238, 255, .76) !important;
        box-shadow: none !important;
        transform: translateY(-50%) !important;
        opacity: 1 !important;
    }

    .fever-mobile-menu-panel .fever-mobile-menu-close i {
        color: inherit !important;
        font-size: 21px !important;
        line-height: 1 !important;
    }

    .fever-mobile-menu-panel .fever-mobile-menu-close:hover {
        border-color: rgba(46, 199, 230, .32);
        background: rgba(28, 37, 54, .94) !important;
        color: #fff !important;
    }

    .fever-mobile-menu-panel .sidebar-content {
        flex: 1 1 auto !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 18px 18px 32px !important;
        padding-top: 18px !important;
        padding-bottom: 32px !important;
        overflow-y: auto !important;
    }

    .fever-mobile-nav {
        display: grid;
        gap: 8px;
        padding-bottom: 18px;
        margin-bottom: 18px;
        border-bottom: 1px solid rgba(180, 196, 235, .10);
    }

    .fever-mobile-menu-panel .sidebar-btns,
    .fever-mobile-menu-panel .fever-mobile-nav-item {
        height: auto !important;
        border-left: 0 !important;
        border-radius: 8px;
        background: rgba(18, 24, 36, .64);
        transition: border-color .2s ease, background .2s ease, color .2s ease;
    }

    .fever-mobile-menu-panel .sidebar-btns:hover,
    .fever-mobile-menu-panel .fever-mobile-nav-item:hover {
        border-left: 0 !important;
        background: rgba(29, 38, 56, .92) !important;
    }

    .fever-mobile-menu-panel .sidebar-btn {
        height: 48px !important;
        padding: 0 14px !important;
        gap: 12px;
        color: rgba(232, 238, 255, .82) !important;
        text-decoration: none;
        font-size: 14px !important;
        letter-spacing: 0;
    }

    .fever-mobile-menu-panel .sidebar-btn i,
    .fever-mobile-menu-panel .sidebar-account-btn i {
        width: 24px;
        min-width: 24px;
        color: rgba(46, 199, 230, .86);
        font-size: 20px;
        line-height: 1;
        text-align: center;
        margin-right: 0 !important;
    }

    .fever-mobile-menu-panel .sidebar-btn span,
    .fever-mobile-menu-panel .sidebar-account-btn span {
        color: rgba(232, 238, 255, .82) !important;
        font-size: 14px !important;
        line-height: 1;
    }

    .fever-mobile-menu-panel .sidebar-account-content {
        margin-top: 0 !important;
    }

    .fever-mobile-account {
        padding: 0 !important;
    }

    .fever-mobile-account-card {
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr) auto;
        align-items: center;
        gap: 12px;
        padding: 14px;
        margin-bottom: 14px;
        border: 1px solid rgba(180, 196, 235, .10);
        border-radius: 8px;
        background:
            linear-gradient(120deg, rgba(168, 61, 240, .12), rgba(46, 199, 230, .04)),
            rgba(14, 19, 29, .74);
    }

    .fever-mobile-avatar {
        width: 42px;
        height: 42px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: rgba(46, 199, 230, .10);
        color: rgba(232, 238, 255, .9);
    }

    .fever-mobile-avatar i {
        font-size: 28px;
        line-height: 1;
    }

    .fever-mobile-account-meta {
        min-width: 0;
    }

    .fever-mobile-menu-panel .sidebar-profile-name {
        margin: 0 0 8px !important;
        overflow: hidden;
        color: #fff !important;
        font-size: 15px !important;
        font-weight: 800 !important;
        line-height: 1.2;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .fever-mobile-menu-panel .sidebar-wallet-preview {
        display: flex;
        align-items: baseline;
        gap: 8px;
        margin: 0 !important;
    }

    .fever-mobile-menu-panel .balance-category {
        color: rgba(232, 238, 255, .48) !important;
        font-size: 12px !important;
    }

    .fever-mobile-menu-panel .balance-amount {
        color: #2ec7e6 !important;
        font-size: 16px !important;
        font-weight: 800 !important;
    }

    .fever-mobile-menu-panel .profile-btn.logout {
        height: 32px;
        padding: 0 10px !important;
        border-color: rgba(180, 196, 235, .16) !important;
        border-radius: 999px !important;
        background: rgba(9, 13, 20, .48);
        color: rgba(232, 238, 255, .68) !important;
        font-size: 12px !important;
    }

    .fever-mobile-menu-panel .profile-btn.logout i {
        color: inherit;
        font-size: 16px;
    }

    .fever-mobile-account-links {
        display: grid;
        gap: 8px;
        margin: 0 !important;
        padding: 0 !important;
    }

    .fever-mobile-account-links li {
        margin: 0 !important;
    }

    .fever-mobile-menu-panel .sidebar-account-btn {
        min-height: 48px;
        padding: 0 14px !important;
        gap: 12px;
        border-radius: 8px;
        background: rgba(18, 24, 36, .58);
        color: rgba(232, 238, 255, .74) !important;
        text-decoration: none;
    }

    .fever-mobile-menu-panel .sidebar-account-btn:hover {
        background: rgba(29, 38, 56, .92);
        color: #fff !important;
    }

    .fever-mobile-login-actions {
        display: flex !important;
        gap: 10px;
        padding: 0 !important;
    }

    .fever-mobile-login-actions .profile-btn {
        height: 38px;
        padding: 0 16px !important;
        border-color: rgba(180, 196, 235, .14) !important;
        border-radius: 999px;
        background: rgba(18, 24, 36, .76);
        color: rgba(232, 238, 255, .78) !important;
    }
}

@media (max-width: 767px) {
    .fever-topbar,
    .fever-topbar-inner {
        height: 64px !important;
    }

    .fever-topbar.fever-topbar-menu-open {
        height: 100vh !important;
        height: 100dvh !important;
        min-height: 100vh !important;
        min-height: 100dvh !important;
    }

    .fever-topbar:has(.fever-mobile-menu-overlay) {
        height: 100vh !important;
        height: 100dvh !important;
        min-height: 100vh !important;
        min-height: 100dvh !important;
    }

    .fever-topbar-inner {
        width: calc(100% - 28px);
    }

    .fever-topbar-logo-img {
        max-height: 32px;
        max-width: 190px;
    }

    .fever-topbar-mobile-actions > button {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        max-width: 40px !important;
        max-height: 40px !important;
    }

    .fever-topbar-mobile-actions > button i {
        font-size: 23px !important;
    }

    .fever-mobile-menu-panel {
        width: min(335px, 88vw) !important;
    }
}

/* 发烧游戏官网页脚：按参考图使用左侧版权信息、右侧协议链接的暗色布局 */
.fever-footer {
    width: 100%;
    min-width: 320px;
    background: #080a10;
    color: rgba(255, 255, 255, .52);
    font-family: Arial, "Microsoft YaHei", sans-serif;
}

.fever-footer-inner {
    position: relative;
    width: min(1640px, calc(100% - 256px));
    min-height: 192px;
    margin: 0 auto;
    padding: 47px 0 28px;
}

.fever-footer-main {
    width: 760px;
}

.fever-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 31px;
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
    margin-bottom: 17px;
}

.fever-footer-brand-mark {
    position: relative;
    width: 27px;
    height: 27px;
    display: inline-block;
}

.fever-footer-brand-mark::before,
.fever-footer-brand-mark::after {
    content: "";
    position: absolute;
    border: 2px solid #a83df0;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    transform: rotate(-35deg);
}

.fever-footer-brand-mark::before {
    inset: 1px;
}

.fever-footer-brand-mark::after {
    inset: 7px 4px 4px 7px;
}

.fever-footer-brand-text {
    color: rgba(255, 255, 255, .68);
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .5px;
}

.fever-footer-logo-img {
    display: block;
    height: 31px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
}

.fever-footer-text,
.fever-footer-text p,
.fever-footer-text div {
    margin: 0;
    color: rgba(255, 255, 255, .52);
    font-size: 14px;
    line-height: 1.55;
}

.fever-footer-text p,
.fever-footer-text div {
    white-space: nowrap;
}

.fever-footer-text a {
    color: rgba(255, 255, 255, .58);
    text-decoration: none;
}

.fever-footer-text a:hover {
    color: rgba(255, 255, 255, .78);
}

.fever-footer-links {
    position: absolute;
    top: 50px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .48);
    font-size: 14px;
    line-height: 1;
}

.fever-footer-links a {
    color: rgba(255, 255, 255, .48);
    text-decoration: none;
    transition: color .2s ease;
}

.fever-footer-links a:hover {
    color: rgba(255, 255, 255, .78);
}

@media (max-width: 900px) {
    .fever-footer {
        background: #0b0e15;
    }

    .fever-footer-inner {
        width: calc(100% - 24px);
        min-height: 276px;
        padding: 36px 0 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .fever-footer-main {
        width: 100%;
        padding-top: 0;
    }

    .fever-footer-brand {
        display: none;
    }

    .fever-footer-text {
        width: 100%;
        text-align: center;
    }

    .fever-footer-text p,
    .fever-footer-text div {
        white-space: normal;
        color: rgba(255, 255, 255, .66);
        font-size: 16px;
        line-height: 1.75;
        font-weight: 500;
    }

    .fever-footer-text p:nth-child(2),
    .fever-footer-text div:nth-child(2) {
        display: none;
    }

    .fever-footer-links {
        position: static;
        margin-top: 26px;
        justify-content: center;
        gap: 14px;
        color: rgba(255, 255, 255, .68);
        font-size: 16px;
        line-height: 1.5;
    }

    .fever-footer-links a {
        color: rgba(255, 255, 255, .68);
    }
}

/* 全站精修色底：用冷墨蓝紫替代纯黑，让紫青主色更协调、细腻 */
:root {
    --fever-bg-deep: #090b12;
    --fever-bg-page: #0d1018;
    --fever-bg-soft: #10141f;
    --fever-surface: #151a26;
    --fever-surface-2: #1a2030;
    --fever-surface-3: #20283a;
    --fever-border-soft: rgba(180, 196, 235, .10);
    --fever-border-mid: rgba(180, 196, 235, .16);
    --fever-text-soft: rgba(232, 238, 255, .68);
    --fever-primary: #a83df0;
    --fever-secondary: #2ec7e6;
}

html,
body,
.app-black,
.account-bg,
.fever-auth-body,
.fever-cardquery-body,
.fever-account-body,
.fever-settings-body,
.fever-idauth-body {
    background:
        radial-gradient(circle at 18% -12%, rgba(168, 61, 240, .10), transparent 32%),
        radial-gradient(circle at 86% 8%, rgba(46, 199, 230, .08), transparent 28%),
        linear-gradient(180deg, var(--fever-bg-deep) 0%, var(--fever-bg-page) 46%, #0a0d14 100%) !important;
    color: var(--fever-text-soft);
}

.nexon-home-main,
.fever-cardquery-page,
.fever-help-page,
.fever-account-page,
.fever-settings-page,
.fever-idauth-page,
.fever-auth-page {
    background:
        linear-gradient(180deg, rgba(13, 16, 24, .92), rgba(10, 13, 20, .98)),
        var(--fever-bg-page) !important;
}

.global-navigation,
.fever-topbar {
    background: rgba(7, 9, 14, .92) !important;
    border-bottom: 1px solid rgba(180, 196, 235, .07);
    box-shadow: 0 12px 34px rgba(0, 0, 0, .24);
    backdrop-filter: blur(14px);
}

.fever-footer {
    background:
        linear-gradient(180deg, #0b0e15 0%, #080a10 100%) !important;
    border-top: 1px solid rgba(180, 196, 235, .08);
}

.fever-footer-brand-mark::before,
.fever-footer-brand-mark::after {
    border-color: var(--fever-primary) !important;
    border-right-color: transparent !important;
    border-bottom-color: transparent !important;
}

.home-hero-shade {
    background:
        linear-gradient(90deg, rgba(9, 11, 18, .90) 0%, rgba(9, 11, 18, .34) 44%, rgba(9, 11, 18, .12) 74%),
        linear-gradient(0deg, var(--fever-bg-page) 0%, rgba(13, 16, 24, .30) 42%, rgba(13, 16, 24, 0) 100%) !important;
}

.sticky-filter {
    background: rgba(13, 16, 24, .88) !important;
    border-bottom-color: var(--fever-border-soft) !important;
    backdrop-filter: blur(14px);
}

.home-game-card,
.home-tool-card,
.fever-cardquery-panel,
.fever-cardquery-faq,
.fever-notice-panel,
.fever-help-panel,
.fever-account-panel,
.fever-ledger-panel,
.fever-ledger-card,
.fever-settings-shell > div,
.fever-settings-profile,
.fever-settings-balance,
.fever-idauth-main-card,
.fever-idauth-guide-card,
.fever-idauth-page .card-bg,
.fever-auth-shell,
.fever-auth-card,
.fever-topbar-account-menu {
    background: linear-gradient(180deg, var(--fever-surface) 0%, #111722 100%) !important;
    border-color: var(--fever-border-soft) !important;
    box-shadow: 0 22px 60px rgba(0, 0, 0, .22);
}

.fever-cardquery-hero,
.fever-ledger-hero,
.fever-settings-hero,
.fever-idauth-hero,
.fever-auth-side,
.fever-help-panel-head,
.fever-account-records .mb-6:first-child,
.fever-idauth-page .verification-header {
    background:
        linear-gradient(120deg, rgba(168, 61, 240, .12), rgba(46, 199, 230, .035) 48%, rgba(255, 255, 255, .018)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .024) 0 1px, transparent 1px 18px),
        var(--fever-surface) !important;
    border-color: var(--fever-border-soft) !important;
}

.home-game-body,
.fever-cardquery-table thead,
.fever-cardquery-mobile-record,
.fever-cardquery-faq-question,
.fever-ledger-table thead,
.fever-ledger-card,
.fever-settings-content [class*="-mx-4"][class*="-mt-4"],
.fever-idauth-page .bg-darkcard,
.fever-points-selected-card,
.fever-recharge-maintenance,
.fever-topbar-account-balance {
    background: var(--fever-surface-2) !important;
    border-color: var(--fever-border-soft) !important;
}

.home-section-actions button,
.home-filter-list button,
.fever-ledger-pagination .van-pagination__item,
.fever-points-dropdown-button,
.fever-recharge-option,
.fever-recharge-product {
    background: var(--fever-surface-3) !important;
    border-color: rgba(180, 196, 235, .08) !important;
    color: rgba(232, 238, 255, .70) !important;
}

.fever-cardquery-input,
.fever-auth-input,
.fever-idauth-page input,
.fever-points-dropdown-menu,
.fever-points-card-dropdown .dropdown-menu {
    background: #0b0f17 !important;
    border-color: rgba(180, 196, 235, .14) !important;
    color: rgba(248, 250, 255, .92) !important;
}

.home-game-card:hover,
.home-tool-card:hover,
.fever-cardquery-faq-question:hover,
.fever-points-dropdown-button:hover,
.fever-points-dropdown-button:focus {
    background: linear-gradient(180deg, #1a2030 0%, #151b29 100%) !important;
    border-color: rgba(168, 61, 240, .24) !important;
}

.home-section-head,
.fever-ledger-panel-head,
.fever-footer-text,
.fever-footer-links,
.fever-cardquery-table th,
.fever-ledger-table th {
    border-color: var(--fever-border-soft) !important;
}
