:root {
    --bg-light: #f8f9fc;
    --card-bg: #ffffff;
    --text-primary: #1a1d2e;
    --text-secondary: #5a5d72;
    --accent: #0c0d13;
    --accent-light: #a29bfe;
    --border-light: #e8ecf1;
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.1);
    --radius-md: 18px;
    --radius-lg: 24px;
}

/* 导航栏  */
#mainNav {
    background: #0c0d14;
    border-radius: 10px;
    min-height: auto !important;
    padding: 1px 0 !important;
    position: relative;
}

#mainNav>.container {
    align-items: center;
    min-height: auto;
    padding-top: 4px;
    padding-bottom: 4px;
}

#mainNav .navbar-brand {
    padding: 0;
    margin-right: 8px;
    line-height: 0;
    flex-shrink: 0;
}


.search-bar .input-group {

    background: #f5f6fa;
    border-radius: 50px;


}

.search-bar .input-group:focus-within {
    border-color: #6c5ce7;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(108, 92, 231, 0.12), 0 0 0 4px rgba(108, 92, 231, 0.06);

}

.search-bar .form-control {
    background: transparent !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 12px 20px 12px 20px !important;
    font-size: 0.95rem;
    color: #2d3047;
    font-weight: 500;
    letter-spacing: 0.3px;
    box-shadow: none !important;
    height: auto;
    flex: 1;
    min-width: 200px;
}

.search-bar .form-control::placeholder {
    color: #b0b5c9;
    font-weight: 400;
    font-style: italic;
}

.search-bar .form-control:focus {
    color: #1a1d2e;
}

/* 搜索图标前置 */
.search-icon-left {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0a7ba;
    font-size: 1rem;
    z-index: 5;
    pointer-events: none;
    transition: color 0.3s;
}

.search-bar .input-group:focus-within .search-icon-left {
    color: #6c5ce7;
}

/* 搜索按钮 */
.btn-search {
    background: linear-gradient(135deg, #5f4ef5, #5f4ef5);
}


/* 快捷搜索标签 */
.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
    padding-left: 5px;
}

.search-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    background: #f0f2f8;
    border: 1px solid #e8ecf1;
    border-radius: 20px;
    font-size: 0.75rem;
    color: #6b7089;
    cursor: pointer;
    transition: all 0.25s;
    font-weight: 500;
}

.search-tag:hover {
    background: #e8ebf5;
    border-color: #c5bff5;
    color: #5a4bcf;
    transform: translateY(-1px);
}

.search-tag i {
    font-size: 0.65rem;
    color: #ff5e7e;
}

/* PC 端：logo 靠左，search 居中，按钮靠右 */
@media (min-width: 992px) {
    .search-tags {
        display: none;
    }

    #mainNav>.container {
        position: static;
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        min-height: 60px;
    }

    #mainNav .navbar-brand {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
        margin: 0;
    }

    #mainNav>.container>.navbar-collapse:first-of-type {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: min(380px, 34vw);
        margin: 0;
        flex: none;
        z-index: 1;
    }

    #mainNav>.container>.navbar-collapse:first-of-type .search-bar {
        width: 100% !important;
        margin: 0;
    }

    #mainNav>.container>.navbar-collapse:first-of-type .search-bar .input-group {
        height: 40px;
        align-items: center;
    }

    #mainNav>.container>.navbar-collapse:first-of-type .search-bar .form-control {
        padding: 0 16px !important;
        height: 100%;
        min-width: 0;
        font-size: 0.875rem;
    }

    #mainNav>.container>.navbar-collapse:first-of-type .search-bar .btn-search {
        padding: 0 16px !important;
        height: 100%;
        display: flex;
        align-items: center;
        font-size: 0.875rem;
    }

    #mainNav>.container>.navbar-collapse:last-of-type {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
        flex: none;
        width: auto !important;
        display: flex !important;
        flex-direction: row;
        align-items: center;
        gap: 4px;
        z-index: 2;
    }

    #mainNav .navbar-nav {
        margin: 0 !important;
        flex-direction: row;
    }

    #mainNav>.container>.navbar-collapse:last-of-type .navbar-nav.ml-auto {
        margin-left: 0 !important;
    }

    #mainNav .navbar-nav li.nav-item a.nav-link {
        padding-top: 6px;
        padding-bottom: 6px;
        padding-left: 12px;
        padding-right: 12px;
        line-height: 1.5;
    }
}

/* 响应式 */
@media (max-width: 991px) {
    .search-bar {
        FONT-WEIGHT: 800;
        margin-right: 10px;
        margin-bottom: 12px;
        width: 80%;
    }

    .search-bar .form-control {
        min-width: 150px;
        padding: 11px 16px 11px 20px !important;
    }

}

@media (max-width: 480px) {
    .btn-search span {
        display: none;
    }

    .btn-search {
        /* padding: 11px 14px; */
    }

    .btn-search i {
        font-size: 1.4rem;
        margin: 0;
    }
}

.btn-search {
    background: linear-gradient(135deg, #5f4ef5, #8b7cf0);
    border: none;
    border-radius: 40px;
    /* padding: 20px 22px; */
    color: white;
    font-weight: 600;
}


/* 广告区域 */
.Advertisement {
    color: #9a9db5;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;

}

.googleAds-container {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 18px;
    border: 1px solid var(--border-light);
    margin-bottom: 5px;
    min-height: 285px;
}

/* 游戏容器 - 浅色卡片 */
.game-iframe-container {
    background: var(--card-bg) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    position: relative;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    /* 覆盖 view.css 的 iframe 宽高比占位，避免 Play Now 下方大块空白 */
    padding-bottom: 0 !important;
    height: auto !important;
}

.game-iframe-container .splash {
    position: relative !important;
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
}

.game-iframe-container .splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 20px;
}

.game-iframe-container .splash-thumbnail img {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 420px;
    border-radius: 12px;
    display: block;
}

/* 动态弹幕层 */
.danmaku-overlay {
    position: absolute;
    top: 5px;
    left: 0;
    width: 100%;
    height: calc(100% - 10px);
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.danmaku-item {
    position: absolute;
    white-space: nowrap;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 6px 16px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    color: #3d3b5c;
    animation: danmakuFly 12s linear infinite;
    backdrop-filter: blur(6px);
}

.danmaku-item:nth-child(2) {
    animation-delay: 4s;
    top: 30%;
}

.danmaku-item:nth-child(3) {
    animation-delay: 8s;
    top: 55%;
}

.danmaku-item:nth-child(4) {
    animation-delay: 2.5s;
    top: 18%;
}

.danmaku-item:nth-child(5) {
    animation-delay: 6.5s;
    top: 72%;
}

@keyframes danmakuFly {
    0% {
        transform: translateX(105%);
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateX(-120%);
        opacity: 0;
    }
}



/* ============ 热度标签 - 优雅紫色系 ============ */
.hot-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #f5f3ff, #ede8ff);
    border: 1px solid #d5ccff;
    color: #5b3cc4;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 30px;
    animation: pulse-badge 2s infinite;
}

.hot-badge i {
    font-size: 0.8rem;
    color: #ff6b6b;
    animation: flame 0.8s infinite alternate;
}

@keyframes pulse-badge {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(108, 92, 231, 0.15);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(108, 92, 231, 0);
    }
}

@keyframes flame {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.25);
    }
}

/* ============ 免下载标签 - 柔和蓝色系 ============ */
.no-download-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #f0f7ff, #e3f0ff);
    border: 1px solid #c5c5f5;
    color: #3b42c4;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 30px;
    animation: pulse-badge-blue 2s infinite;
}

.no-download-tag i {
    color: #4d97ff;
    animation: flame 0.8s infinite alternate;
}

@keyframes pulse-badge-blue {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(77, 148, 255, 0.15);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(77, 148, 255, 0);
    }
}



/* 动态Play按钮 */
.btn-play {
    background: linear-gradient(135deg, #5f4ef5, #a899ff);
    border: none;
    padding: 16px 50px;
    font-weight: 800;
    letter-spacing: 1px;
    border-radius: 50px;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.35);
    position: relative;
    overflow: hidden;
    animation: playPulse 2s infinite;
    width: 250px;
    margin-bottom: 10px;

}

@keyframes playPulse {

    0%,
    100% {
        box-shadow: 0 8px 25px rgba(108, 92, 231, 0.35);
    }

    50% {
        box-shadow: 0 8px 40px rgba(108, 92, 231, 0.6);
        transform: scale(1.1);
    }
}

.btn-play:hover {
    transform: scale(1.2);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.5);
}

/* 信息卡片 */
.comments-container {
    background: var(--card-bg) !important;
    border-radius: var(--radius-lg) !important;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    margin-top: 10px;
}

.css-1g10nz7 h1 {
    font-size: 1.8rem !important;
    font-weight: 800;
    color: #1a1d2e;
}

.gameh2 {
    font-weight: 700;
    color: #4a4d62;
    font-size: 1.2rem;
    margin-top: 18px;
}

.destext2 {
    color: #5a5d72;
    line-height: 1.7;
}

/* 侧边栏 */
.sidebar {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    margin-top: 20px;
}

.widget-title {
    font-weight: 700;
    color: #1a1d2e;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wgt-list-game {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    background: #f9fafc;
}

.wgt-list-game:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

/* 页脚 */
.footer {
    background: #0c0d13;
    padding: 10px 0 20px;
    margin-top: 10px;
}

#footer-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    color: #ffffff;
}

/* ============ 反馈系统样式（点赞/点踩版） ============ */
.feedback-section {
    margin-top: 5px;
    background: #ffffff;
    border-radius: 20px;
    padding: 22px 24px;
    border: 1px solid #e8ecf1;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.feedback-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.feedback-title {
    font-weight: 700;
    font-size: 1rem;
    color: #1a1d2e;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feedback-stats {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.8rem;
    color: #8b8fa5;
}

.feedback-stats span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* 游戏操作栏：Feedback 左 / Like·Dislike 右 */
.game-action-card {
    padding: 8px 12px !important;
    margin: 0 !important;
}

.game-action-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.game-action-votes {
    display: flex;
    align-items: center;
    gap: 10px;
}

.game-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* width: 36px; */
    height: 27px;
    padding: 0 10px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    line-height: 1;
    font-size: 0.8rem;
}

.game-action-btn i {
    font-size: 1rem;
    transition: transform 0.25s ease;
}

.like-btn,
.dislike-btn {
    border: 1.5px solid #e8ecf1;
    background: #fafbfc;
    color: #4a4d62;
}

.like-btn:hover:not(.active) {
    background: #f0edff;
    border-color: #c5bff5;
    color: #6c5ce7;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.15);
}

.dislike-btn:hover:not(.active) {
    background: #fff5f5;
    border-color: #fca5a5;
    color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.15);
}

.like-btn:hover i,
.dislike-btn:hover i {
    transform: scale(1.1);
}

.like-btn.active {
    background: linear-gradient(135deg, #6c5ce7, #8b7cf0);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.35);
}

.like-btn.active:hover {
    background: linear-gradient(135deg, #6c5ce7, #8b7cf0);
    color: #ffffff;
}

.dislike-btn.active {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.35);
}

.dislike-btn.active:hover {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #ffffff;
}

.feedback-btn {
    border: 1.5px solid #d5ccff;
    background: linear-gradient(135deg, #f5f3ff, #ede8ff);
    color: #5b3cc4;
    border-radius: 30px;
}

.feedback-btn:hover {
    background: linear-gradient(135deg, #6c5ce7, #8b7cf0);
    border-color: transparent;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.25);
}

.feedback-btn:hover i {
    transform: scale(1.1);
}

.like-btn.active,
.dislike-btn.active {
    animation: popIn 0.3s ease;
}

/* 计数显示 */
.vote-count {
    font-weight: 700;
    font-size: 0.85rem;
    min-width: 20px;
    text-align: center;
}

/* 反馈弹窗 */
.feedback-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 13, 19, 0.45);
    backdrop-filter: blur(4px);
    z-index: 100001;
    justify-content: center;
    align-items: center;
    padding: 16px;
}

.feedback-modal.show {
    display: flex;
}

.feedback-modal-content {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 24px;
    max-width: 520px;
    width: 100%;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.3s ease;
}

.feedback-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.feedback-modal-title {
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--text-primary);
    margin: 0;
}

.feedback-modal-close {
    border: none;
    background: transparent;
    font-size: 1.5rem;
    line-height: 1;
    color: #9ca3af;
    cursor: pointer;
    padding: 0 4px;
    transition: color 0.2s;
}

.feedback-modal-close:hover {
    color: var(--text-primary);
}

.feedback-field {
    margin-bottom: 18px;
}

.feedback-label {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.feedback-quick-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.feedback-label-optional {
    font-weight: 500;
    color: #9ca3af;
    font-size: 0.85rem;
}

.feedback-quick-btns.is-error {
    outline: 2px solid #e84141;
    outline-offset: 4px;
    border-radius: 12px;
}

.feedback-pick-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid var(--border-light);
    background: #f9fafc;
    color: #4a4d62;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

/* .feedback-pick-tag:hover {
    background: #f0edff;
    border-color: #c5bff5;
    color: #6c5ce7;
} */

.feedback-pick-tag.selected {
    background: #6c5ce7;
    color: #ffffff;
    border-color: transparent;
}


.feedback-quick-btn {
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid var(--border-light);
    background: #f9fafc;
    color: #4a4d62;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.feedback-quick-btn.selected {
    background: #6c5ce7;
    color: #ffffff;
    border-color: transparent;
}

.feedback-quick-btn:hover {
    background: #f0edff;
    border-color: #c5bff5;
    color: #6c5ce7;
}

.feedback-quick-btn.selected:hover {
    background: #5a4bcf;
    color: #ffffff;
    border-color: transparent;
}

.feedback-textarea,
.feedback-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1.5px solid var(--border-light);
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--text-primary);
    background: #ffffff;
    box-sizing: border-box;
}

.feedback-textarea {
    resize: vertical;
    min-height: 100px;
}

.feedback-input {
    height: 48px;
}

.feedback-textarea::placeholder,
.feedback-input::placeholder {
    color: #b0b5c9;
}

.feedback-textarea:focus,
.feedback-input:focus {
    outline: none;
    border-color: #6c5ce7;
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.08);
}

.feedback-modal-buttons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.feedback-cancel,
.feedback-submit-btn {
    flex: 1;
    padding: 14px 20px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.feedback-cancel {
    border: none;
    background: #f0f2f8;
    color: #6b7089;
}

.feedback-cancel:hover {
    background: #e8ebf5;
}

.feedback-submit-btn {
    border: none;
    background: #0c0d13;
    color: #ffffff;
}

.feedback-submit-btn:hover {
    background: linear-gradient(135deg, #6c5ce7, #8b7cf0);
    box-shadow: 0 8px 24px rgba(108, 92, 231, 0.3);
}

/* 提交成功提示 */
.feedback-success-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.92);
    background: #0c0d13;
    color: #ffffff;
    padding: 20px 24px;
    border-radius: 16px;
    z-index: 100000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    text-align: center;
    min-width: 300px;
    max-width: min(420px, calc(100vw - 32px));
    box-sizing: border-box;
}

.feedback-success-toast.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.feedback-success-icon {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1;
}

.feedback-success-text {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.5;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
}

@keyframes popIn {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-3px);
    }

    75% {
        transform: translateX(3px);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Toast提示 */
.feedback-toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1d2e;
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.feedback-toast.show {
    opacity: 1;
}

#navb {
    margin: 0;
}

#mainNav {
    border-radius: 0 0 10px 10px;
}

nav.greedy button {
    background: #0c0d13;
}

nav.greedy button::after {
    margin-right: 0;
}

#mainNav .navbar-nav li.nav-item a.nav-link {
    margin-bottom: 0px;
    margin-top: 0;
}

.form-control .search {
    padding: 0;
}

.btn-search {
    padding: 10px 18px;
}

.search-bar {
    width: 95%;
    /* margin:5px auto 0; */
}

.navbar-collapse .justify-content-end .collapse .show {
    gap: 0;
}

.site-logo {
    height: 52px !important;
    width: auto !important;
    max-width: 220px;
    object-fit: contain;
    object-position: left center;
    display: block;
    margin-right: 0;
    padding: 0;
}

.content-wrapper {
    margin-top: 5px;
}

.game-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 8px;
    margin-bottom: 0;
}

.game-content>.game-iframe-container,
.game-content>.game-action-card,
.game-content>.info-the-game {
    margin: 0 !important;
}

.game-content .comments-container {
    margin-top: 0 !important;
}

.game-container {
    margin: 5px 0;
}

.page-content,
.game-content {
    margin-bottom: 0px;
}

.category-games-li {
    background: #0c0d13;
    color: #ffffff;
}

ul.hidden-links {
    top: 60%;
}

ul.hidden-links li {
    min-width: 100px;
}

.navbar-nav {
    margin: 5px auto 10px;
}

/* ============ 汉堡菜单 ============ */
.navbar-toggler {
    border: none;
    width: 36px;
    height: 36px;
    padding: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.navbar-menu-icon,
.navbar-toggler svg.icon {
    width: 30px;
    height: 30px;
    display: block;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .navbar-menu-icon,
.navbar-toggler[aria-expanded="true"] svg.icon,
#toggler:not(.collapsed) svg.icon {
    transform: rotate(90deg);
}

.navbar-menu-icon path,
.navbar-toggler svg.icon path {
    fill: #6365df;
    transition: fill 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .navbar-menu-icon path,
.navbar-toggler[aria-expanded="true"] svg.icon path,
#toggler:not(.collapsed) svg.icon path {
    fill: #ffffff;
}

.game-top-bar {
    display: none;
}

.game-feedback-btn {
    display: none;
}

.game-meta-pills .hot-badge,
.game-meta-pills .no-download-tag {
    margin: 0;
}

.info-the-game {
    margin: 0 !important;
}

.info-the-game .comments-container {
    padding: 24px !important;
    margin-top: 10px !important;
    margin-bottom: 0px;
}



/* 游戏信息卡片 */
.game-meta-card {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.game-meta-section {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
}

.game-meta-section:first-child {
    padding-top: 0;
}

.game-meta-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.game-meta-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.game-meta-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.35;
    margin-bottom: 14px;
}

.game-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
}

.game-meta-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 5px;
}

.game-meta-value {
    font-size: 1rem;
    /* font-weight: 700; */
    color: var(--text-primary);
}

.game-meta-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.game-meta-genre {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: #f0edff;
    color: #6c5ce7;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

.game-meta-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: #f9fafc;
    border: 1px solid var(--border-light);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #4a4d62;
    transition: all 0.2s ease;
    border-color: #c5bff5;
    color: #6c5ce7;
    background: #f0f2f8;
}


.game-meta-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #6c5ce7;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.game-meta-link:hover {
    color: #5a4bcf;
    text-decoration: none;
}

.game-meta-link i {
    font-size: 0.75rem;
}

.game-meta-text {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.55;
}

.sideb {
    margin-bottom: 12px;
}