.hand {
    margin:20px;
    display:  grid;
    grid-gap: 0.5rem;
    grid-template-columns: repeat(13, 50px);
    transition: grid-template-columns 0.5s;
}


.card1 {
    box-shadow: 2px 2px 2px 2px #00000077;
    border-radius: 5px;
    background-color: #ffffff;
    width: 120px;
    height: 150px;
    display: grid;
    grid-template-columns: 30px 60px 30px;
    grid-template-rows: 35px 80px 35px;
    align-items: center;
    justify-items: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card1.selected {
    transform: translateY(-20px); /* Kartı yukarı çıkar */
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3); /* Hafif gölge efekti */
}

.tl {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    padding: 4px;
    font-size: 0.8rem;
}

.m {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    font-size: 60px;
}

.br {
    grid-column: 3 / 4;
    grid-row: 3 / 4;
    padding: 4px;
    font-size: 0.8rem;
    transform: rotate(180deg);
}

