body {
    font-family: "DotGothic16", serif;
    font-weight: 400;
    font-style: normal;
    background: linear-gradient(135deg, #74ebd5, #9face6);
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
h1 {
    margin-top: 50px;
    font-size: 3rem;
}
.game-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin: 50px auto;
    width: 90%;
    max-width: 1200px;
}
.game {
    background: #fff;
    color: #333;
    text-decoration: none;
    padding: 20px 10px;
    font-size: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.0s, box-shadow 0.0s;
    text-align: center;
}
.game:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

footer {
    background: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    margin-top: auto;
    font-size: 1rem;
}

/* 行動裝置樣式 */
@media (max-width: 768px) {
    .game-container {
        grid-template-columns: repeat(2, 1fr); /* 每行顯示2個 */
        gap: 15px;
    }
    .game {
        font-size: 1.2rem;
        padding: 15px 10px;
    }
    h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .game-container {
        grid-template-columns: 1fr; /* 每行顯示1個 */
    }
    .game {
        font-size: 1rem;
        padding: 10px;
    }
    h1 {
        font-size: 2rem;
    }
}