.sight-word-games-page {
    gap: 18px;
}

.sight-word-games-page > .card {
    position: relative;
    overflow: hidden;
}

.sight-word-games-page .hero-inner {
    min-height: 0;
}

.sight-game-choice-section {
    padding: 36px 34px;
    background:
        radial-gradient(circle at 10% 0%, rgba(92, 196, 255, 0.24), transparent 22%),
        radial-gradient(circle at 92% 10%, rgba(255, 205, 82, 0.30), transparent 24%),
        linear-gradient(180deg, rgba(246, 250, 255, 0.98), rgba(255, 249, 240, 0.98));
    border: 1px solid rgba(72, 183, 255, 0.22);
}

.sight-game-choice-section .section-tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    width: fit-content;
    margin: 0 0 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: linear-gradient(180deg, #e6f6ff, #bfe8ff);
    color: #165a91;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.sight-game-choice-section .section-title {
    margin: 0;
    color: #152340;
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.1;
}

.sight-game-choice-section .resource-text {
    max-width: 62ch;
    margin: 14px 0 0;
    color: #34425f;
    font-size: 16px;
    line-height: 1.6;
}

.sight-game-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.sight-game-choice-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    padding: 14px;
    border: 1px solid rgba(66, 116, 171, 0.16);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 34px rgba(19, 30, 60, 0.10);
    color: #152340;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.sight-game-choice-card:hover {
    transform: translateY(-4px);
    border-color: rgba(28, 100, 181, 0.42);
    box-shadow: 0 22px 38px rgba(19, 30, 60, 0.16);
}

.sight-game-choice-card:focus-visible {
    outline: 4px solid rgba(251, 87, 176, 0.46);
    outline-offset: 3px;
}

.sight-game-choice-thumb {
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    border-radius: 17px;
    background: linear-gradient(135deg, #edf3ff, #ffe8f5);
}

.sight-game-choice-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sight-game-choice-card--magic .sight-game-choice-thumb img {
    object-position: center top;
}

.sight-game-choice-card--flight .sight-game-choice-thumb img {
    object-position: center 80%;
}

.sight-game-choice-card--all-games .sight-game-choice-thumb {
    background:
        radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.48), transparent 24%),
        linear-gradient(135deg, #7750e7, #d95fbb 52%, #67c4ff);
}

.sight-game-choice-card--all-games .sight-game-choice-thumb img {
    object-position: center 35%;
}

.sight-game-choice-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
    padding: 16px 6px 5px;
}

.sight-game-choice-label {
    margin: 0 0 8px;
    color: #59708f;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.sight-game-choice-title {
    color: #152340;
    font-size: 22px;
    line-height: 1.12;
}

.sight-game-choice-description {
    margin-top: 10px;
    color: #4b5a78;
    font-size: 15px;
    line-height: 1.55;
}

.sight-game-choice-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 18px;
    padding: 10px 14px;
    border-radius: 14px;
    background: #174ea6;
    color: #ffffff;
    font-weight: 900;
    text-align: center;
}

.sight-game-choice-card--magic .sight-game-choice-action {
    background: #bd3b81;
}

.sight-game-choice-card--bingo .sight-game-choice-action {
    background: #5d3fba;
}

.sight-game-choice-card--all-games .sight-game-choice-action {
    background: #5d3fba;
}

.sight-game-choice-list-link {
    margin: 22px 0 0;
    color: #34425f;
    font-weight: 700;
    text-align: center;
}

.sight-game-choice-list-link a {
    color: #174ea6;
    font-weight: 900;
}

@media (max-width: 720px) {
    .sight-word-games-page {
        gap: 14px;
    }

    .sight-game-choice-section {
        padding: 26px 20px;
    }

    .sight-game-choice-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sight-game-choice-card {
        padding: 12px;
        border-radius: 20px;
    }

    .sight-game-choice-thumb {
        aspect-ratio: 3 / 2;
        border-radius: 14px;
    }

    .sight-game-choice-body {
        padding: 14px 4px 4px;
    }

    .sight-game-choice-title {
        font-size: 21px;
    }

    .sight-game-choice-description {
        margin-top: 8px;
        font-size: 14px;
        line-height: 1.48;
    }

    .sight-game-choice-action {
        min-height: 42px;
        margin-top: 14px;
        padding: 9px 12px;
        border-radius: 12px;
        font-size: 14px;
    }
}