/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    height: 100%;
}

body {
    font-family: Arial, sans-serif;
    background-color: #8d3127;
    color: #fff;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

/* 主要内容容器 */
.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

/* 底部装饰图片和footer的容器 */
.footer-wrapper {
    width: 100%;
    position: relative;
    margin-top: 50px;
}

/* 底部装饰图片 */
.bottom-image {
    width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    aspect-ratio: 1920/200;
    object-fit: cover;
}

@media (max-width: 768px) {
    .bottom-image {
        aspect-ratio: 1920/150;
    }
}

@media (max-width: 425px) {
    .bottom-image {
        aspect-ratio: 1920/100;
    }
}

/* 页面主体部分 */
.event-detail-page {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

/* 确保所有图片不会导致溢出 */
img {
    max-width: 100%;
    height: auto;
}

/* 修复可能的flex布局问题 */
.top-banner,
.social-links,
.event-detail-page {
    width: 100%;
    max-width: 100%;
}

/* 头部样式 */
.header {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    width: 100%;
    overflow: visible;
}

.header-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    overflow: visible;
    flex: 1;
}

/* Logo样式 */
.logo-container {
    width: 100%;
    margin: 0;
    line-height: 0;
    font-size: 0;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: -200px;
}

.logo {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

/* 按钮组样式 */
.buttons-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.play-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-now {
    display: block;
    width: auto;
}

.play-now img {
    width: 220px;
    height: auto;
    display: block;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    position: relative;
    z-index: 10;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 0;
}

.download-buttons a {
    width: 180px;
    transition: transform 0.3s;
}

.download-buttons a:hover {
    transform: scale(1.1);
}

.download-buttons img {
    width: 100%;
    height: auto;
    display: block;
}

/* 游戏介绍部分 */
.game-intro {
    margin: 0;
    width: 100%;
    position: relative;
    z-index: 5;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
}

.section-title img {
    width: 300px;
    height: 60px;
    max-width: 100%;
    object-fit: contain;
}

/* 视频容器 */
.video-container {
    position: relative;
    margin: 30px auto;
    width: 100%;
    max-width: 300px;
    padding: 0 20px;
}

.video-bg {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2px;
    border-radius: 8px;
    width: 100%;
    aspect-ratio: 9/16;
    margin: 0 auto;
    position: relative;
}

.youtube-player {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #000;
    border-radius: 5px;
    overflow: hidden;
}

.youtube-player img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.youtube-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.youtube-player iframe.active {
    opacity: 1;
}

/* 轮播图样式 */
.slider-bg {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2px;
    border-radius: 8px;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
    aspect-ratio: 560/315;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 5px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

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

/* 轮播图圆点样式 */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #fff;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .section-title img {
        width: 240px;
        height: 48px;
    }
    
    .video-container {
        max-width: 250px;
        padding: 0 15px;
    }
    
    .slider-bg {
        max-width: 400px;
        padding: 1.5px;
    }
    
    .slider-dots {
        margin-top: 6px;
        margin-bottom: 6px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 425px) {
    .section-title img {
        width: 200px;
        height: 40px;
    }
    
    .video-container {
        max-width: 200px;
        padding: 0 10px;
    }
    
    .slider-bg {
        max-width: 320px;
        padding: 1px;
    }
    
    .slider-dots {
        margin-top: 5px;
        margin-bottom: 4px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

/* 活动部分 */
.events {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news-list {
    width: 100%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
    padding: 0 15px;
}

.news-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.news-item a {
    display: block;
    width: 100%;
    text-decoration: none;
    position: relative;
}

.news-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.news-title {
    position: absolute;
    bottom: 35px;
    left: 0;
    right: 0;
    color: #fff;
    text-align: center;
    padding: 0 10px;
    font-size: 16px;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: bold;
}

.more-btn {
    width: 100%;
    max-width: 200px;
    margin: 20px auto 0;
    text-align: center;
}

.more-btn img {
    width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.more-btn:hover img {
    transform: scale(1.1);
}

/* 角色展示部分 */
.characters {
    margin: 50px 0;
    position: relative;
}

.character-showcase {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

.hero-section,
.boss-section {
    background-color: transparent;
    padding: 0;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    position: relative;
}

.character-detail {
    margin: 0;
    position: relative;
    width: 100%;
}

.character-slides {
    position: relative;
    width: 100%;
    height: 315px;
    margin: 0 auto;
}

.character-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s;
}

.character-slide.active {
    opacity: 1;
    z-index: 1;
}

.character-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.character-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.3;
}

.character-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    position: relative;
    width: 240px;
    height: 70px;
    margin-left: auto;
    margin-right: auto;
}

.nav-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.nav-items {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 15px;
    z-index: 2;
    width: 100%;
    padding: 10px 0;
}

.nav-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, opacity 0.3s;
    opacity: 0.5;
}

.nav-item.active {
    transform: scale(1.1);
    opacity: 1;
}

.nav-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 角色信息样式 */
.character-info h2 {
    font-size: 24px;
    color: #ffd900;
    margin-bottom: 10px;
}

.character-info h3 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
}

.character-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-icon {
    font-size: 24px;
}

.stat-value {
    font-size: 24px;
    color: #ffd900;
}

.stat-label {
    font-size: 18px;
    color: #fff;
}

/* 页脚样式 */
.footer {
    width: 100%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px 0;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    padding: 0 15px;
}

.copyright p {
    margin: 5px 0;
}

.copyright a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

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

/* 年龄限制图标 */
.age-rating {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: auto;
    z-index: 2;
}

.age-rating-icon {
    width: 150px;
    height: auto;
    transition: transform 0.3s;
}

.age-rating-icon:hover {
    transform: scale(1.1);
}

/* 社交媒体链接 */
.social-links {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100;
    width: 60px;
}

.social-bg {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.social-icons {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px 0;
}

.social-links a {
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: scale(1.1);
}

.social-links img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 返回按钮 */
.back-button {
    position: fixed;
    top: 10%;
    left: 20px;
    z-index: 100;
    transition: transform 0.3s;
}

.back-button:hover {
    transform: scale(1.1);
}

.back-button img {
    width: auto;
    height: auto;
}

/* 顶部横幅 */
.top-banner {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding: 8px 40px;
    min-height: 66px;
    box-sizing: border-box;
}

.top-banner-content {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    max-width: 800px;
    position: relative;
    height: 50px;
}

.game-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.game-title-banner {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: center;
    align-items: center;
    min-width: 200px;
}

.game-title-banner .main-title {
    color: #ffffff;
    -webkit-text-stroke: 0.5px rgba(255, 217, 0, 0.5);
    text-shadow: 0 0 1px rgba(255, 217, 0, 0.3);
    width: 100%;
}

.game-title-banner .sub-title {
    font-size: 14px;
    color: #ffffff;
    opacity: 0.9;
    -webkit-text-stroke: 0.3px rgba(255, 217, 0, 0.4);
    width: 100%;
}

/* 提示框样式 */
.custom-alert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(105, 101, 101, 0.9);
    border: 2px solid #f1ebc8;
    border-radius: 10px;
    padding: 20px 40px;
    color: #f6f8f0;
    font-size: 18px;
    text-align: center;
    z-index: 1000;
    animation: fadeInOut 2s ease-in-out forwards;
    box-shadow: 0 0 20px rgba(255, 217, 0, 0.3);
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    20% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
    80% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
}

/* 响应式设计 */
/* 大屏幕设备 (1200px 及以上) */
@media (min-width: 1200px) {
    .container {
        width: 100%;
        margin: 0;
    }
    
    .video-container {
        max-width: 600px;
        padding: 0 20px;
    }
    
    .slider-bg {
        padding: 3px;
    }
    
    .video-bg,
    .slider {
        max-width: 560px;
    }
    
    .news-list,
    .character-showcase {
        max-width: 760px;
    }
    
    .logo-container {
        width: 100%;
        margin-bottom: -250px;
    }
    
    .play-container {
        width: 220px;
    }
    
    .buttons-wrapper {
        transform: translateY(-250px);
    }
    
    .download-buttons a {
        width: 200px;
    }

    .header-content {
        margin-bottom: -200px;
    }
    
    .play-now {
        width: 220px;
    }
}

/* 平板和小屏幕电脑 (768px - 1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
    .container {
        width: 100%;
        margin: 0;
    }
    
    .video-container {
        max-width: 600px;
        padding: 0 20px;
    }
    
    .slider-bg {
        padding: 3px;
    }
    
    .video-bg,
    .slider {
        max-width: 100%;
    }
    
    .download-buttons a {
        width: 160px;
    }
  
    .logo-container {
        width: 100%;
        margin-bottom: -200px;
    }
    
    .play-container {
        width: auto;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }
    
    .play-now {
        width: 180px;
    }
    
    .buttons-wrapper {
        transform: translateY(-400px);
    }

    .header-content {
        margin-bottom: -300px;
    }

    .play-now img {
        width: 180px;
    }
}

/* 手机设备 (426px - 767px) */
@media (min-width: 426px) and (max-width: 767px) {
    .container {
        overflow-x: hidden;
        width: 100%;
    }

    .header {
        min-height: auto;
        overflow: visible;
    }

    .header-content {
        overflow: visible;
    }

    .logo-container {
        width: 100%;
        overflow: visible;
        margin-bottom: -100px;
        align-items: center;
    }
    
    .logo {
        width: 150%;
        max-width: none;
    }

    .buttons-wrapper {
        position: relative;
        z-index: 10;
        transform: translateY(-80px);
        margin-bottom: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .game-intro {
        position: relative;
        z-index: 1;
        margin-top: 50px;
    }

    .slider-bg {
        max-width: 400px;
        margin: 0 auto 30px;
        padding: 3px;
    }
    
    .slider {
        height: auto;
        aspect-ratio: 16/9;
    }

    .slide {
        padding: 0;
    }

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

    .play-container {
        width: auto;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }
    
    .play-now {
        width: 160px;
    }
    
    .store-buttons {
        gap: 10px;
    }
    
    .download-buttons a {
        width: 140px;
    }
    
    .video-container {
        padding: 0 10px;
        height: 240px;
    }
    
    .video-bg {
        height: 240px;
    }
    
    .news-list {
        margin: 30px 15px;
    }
    
    .news-item {
        margin-bottom: 15px;
    }
    
    .more-btn {
        max-width: 160px;
        margin: 20px auto;
    }
    
    .character-showcase {
        gap: 20px;
        margin: 20px auto;
        padding: 0 15px;
    }

    .hero-section,
    .boss-section {
        max-width: 400px;
    }

    .character-slides {
        height: 240px;
    }
    
    .character-nav {
        width: 180px;
        height: 60px;
    }
    
    .nav-item {
        width: 40px;
        height: 40px;
    }
    
    .section-title img {
        width: 80%;
        max-width: 300px;
    }
    
    .age-rating {
        top: 15px;
        left: 15px;
    }
    
    .age-rating-icon {
        width: 60px;
    }
    
    .social-links {
        width: 50px;
    }
    
    .back-button {
        top: 15px;
        left: 15px;
    }
    
    .back-button img {
        width: 35px;
    }

    .top-banner {
        width: 100vw;
        left: 50%;
        transform: translateX(-50%);
    }

    .top-banner-content {
        padding: 6px 60px 6px 70px;
    }

    .top-banner .age-rating {
        width: 45px;
        height: 45px;
    }

    .game-icon {
        width: 40px;
        height: 40px;
    }

    .game-intro {
        margin: 20px 0;
    }

    .news-item {
        max-width: 400px;
    }

    .play-now img {
        width: 160px;
    }
}

/* 页脚响应式 */
@media (max-width: 768px) {
    .footer-wrapper {
        margin-top: 30px;
    }

    .character-showcase {
        margin-bottom: 30px;
    }
    
    .boss-section {
        margin-bottom: 30px;
    }

    .container {
    }

    .top-banner {
        padding: 8px 30px;
        min-height: 56px;
    }

    .top-banner-content {
        height: 40px;
    }

    .game-icon {
        width: 40px;
        height: 40px;
    }

    .age-rating {
        width: 35px;
        height: 35px;
    }

    .game-title-banner {
        font-size: 14px;
        min-width: 150px;
    }

    .events {
        padding: 15px 0;
    }
    
    .news-list {
        padding: 0 15px;
        gap: 15px;
    }
    
    .news-title {
        font-size: 14px;
        bottom: 30px;
    }
    
    .more-btn {
        max-width: 160px;
        margin-top: 15px;
    }
}

/* 小型手机设备 (375px - 425px) */
@media (max-width: 425px) {
    .header {
        min-height: auto;
        overflow: visible;
    }

    .header-content {
        overflow: visible;
        margin-bottom: 0;
    }

    .logo-container {
        width: 100%;
        overflow: visible;
        margin-bottom: -150px;
        align-items: center;
    }

    .logo {
        width: 150%;
        max-width: none;
    }

    .buttons-wrapper {
        position: relative;
        z-index: 10;
        transform: translateY(-80px);
        margin-bottom: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .play-container {
        width: auto;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }

    .play-now {
        width: 140px;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-top: 8px;
    }

    .store-buttons {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin: 0;
    }

    .store-buttons a,
    .download-buttons > a {
        width: 140px;
    }

    .store-buttons a img,
    .download-buttons > a img {
        width: 100%;
        height: auto;
    }

    .game-intro {
        position: relative;
        z-index: 1;
        margin-top: 0;
    }

    .slider-bg {
        max-width: 320px;
        margin: 0 auto 15px;
        padding: 3px;
    }
    
    .slider {
        height: auto;
        aspect-ratio: 16/9;
    }

    .slide {
        padding: 0;
    }

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

    .news-item {
        max-width: 320px;
    }

    .video-container {
        padding: 0 10px;
        max-width: 320px;
        margin: 20px auto;
    }

    .character-showcase {
        max-width: 320px;
        margin: 20px auto;
        padding: 0 10px;
    }

    .character-slides {
        height: 220px;
    }

    .section-title {
        margin-bottom: 12px;
    }

    .section-title img {
        width: 90%;
        max-width: 280px;
    }

    .top-banner-content {
        padding: 6px 50px 6px 60px;
    }

    .game-icon {
        width: 35px;
        height: 35px;
    }

    .game-title-banner {
        font-size: 13px;
    }

    .game-title-banner .sub-title {
        font-size: 11px;
    }

    .top-banner .age-rating {
        width: 30px;
        height: 30px;
        left: 10px;
    }

    .more-btn {
        max-width: 140px;
        margin-top: 12px;
    }

    .game-intro {
        margin: 20px 0;
    }

    .top-banner {
        padding: 8px 20px;
    }

    .age-rating {
        height: 30px;
    }

    .news-title {
        font-size: 12px;
        bottom: 25px;
    }

    .events {
        padding: 10px 0;
    }
    
    .news-list {
        padding: 0 10px;
        gap: 10px;
    }
    
    .news-item {
        max-width: 100%;
    }
    
    .more-btn {
        max-width: 140px;
        margin-top: 12px;
    }
}

/* 超小型手机设备 (375px 以下) */
@media (max-width: 375px) {
    .buttons-wrapper {
        position: relative;
        z-index: 10;
        transform: translateY(-60px);
        margin-bottom: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .play-container {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding: 0;
    }

    .play-now {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .play-now img {
        width: 90px;
        height: auto;
        margin: 0 auto;
        display: block;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-top: 8px;
    }

    .store-buttons {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin: 0;
    }

    .store-buttons a,
    .download-buttons > a {
        width: 120px;
    }

    .store-buttons a img,
    .download-buttons > a img {
        width: 100%;
        height: auto;
    }

    .slider-bg {
        max-width: 280px;
        margin: 0 auto 15px;
        padding: 3px;
    }
    
    .slider {
        height: auto;
        aspect-ratio: 16/9;
    }

    .slide {
        padding: 0;
    }

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

    .news-item {
        max-width: 280px;
    }

    .video-container {
        max-width: 280px;
        height: 160px;
    }
    
    .video-bg {
       max-height: 160px;
    }

    .character-showcase {
        max-width: 280px;
    }

    .character-slides {
        height: 160px;
    }

    .section-title {
        margin-bottom: 10px;
    }

    .section-title img {
        width: 85%;
        max-width: 240px;
    }

    .top-banner-content {
        padding: 6px 45px 6px 55px;
    }

    .game-icon {
        width: 30px;
        height: 30px;
    }

    .game-title-banner {
        font-size: 12px;
    }

    .game-title-banner .sub-title {
        font-size: 10px;
    }

    .top-banner .age-rating {
        width: 35px;
        height: 35px;
        left: 8px;
    }

    .more-btn {
        max-width: 120px;
        margin: 10px auto;
    }

    .game-intro {
        margin: 15px 0;
    }

    .top-banner {
        padding: 8px 15px;
    }

    .age-rating {
        height: 25px;
    }

    .news-title {
        font-size: 12px;
        bottom: 20px;
    }

    .events {
        padding: 10px 0;
    }
    
    .news-list {
        padding: 0 8px;
    }
    
    .news-item {
        max-width: 100%;
    }
    
    .more-btn {
        max-width: 140px;
        margin-top: 12px;
    }
}

/* 页面包装器 */
.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
} 