.choiceGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 80px 10px 10px;
}

.homeOptions {
    margin-inline: 0;
    padding-top: 100px;
    width: 100%;
}

#bannerBackBtn {
    top: 87px;
    left: 25px;
    z-index: 1;
    color: white;
    background: #1d1d1d;
    padding: 6px 3px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 6px;
    transition: background 0.3s, color 0.3s, transform 0.1s;
    white-space: nowrap;
    width: 80px;
    text-align: center;
    box-sizing: content-box;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    position: fixed;
}

#bannerBackBtn:hover {
    background: black;
}

#bannerBackBtn:active {
    transform: scale(0.96);
}

.choiceCard {
    appearance: none;
    border: 0;
    width: 100%;
    text-align: left;
    cursor: pointer;
    padding: 50px 30px 50px;
    border-radius: 18px;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .16);
    transform: translateY(0);
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.choiceCard:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .2);
    filter: brightness(1.02);
}

.choiceCard:active {
    transform: translateY(0);
}

.choiceCard--live {
    background: radial-gradient(1200px 500px at 10% 10%, rgba(255, 255, 255, .18), transparent 55%),
        linear-gradient(135deg, #1b6cff 0%, #5a2bff 45%, #b020ff 100%);
}

.choiceCard--custom {
    background: radial-gradient(1200px 500px at 10% 10%, rgba(255, 255, 255, .18), transparent 55%),
        linear-gradient(135deg, #00b894 0%, #00c2ff 55%, #1b6cff 100%);
}

.choiceTop {
    display: flex;
    gap: 12px;
    align-items: center;
}

.choiceIcon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, .18);
    font-size: 22px;
}

#choiceiconLive {
    font-size: 14px;
    font-weight: bold;
    color: rgb(248, 34, 34);
    /* Apply the animation */
    animation: flash-animation 1.8s infinite;
}

/* Define the flashing effect */
@keyframes flash-animation {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.choiceTitle {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: .2px;
}

.choiceSub {
    margin-top: 4px;
    font-size: 13px;
    opacity: .92;
}

.choiceBottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, .22);
    font-size: 15px;
}

.choiceHint {
    opacity: .95;
}

.choiceArrow {
    font-weight: 900;
    font-size: 18px;
    line-height: 1;
    opacity: .95;
}

.choiceSubDescr {
    margin-top: 20px;
    font-size: 18px;
    margin-bottom: 20px;
}



@media (max-width: 820px) {
    .choiceGrid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 10px
    }
}


@media (max-width: 480px) {

    .homeOptions {
        margin-inline: 0;
        padding-top: 70px;
        width: 100%;
    }

    #bannerBackBtn {
        font-size: 12px;
        border-radius: 6px;
        transition: background 0.3s, color 0.3s, transform 0.1s;
        white-space: nowrap;
        width: 60px;
        text-align: center;
        box-sizing: content-box;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        position: absolute;
        margin-top: -17px;
        margin-left: -11px;
        position: fixed;
    }

    .choiceCard {
        appearance: none;
        border: 0;
        width: 100%;
        text-align: left;
        cursor: pointer;
        padding: 20px 30px 20px;
        border-radius: 18px;
        color: #fff;
        overflow: hidden;
        box-shadow: 0 10px 26px rgba(0, 0, 0, .16);
        transform: translateY(0);
        transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
    }

    .choiceSubDescr {
        margin-top: 15px;
        font-size: 14px;
        margin-bottom: 15px;
    }

    .choiceBottom {
        font-size: 13px;
    }
}