*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
main #container
{
    background: black;
    height: 300px;
    width: 500px;
    color: #fff;
    border-radius: 10px;
}
main #container img 
{
    margin-left: 77%;
    margin-top: -8%;
}
main 
{
    margin-left: 34%;
    margin-top: 8%;
}
main #container .containt img 
{
    margin-left: 5%;
    margin-top: -8%;
}
main .containt p
{
    margin-left: 18%;
    margin-top: -10%;
}
.containt
{
    margin-top: -6%;
}



.card {
    width: 550px;
    height: 350px;
    background-color: #000;
    color: white;
    border-radius: 15px;
    padding: 20px;
    position: relative;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px; 
}

.hand-image {
    position: absolute;
    top: 10px;
    right: 10px;
}

.chip {
    width: 40px;
    height: 30px;
    background-color: #d4af37;
    border-radius: 5px;
    position: absolute;
    top: 40px;
    left: 30px;
}

.details {
    margin-top: 10px;
    text-align: left;
    font-size: 10px;
}

.indicator {
    width: 10px;
    height: 10px;
    background-color: green;
    border-radius: 50%;
    position: absolute;
    bottom: 20px;
    top: 57%;
    margin-left: 28%;
    animation: blink 1s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.balance-section {
    text-align: center;
    font-size: 14px;
}

.balance-section input {
    width: 100px;
    margin: 5px;
    font-size: 12px;
    padding: 3px;
}


