/* 修复白色竖线问题 */

/* 隐藏可能的问题伪元素 */
.game-title::before,
.game-title::after,
.enhanced-heading::before,
.floating-element::before,
.floating-element::after {
    display: none !important;
}

/* 移除可能的右边框 */
.game-title,
.enhanced-heading,
.floating-element,
.game-area,
.hero-container {
    border-right: none !important;
}

/* 移除可能创建竖线的box-shadow */
.game-title,
.enhanced-heading {
    box-shadow: none !important;
}

/* 确保没有右侧装饰线 */
.game-title {
    position: relative;
}

.game-title::after {
    display: none !important;
}

/* 游戏容器样式优化 */
.game-container {
    position: relative !important;
}

/* 全屏按钮样式 */
.fullscreen-btn {
    transition: all 0.3s ease !important;
}

.fullscreen-btn:hover {
    background: rgba(0, 0, 0, 0.9) !important;
    transform: scale(1.1) !important;
}