* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 16px;
}

body {
    background-color: #e60012;
    color: #fff;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(135deg, #e60012 0%, #8b0000 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    flex: 1;
}

.navbar {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 15px 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    letter-spacing: 1px;
}

.nav-logo span {
    color: #ffcc00;
    font-size: 1.5rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.nav-menu {
    display: flex;
    list-style: none;
    transition: all 0.3s ease;
}

.nav-item {
    margin-left: 25px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s;
    display: block;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffcc00;
}

.nav-link.active {
    background-color: #ffcc00;
    color: #8b0000;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.breadcrumb {
    padding: 10px 0;
    margin-bottom: 10px;
    color: #333;
    font-size: 0.9rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
}

.breadcrumb a {
    color: #e60012;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: #8b0000;
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0px;
    color: rgba(0, 0, 0, 0.5);
}

.main-content {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.article-container {
    flex: 1;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #333;
}

#tabh {display: none;}

/* 重新设计的文章头部 */
.article-header {
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* header背景图容器 */
.header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 30%;
    filter: brightness(0.8);
    z-index: 0;
}

/* 背景图叠加层 */
.header-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.article-header-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: stretch; /* 改为stretch让子元素等高 */
    gap: 25px;
    padding: 30px;
    min-height: 160px; /* 最小高度 */
}

/* 修改：游戏LOGO容器 - 确保正方形 */
.game-logo {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 4px solid rgba(255, 255, 255, 0.3);
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; /* 添加相对定位，使子元素能绝对定位 */
}

.game-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 修改：游戏信息容器 - 与图片等高 */
.game-info {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 160px; /* 与图片等高 */
}

/* 第一部分：游戏名字、别名、一句话介绍 */
.game-main-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.game-title-section {
    padding-top: 5px;
}

.game-title {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.game-alias {
    font-size: 1.1rem;
    color: #ffcc00;
    font-weight: 600;
    margin: 10px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.alias-tag {
    display: inline-block;
    padding: 3px 15px;
    background-color: rgba(255, 204, 0, 0.15);
    border-radius: 20px;
    border: 1px solid rgba(255, 204, 0, 0.3);
    font-size: 0.95rem;
}

.game-description-section {
    flex: 1;
    display: flex;
    align-items: flex-start;
}

.game-description {
    font-size: 1.1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    max-width: 90%;
    margin-bottom: 10px;
}

/* 第二部分：游戏详情 - 独立一行，与第一部分同宽，增加间距 */
.game-details-container {
    width: calc(100% - 60px);
    margin: 0px auto;
    position: relative;
    z-index: 3;
    border-radius: 10px;
}

.game-details-row {
    width: 100%;
    padding: 10px 10px;
    border-radius: 8px;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
}

.detail-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.25);
}

.detail-label {
    font-size: 0.95rem;
    color: #ffcc00;
    font-weight: 600;
    display: flex;
    align-items: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.detail-value {
    font-size: 1rem;
    color: white;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

/* 第三部分：元数据 - 按照header宽度显示 */
.game-meta-container {
    width: 100%;
    margin: 12px auto 0 auto;
    position: relative;
    z-index: 3;
    border-radius: 0 0 12px 12px;
}

.game-meta-row {
    width: 100%;
    padding: 10px 10px;
    backdrop-filter: blur(2px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.meta-item {
    display: flex;
    align-items: center;
    color: white;
    font-size: 0.95rem;
    flex: 1;
    justify-content: center;
}

.meta-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.meta-icon {
    color: #ffcc00;
    margin-right: 5px;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.meta-text {
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* 修改：塞尔达演示视频按钮样式 - 移除阴影和边框 */
.video-button-container {
    margin: 0px 0px 30px 0px;
    width: 100%;
}

.nintendo-video-button {
    width: 100%;
    background: linear-gradient(135deg, #e60012 0%, #ff3333 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1.6rem;
    font-weight: 800;
    padding: 22px 30px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-height: 75px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nintendo-video-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(255, 255, 255, 0.1) 50%, 
                transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.nintendo-video-button:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #ff0015 0%, #ff4d4d 100%);
}

.nintendo-video-button:hover::before {
    transform: translateX(100%);
}

.nintendo-video-button:active {
    transform: translateY(0);
}

.nintendo-video-button.active {
    background: linear-gradient(135deg, #00a800 0%, #006600 100%);
}

.nintendo-video-button.active .button-text {
    background: linear-gradient(to bottom, #ffffff 0%, #ccffcc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.button-icon {
    font-size: 2.5rem;
    color: #ffcc00;
    animation: pulse 1.5s infinite ease-in-out;
}

.nintendo-video-button.active .button-icon {
    color: #ccffcc;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.button-text {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(to bottom, #ffffff 0%, #ffcc00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.button-subtext {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-left: 10px;
    font-style: italic;
}

/* 修改：视频播放框体样式 - 移除边框和阴影 */
.video-container {
    margin: 20px 0 40px 0;
    display: none; /* 初始隐藏，点击按钮后显示 */
    justify-content: center;
}

.video-background {
    width: 770px;
    height: 331px;
    background-image: url('https://ns45api.xz778.com/skin/images/video.png'); /* 塞尔达风格背景图 */
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.video-iframe-wrapper {
    position: absolute;
    left: 137px;
    top: 27px;
    width: 496px;
    height: 279px;
    z-index: 2;
    overflow: hidden;
}

.video-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* 增强：内容切换选项卡样式 */
.content-tabs {
    display: flex;
    background-color: #f1f3f5;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    margin: 0 0 0;
    position: relative;
    border-bottom: 2px solid #e60012;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.tab-button {
    flex: 1;
    background: none;
    border: none;
    padding: 16px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.tab-button:hover {
    color: #e60012;
    background-color: rgba(230, 0, 18, 0.08);
}

.tab-button.active {
    color: white;
    background-color: #e60012;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ffcc00;
    border-radius: 3px 3px 0 0;
}

.tab-icon {
    font-size: 1.1rem;
    opacity: 0.9;
}

.tab-button.active .tab-icon {
    opacity: 1;
    color: #ffcc00;
}

/* 新增：内容区域样式 */
.tab-content-container {
    background-color: white;
    border-radius: 0 0 10px 10px;
    padding: 0;
    overflow: hidden;
}

.tab-content {
    display: none;
    padding: 30px 15px 0px 15px;
}

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

/* 新增：玩家反馈样式 */
.feedback-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.feedback-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e9ecef;
}

.feedback-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #e60012;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    object-fit: cover;
}

.user-info h4 {
    margin: 0 0 4px 0;
    font-size: 1rem;
    color: #333;
}

.user-meta {
    font-size: 0.85rem;
    color: #666;
}

.feedback-rating {
    display: flex;
    gap: 4px;
}

.star {
    color: #ffcc00;
    font-size: 1.1rem;
}

.feedback-content {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.feedback-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #888;
}

.feedback-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.feedback-likes {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: color 0.3s;
}

.feedback-likes:hover {
    color: #e60012;
}

/* 新增：资源介绍样式 */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.resource-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: #e60012;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: #e60012;
}

.resource-icon {
    font-size: 2rem;
    color: #e60012;
    margin-bottom: 15px;
    display: inline-block;
}

.resource-card h4 {
    margin: 0 0 12px 0;
    color: #333;
    font-size: 1.1rem;
}

.resource-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.resource-specs {
    background-color: white;
    border-radius: 6px;
    padding: 12px;
    font-size: 0.9rem;
    color: #555;
    border: 1px solid #e9ecef;
}

.resource-specs strong {
    color: #333;
}

.resource-warning {
    background-color: #fff8e6;
    border-left: 4px solid #ffcc00;
    padding: 15px;
    border-radius: 0 8px 8px 0;
    margin-top: 25px;
    font-size: 0.95rem;
}

.resource-warning h5 {
    color: #d35400;
    margin: 0 0 10px 0;
    font-size: 1rem;
}

/* 游戏介绍原有样式保持不变 */
.article-body {
    color: #333;
    font-size: 16px;
    line-height: 1.8;
    position: relative;
}

.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4,
.article-body h5,
.article-body h6 {
    font-weight: 600;
    line-height: 1.4;
    margin: 32px 0 16px;
}

.article-body h4,
.article-body h5 {
    font-weight: 500;
}

.article-body h1 {
    font-size: 24px;
}

.article-body h2 {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 22px;
    padding-bottom: 12px;
}

.article-body h3 {
    font-size: 20px;
}

.article-body > h3 {
    border: none;
    line-height: 1.46;
    padding-left: 18px;
    position: relative;
}

.article-body > h3:before {
    background-color: #e60012;
    background-image: linear-gradient(180deg, hsla(0, 0%, 100%, .15), transparent);
    border-radius: 3px;
    content: "";
    height: calc(100% - 8px);
    left: 0;
    position: absolute;
    top: 4px;
    width: 3px;
}

.article-body p {
    line-height: 1.8;
    margin-bottom: 20px;
    word-wrap: break-word;
    text-align: justify;
}

.article-body p > img {
    vertical-align: baseline;
}

.article-body > p {
    white-space: pre-wrap;
}

.article-body p has-drop-cap:not(:focus):first-letter {
    font-size: 3em;
    margin-right: .1em;
    font-weight: 300;
    line-height: 1;
}

.article-body blockquote {
    background: rgba(230, 0, 18, 0.04);
    border-left-color: rgba(0, 0, 0, 0.1);
    color: #333;
    font-size: 14px;
    margin: 25px 0;
    padding: 20px 25px 20px 55px;
    border-left: 4px solid #e60012;
    border-radius: 0 8px 8px 0;
    position: relative;
}

.article-body blockquote p:last-child {
    margin-bottom: 0;
}

.article-body blockquote:before {
    color: rgba(230, 0, 18, 0.2);
    content: "\201C";
    font-family: Georgia, serif;
    font-size: 48px;
    left: 15px;
    line-height: 1;
    position: absolute;
    top: 10px;
}

.article-body ol,
.article-body ul {
    list-style-position: outside;
    margin-bottom: 20px;
    padding-left: 2em;
}

.article-body li {
    line-height: 1.46;
    margin-bottom: .5em;
}

.article-body img {
    height: auto;
    max-width: 100%;
    vertical-align: top;
}

.article-body .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.article-body .aligncenter img {
    margin: 0 auto;
}

.article-body .alignleft {
    float: left;
    margin-bottom: 10px;
    margin-right: 10px;
}

.article-body .alignright {
    float: right;
    margin-bottom: 10px;
    margin-left: 10px;
}

.article-body table {
    border-collapse: collapse;
    margin-bottom: 20px;
    width: 100%;
}

.article-body table td,
.article-body table th {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: .5em;
}

.article-body table th {
    background-color: rgba(230, 0, 18, 0.05);
    font-weight: 600;
}

.article-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px auto;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s;
}

.article-image:hover {
    transform: scale(1.01);
}

.image-caption {
    text-align: center;
    font-style: italic;
    color: rgba(0, 0, 0, 0.6);
    margin-top: -10px;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.note-box {
    background-color: rgba(230, 0, 18, 0.08);
    border-left: 4px solid #e60012;
    padding: 15px 20px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
}

.note-box strong {
    color: #e60012;
}

/* 修改：flash-news-section 样式 - 恢复原始样式 */
.flash-news-section {
    padding: 0px;
}

.flash-news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(230, 0, 18, 0.15);
}

.flash-news-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e60012;
    display: flex;
    align-items: center;
    letter-spacing: 0.5px;
}

.flash-news-title::before {
    content: "📰";
    margin-right: 12px;
    font-size: 1.2rem;
}

.flash-news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.flash-news-item {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: visible;
}

.flash-news-content {
    position: relative;
    z-index: 1;
}

.flash-news-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
}

.flash-news-content p {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 15px;
    text-align: justify;
    overflow: visible;
    display: block;
    max-height: none;
    -webkit-line-clamp: unset;
    -webkit-box-orient: horizontal;
}

.flash-news-meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
    font-size: 0.85rem;
    color: #666;
}

.flash-news-time {
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.flash-news-time::before {
    content: "🕐";
    font-size: 0.9rem;
}

/* 新增：相关游戏栏目 */
.related-games-section {
    padding: 20px;
}

.related-games-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(230, 0, 18, 0.15);
}

.related-games-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e60012;
    display: flex;
    align-items: center;
    letter-spacing: 0.5px;
}

.related-games-title::before {
    content: "🎮";
    margin-right: 12px;
    font-size: 1.2rem;
}

/* 修改：相关游戏列表样式 - 移除悬停动画和星级评定、标签 */
.related-games-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-game-item {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    border: 2px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

/* 移除相关游戏项目的悬停效果 */
.related-game-item:hover {
    border-color: #e9ecef; /* 保持原边框颜色 */
}

/* 游戏图片区域 - 正方形 */
.related-game-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.related-game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 游戏信息区域 */
.related-game-content {
    flex: 1;
    min-width: 0;
}

.related-game-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.related-game-title a {
    color: #333;
    text-decoration: none;
}

.related-game-title a:hover {
    color: #e60012;
}

.related-game-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 移除星级评定样式 */
.stars-container {
    display: none !important;
}

/* 移除游戏标签 */
.related-game-tags {
    display: none !important;
}

.article-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(230, 0, 18, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag, .list-tag,.list-item-tags a {
    background-color: rgba(230, 0, 18, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #e60012;
    text-decoration: none;
    transition: all 0.3s;
    min-height: 30px;
    display: flex;
    align-items: center;
}

.related-reading {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid rgba(230, 0, 18, 0.2);
}

.related-reading h3 {
    color: #e60012;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-item {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    padding: 15px;
}

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

.related-image {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0;
    margin-right: 20px;
    aspect-ratio: 3/2;
}

.related-content {
    flex: 1;
    min-width: 0;
    width: 500px;
    overflow: hidden;
}

.related-title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.related-title a, .list-item-title a, .image-item-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.related-title a:hover, .list-item-title a:hover, .image-item-title a:hover {
    color: #e60012;
}

.related-meta, .list-item-meta, .image-item-meta {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 5px;
}

.related-description {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.sidebar {
    width: 300px;
    position: relative;
}

.sidebar-content {
    position: sticky;
    top: 20px;
}

.sidebar-section {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #333;
    overflow: visible;
}

.sidebar-section h3 {
    color: #e60012;
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 1px solid rgba(230, 0, 18, 0.2);
    padding-bottom: 10px;
}

.sidebar-list {
    list-style: none;
    overflow: visible;
}

.sidebar-item {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.sidebar-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-item a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    font-size: 0.9rem;
    padding: 8px 0;
}

.sidebar-item a:hover {
    color: #e60012;
}

.sidebar-item .date {
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.6);
    margin-top: 5px;
}

.image-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.image-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.image-item img {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0;
    aspect-ratio: 7/5;
}

.image-item-content {
    flex: 1;
    min-width: 0;
}

.image-item-title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 5px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 2.8em;
}

/* 移除旧的快讯样式，避免冲突 */
.flash-news-section h3::before {
    content: "";
    margin-right: 0;
    font-size: 0;
}

/* 移除快讯扩展相关样式 */
.flash-news-expand {
    display: none;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #e60012;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #8b0000;
    transform: translateY(-3px);
}

.image-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.image-viewer.active {
    opacity: 1;
    visibility: visible;
}

.image-viewer-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 10000;
}

.image-viewer-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.image-viewer img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

footer {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links {
    margin-top: 15px;
    font-size: 14px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 8px;
    padding: 5px 0;
}

.footer-links a:hover {
    color: #ffcc00;
    text-decoration: underline;
}

/* 新增二维码弹窗样式 */
.qr-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    overflow-y: auto; /* 允许滚动 */
}

.qr-modal.active {
    display: flex;
}

.qr-modal-content {
    background-color: white;
    border-radius: 16px;
    width: 90%;
    max-width: 380px;
    padding: 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    animation: modalSlideIn 0.3s ease-out;
    margin: 20px auto;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.qr-modal-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.qr-modal-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #e60012;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.qr-modal-body {
    margin-bottom: 25px;
}

.qr-code-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px 0;
    min-height: 250px;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    border: 2px solid #f0f0f0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.qr-modal-tip {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e60012;
    margin-top: 20px;
    line-height: 1.6;
    padding: 15px;
    background: linear-gradient(135deg, #fff8e6 0%, #ffeaa7 100%);
    border-radius: 10px;
    border-left: 5px solid #ffcc00;
    text-align: center;
    box-shadow: 0 4px 12px rgba(255, 204, 0, 0.15);
}

.qr-modal-footer {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}

.qr-modal-button {
    padding: 12px 30px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
}

.qr-modal-button.primary {
    background: linear-gradient(135deg, #e60012 0%, #8b0000 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(230, 0, 18, 0.3);
}

.qr-modal-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(230, 0, 18, 0.4);
}

.qr-modal-button.secondary {
    background: linear-gradient(135deg, #f1f3f5 0%, #e9ecef 100%);
    color: #333;
    border: 2px solid #ddd;
}

.qr-modal-button.secondary:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    transform: translateY(-2px);
}

.qr-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1;
}

.qr-modal-close:hover {
    background-color: #f8f9fa;
    color: #333;
    transform: rotate(90deg);
}

/* 加载动画 */
.loading-spinner {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #e60012;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    color: #666;
    margin-top: 15px;
    font-size: 1rem;
    font-weight: 600;
}

/* 平台样式指示器 */
.platform-indicator {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 15px;
}

.platform-indicator.baidu {
    background-color: rgba(78, 110, 242, 0.1);
    color: #4E6EF2;
    border: 1px solid rgba(78, 110, 242, 0.3);
}

.platform-indicator.quark {
    background-color: rgba(0, 184, 148, 0.1);
    color: #00B894;
    border: 1px solid rgba(0, 184, 148, 0.3);
}

.platform-indicator.collection {
    background-color: rgba(108, 92, 231, 0.1);
    color: #6C5CE7;
    border: 1px solid rgba(108, 92, 231, 0.3);
}

/* 游戏推荐板块样式 */
.game-recommend-section {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #333;
    overflow: visible;
}

.game-recommend-section h3 {
    color: #e60012;
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 1px solid rgba(230, 0, 18, 0.2);
    padding-bottom: 10px;
}

.game-recommend-section h3::before {
    content: "🎮";
    margin-right: 8px;
    font-size: 1.2em;
}

/* 游戏网格布局 */
.game-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* 游戏项目卡片 */
.game-item {
    display: flex;
    flex-direction: column;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(230, 0, 18, 0.1);
}

.game-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    border-color: #e60012;
}

/* 游戏图片 */
.game-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    aspect-ratio: 1/1;
    display: block;
}

/* 游戏信息区域 */
.game-info {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* 游戏标题 */
.game-titles {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #333;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 2.8em;
}

.game-titles a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.game-titles a:hover {
    color: #e60012;
}

/* 游戏元数据（评分和价格） */
.game-meta {
    font-size: 0.75rem;
    color: #666;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.game-rating {
    color: #e60012;
    font-weight: bold;
}

.game-price {
    background-color: #e60012;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: bold;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .game-title {
        font-size: 2.2rem;
    }
    
    .resource-grid {
        grid-template-columns: 1fr;
    }
    
    .video-background {
        width: 90%;
        height: auto;
        aspect-ratio: 770/331;
    }
    
    .video-iframe-wrapper {
        width: 60.9%; /* 469/770 = 60.9% */
        height: 84.6%; /* 280/331 = 84.6% */
        left: 17.8%; /* 137/770 = 17.8% */
        top: 8.2%; /* 27/331 = 8.2% */
    }
}

@media (max-width: 992px) {
    .article-header-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 25px;
    }
    
    .game-logo {
        width: 140px;
        height: 140px;
        margin-bottom: 15px;
    }
    
    .game-info {
        height: auto;
        width: 100%;
    }
    
    .game-main-info {
        height: auto;
    }
    
    .game-title {
        font-size: 2rem;
    }
    
    .game-details-container {
        width: calc(100% - 50px);
        margin: 20px auto 0 auto;
    }
    
    .game-details-row {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .detail-item {
        flex: 0 0 calc(50% - 15px);
        align-items: flex-start;
        text-align: left;
    }
    
    .detail-item:not(:last-child)::after {
        display: none;
    }
    
    .game-meta-row {
        flex-wrap: wrap;
        gap: 10px;
        padding: 15px 20px;
    }
    
    .meta-item {
        flex: 0 0 calc(50% - 10px);
        justify-content: flex-start;
        border-right: none !important;
    }
    
    .tab-content {
        padding: 10px;
    }
    
    .nintendo-video-button {
        font-size: 1.4rem;
        padding: 18px 25px;
    }
    
    .button-text {
        font-size: 1.5rem;
    }
    
    .button-icon {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 10px;
    }
    
    .main-content {
        flex-direction: column;
    }
    
    .sidebar,.breadcrumb {
        display: none;
    }
    
    .nav-container {
        flex-wrap: wrap;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-menu.active {
        max-height: 300px;
    }
    
    .nav-item {
        margin: 8px 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        padding: 12px 15px;
        display: block;
        width: 100%;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-btn {
        display: block;
        min-width: 44px;
        min-height: 44px;
    }
    
    /* 移动端：LOGO图居中显示且保持正方形 */
    .article-header-content {
        padding: 20px;
        flex-direction: column;
        align-items: center; /* 居中显示 */
        text-align: center; /* 文字居中 */
        min-height: auto;
    }
    
    /* 移动端：图片保持正方形 */
    .game-logo {
        width: 120px;
        height: 120px;
        margin-bottom: 15px;
        align-self: center; /* 确保居中 */
    }
    
    .game-info {
        height: auto;
        width: 100%;
        align-items: center; /* 居中显示 */
        text-align: center;
    }
    
    .game-main-info {
        height: auto;
        align-items: center; /* 居中显示 */
    }
    
    .game-title {
        font-size: 1.8rem;
        text-align: center; /* 标题居中 */
        margin-bottom: 8px;
    }
    
    .game-alias {
        font-size: 1rem;
        justify-content: center; /* 别名居中 */
        margin: 8px 0;
    }
    
    .game-description {
        font-size: 1rem;
        text-align: center; /* 描述居中 */
        max-width: 100%;
        margin-bottom: 8px;
    }
    
    /* 移动端：第二部分隐藏不显示 */
    .game-details-container ,.game-meta-container{
        display: none !important;
    }
    
    .article-container{
        padding:10px
    }
    
    .article-header-content{
        gap: 0px;
    }
    
    .breadcrumb{
        margin-bottom: 0px;
    }
    
    .game-meta-row {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 15px;
    }
    
    .meta-item {
        flex: 0 0 100%;
        width: 100%;
        justify-content: center;
        border-right: none !important;
    }
    
    /* 移动端相关游戏调整 */
    .related-game-item {
        flex-direction: column;
        padding: 15px;
        gap: 15px;
    }
    
    /* 移动端：相关游戏图片保持正方形 */
    .related-game-image {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1; /* 正方形 */
    }
    
    .related-game-content {
        width: 100%;
    }
    
    .related-game-title {
        font-size: 1.2rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .content-tabs {
        flex-direction: column;
        border-radius: 10px;
    }
    
    .tab-button {
        border-bottom: 1px solid #e9ecef;
    }
    
    .tab-button.active::after {
        display: none;
    }
    
    .tab-button.active {
        border-bottom: 2px solid #e60012;
    }
    
    .nintendo-video-button {
        font-size: 1.2rem;
        padding: 15px 20px;
        min-height: 65px;
        flex-direction: column;
        gap: 10px;
    }
    
    .button-text {
        font-size: 1.3rem;
    }
    
    .button-icon {
        font-size: 1.8rem;
    }
    
    .button-subtext {
        font-size: 0.9rem;
    }
    
    .video-background {
        width: 100%;
        height: auto;
        aspect-ratio: 770/331;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
    
    .video-iframe-wrapper {
        width: 80%;
        height: 70%;
        left: 10%;
        top: 15%;
    }
    
    /* 移动端：侧边栏游戏推荐图片保持正方形 */
    .game-image {
        aspect-ratio: 1/1; /* 确保正方形 */
    }
}

@media (max-width: 480px) {
    .nav-logo span {
        font-size: 1.3rem;
    }
    
    .game-title {
        font-size: 1.6rem;
    }
    
    .game-logo {
        width: 100px;
        height: 100px;
    }
    
    .game-alias {
        font-size: 0.95rem;
    }
    
    .game-meta-row {
        padding: 12px;
    }
    
    .tab-content {
        padding: 10px;
    }
    
    .feedback-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .nintendo-video-button {
        font-size: 1.1rem;
        padding: 12px 15px;
        min-height: 60px;
    }
    
    .button-text {
        font-size: 1.2rem;
    }
    
    .button-icon {
        font-size: 1.5rem;
    }
    
    .video-iframe-wrapper {
        width: 85%;
        height: 65%;
        left: 7.5%;
        top: 17.5%;
    }
}

	/* 悬浮按钮样式 - 固定在视口中间 */
			.floating-game-btn {
				position: fixed;
				top: 50%;
				transform: translateY(-50%);
				z-index: 1000;
				display: flex;
				flex-direction: column;
				align-items: center;
				transition: all 0.3s ease;
			}
			
			/* 在桌面端大屏幕显示 */
			@media (min-width: 1200px) {
				.floating-game-btn {
					left: calc((100% - 1200px) / 2 - 80px);
				}
			}
			
			@media (min-width: 992px) and (max-width: 1199px) {
				.floating-game-btn {
					left: calc((100% - 960px) / 2 - 70px);
				}
			}
			
			.floating-game-btn .btn-main {
				background-color: #ff3b30;
				color: white;
				border: none;
				padding: 12px 20px;
				border-radius: 25px;
				cursor: pointer;
				font-weight: bold;
				font-size: 16px;
				box-shadow: 0 4px 12px rgba(255, 59, 48, 0.3);
				transition: all 0.3s ease;
				writing-mode: vertical-rl;
				text-orientation: mixed;
				letter-spacing: 2px;
				white-space: nowrap;
			}
			
			.floating-game-btn .btn-main:hover {
				background-color: #ff1f1f;
				box-shadow: 0 6px 16px rgba(255, 59, 48, 0.4);
				transform: translateY(-2px);
			}
			
			.floating-game-btn .qr-container {
				position: absolute;
				left: 100%;
				top: 50%;
				transform: translateY(-50%) scale(0.9);
				opacity: 0;
				visibility: hidden;
				transition: all 0.3s ease;
				margin-left: 15px;
				background: white;
				padding: 15px;
				border-radius: 10px;
				box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
				width: 200px;
				text-align: center;
				pointer-events: none;
				z-index: 1000;
			}
			
			.floating-game-btn:hover .qr-container {
				transform: translateY(-50%) scale(1);
				opacity: 1;
				visibility: visible;
				pointer-events: auto;
			}
			
			.floating-game-btn .qr-img {
				width: 170px;
				height: 170px;
				border-radius: 5px;
				margin-bottom: 10px;
			}
			
			.floating-game-btn .qr-title {
				font-weight: bold;
				color: #333;
				margin: 0;
				font-size: 16px;
			}
			
			.floating-game-btn .qr-desc {
				color: #666;
				font-size: 12px;
				margin: 5px 0 0 0;
				line-height: 1.4;
			}
			
			/* 响应式调整 */
			@media (max-width: 1200px) {
				.floating-game-btn {
					left: 10px;
				}
				
				.floating-game-btn .btn-main {
					padding: 10px 16px;
					font-size: 14px;
				}
				
				.floating-game-btn .qr-container {
					width: 180px;
					padding: 12px;
				}
				
				.floating-game-btn .qr-img {
					width: 150px;
					height: 150px;
				}
			}
			
			@media (max-width: 992px) {
				.floating-game-btn {
					display: none; /* 在较小屏幕隐藏悬浮按钮 */
				}
			}
			
			
/* 在.game-logo样式后添加以下代码（大约在第169行后） */
.game-logo {
    position: relative; /* 添加相对定位，使子元素能绝对定位 */
    /* 其他原有样式保持不变 */
}

/* 新增中文斜三角样式 */
.chinese-corner {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    overflow: hidden;
    z-index: 10;
    /* 隐藏HTML元素中的"中文"文字，但保留伪元素中的文字 */
    color: transparent !important;
    font-size: 0 !important;
}

.chinese-corner::before {
    content: '';
    position: absolute;
    top: -40px; /* 调整到合适位置 */
    left: -40px; /* 调整到合适位置 */
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e60012 0%, #ff3333 100%);
    transform: rotate(45deg);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.chinese-corner::after {
    content: '中文';
    position: absolute;
    top: 6px;
    left: 6px;
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    transform: rotate(-45deg);
    letter-spacing: 2px;
    z-index: 1;
}

/* 修改点：移动端完全隐藏.chinese-corner元素 */
@media (max-width: 768px) {
    .chinese-corner {
        display: none !important; /* 移动端完全隐藏整个元素 */
    }
    
    .chinese-corner::before,
    .chinese-corner::after {
        display: none !important;
    }
}

/* 移动端适配 - 精简版 */
@media (max-width: 768px) {
    .chinese-corner {
        width: 50px;
        height: 50px;
    }
    
    .chinese-corner::before {
        width: 65px;
        height: 65px;
        top: -8px;
        left: -8px;
    }
    
    .chinese-corner::after {
        top: 6px;
        left: 6px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .chinese-corner {
        width: 45px;
        height: 45px;
    }
    
    .chinese-corner::before {
        width: 60px;
        height: 60px;
        top: -7px;
        left: -7px;
    }
    
    .chinese-corner::after {
        top: 5px;
        left: 5px;
        font-size: 11px;
    }
}