.mainCard h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    letter-spacing: 0.04em;
    text-align: center;
    margin: 0;
    line-height: 1;
    color: var(--text-1);
}

.playGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    margin-top: 10px;
}

.playItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-2);
    padding: 25px;
    border: var(--border-3);
    border-radius: var(--radius-2);
    text-align: center;
    box-shadow: var(--shadow-1);
}

.playItem-number {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 45px;
    color: var(--text-1);
    border-radius: 50%;
    padding-top: 6px;
    height: 66px;
    width: 66px;
    text-align: center;
    paint-order: stroke fill;
    -webkit-text-stroke: 4px var(--black);
}

.itemGrow .playItem-number {
    background: linear-gradient(180deg, var(--green-light), var(--green), var(--green-dark));
}

.itemFight .playItem-number {
    background: linear-gradient(180deg, var(--orange-deep-light), var(--orange-deep), var(--orange-deep-dark));
}

.itemLevel .playItem-number {
    background: linear-gradient(180deg, var(--purple-light), var(--purple), var(--purple-dark));
}

.playItem h3 {
    margin: 13px 0 6px;
    font-size: 2.5rem;
}

.playItem p {
    color: var(--text-3);
    font-weight: bold;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature {
    display: flex;
    flex-direction: column;
    background: var(--bg-1);
    padding: 25px;
    border: var(--border-3);
    border-radius: var(--radius-2);
    gap: 6px;
    box-shadow: var(--shadow-1);
}

.comingSoon {
    font-weight: bold;
    color: var(--text-4);
    text-decoration: none;
    text-align: center;
    width: 100%;
    justify-content: center;
}

.comingSoon:hover {
    text-decoration: underline;
}

.feature h2,
.feature p {
    margin: 0;
}

.feature h2 {
    font-size: 1.75rem;
    text-align: center;
}

.feature p {
    color: var(--text-3);
    font-weight: bold;
}

@media screen and (max-width: 759px) {
    .playGrid {
        grid-template-columns: repeat(1, 1fr);
        gap: 25px;
        margin-top: 10px;
    }
    .playItem h3 {
        font-size: 3rem;
    }
    .features {
        grid-template-columns: repeat(1, 1fr);
        text-align: center;
    }
}