.cgu-game-section {
    margin-bottom: 36px;
}

.cgu-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.cgu-section-header h2,
.cgu-section-title {
    font-size: 24px;
    line-height: 1.25;
    margin: 0 0 14px;
}

.cgu-view-all {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.cgu-game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
    gap: 14px;
}

.cgu-game-card {
    display: block;
    color: inherit;
    text-decoration: none;
}

.cgu-game-card:hover {
    text-decoration: none;
}

.cgu-game-thumb {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 14px;
    background: #f2f2f2;
}

.cgu-game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .2s ease;
}

.cgu-game-card:hover .cgu-game-thumb img {
    transform: scale(1.05);
}

.cgu-game-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 700;
    background: #ececec;
}

.cgu-game-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
    margin-top: 8px;
    text-align: center;
}

.cgu-game-player {
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
    background: #111;
    margin-bottom: 22px;
}

.cgu-game-player iframe {
    width: 100%;
    min-height: 620px;
    display: block;
}

@media (max-width: 849px) {
    .cgu-game-grid {
        grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
        gap: 12px;
    }

    .cgu-game-player iframe {
        min-height: 500px;
    }
}

@media (max-width: 549px) {
    .cgu-game-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

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

    .cgu-section-header h2,
    .cgu-section-title {
        font-size: 20px;
    }

    .cgu-game-player {
        border-radius: 12px;
    }

    .cgu-game-player iframe {
        min-height: 420px;
    }
}
