body {
    background-color: #0b4d2c; /* Yaşıl masa rəngi */
    color: white;
    font-family: sans-serif;
    margin: 0;
    overflow: hidden;
}

#game-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: space-between;
    padding: 20px;
}

#table {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    border: 5px solid #083d23;
    border-radius: 50%;
    margin: 20px auto;
    width: 80%;
}

.tile {
    width: 45px;
    height: 60px;
    background: #fdf5e6;
    border-radius: 5px;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 20px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    cursor: grab;
    user-select: none;
}

.tile.red { color: #e74c3c; }
.tile.blue { color: #3498db; }
.tile.black { color: #2c3e50; }
.tile.yellow { color: #f1c40f; }
.tile.back { background: #2c3e50; color: white; cursor: pointer; }

#my-istaka {
    background: #5d4037;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.5);
}

.row {
    display: flex;
    gap: 5px;
    min-height: 70px;
    background: #3e2723;
    margin-bottom: 5px;
    padding: 5px;
    border-radius: 5px;
}

#center-info {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}

.my-turn #center-info {
    color: #2ecc71;
    animation: blink 1s infinite;
}

@keyframes blink { 50% { opacity: 0.5; } }