/*
 * .game-sec FIFA 背景響應式
 * 原圖 mobile.jpg：390 × 480 px（寬高比 13:16）
 * 覆寫 style.css 的 background-size: 100% 100%，避免不同螢幕比例下拉伸變形
 */
.game-sec {
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    /* 內容超出背景圖時的底色，請依圖片邊緣色調整 */
    background-color: #0a0a0a;
}

/* 小於原圖寬度（320～389px 等窄螢幕）：以寬度等比縮放，保留完整構圖 */
@media screen and (max-width: 389px) {
    .game-sec {
        background-size: 100% auto;
    }
}
