body {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    text-align: center;
}

#teamForm,
#endGameBtn {
    margin: 20px auto;
}

.clock {
    width: 200px;
    height: 200px;
    position: relative;
    margin: 20px;
    display: inline-block;
    background-image: url('clock.png');
    background-size: cover;
    background-position: center;
}

.hand {
    width: 2px;
    height: 30%; /* تصغير حجم العقارب */
    background: #000;
    position: absolute;
    top: 20%; /* ضبط الموضع العلوي للعقرب */
    left: 50%;
    transform-origin: bottom;
    transform: translateX(-50%);
}

.teamName {
    padding: 1px;
    position: relative;
    bottom: 30px;
    font-weight: bold;
}
.winner { text-align: center; font-size: 2em; }
.hidden { display: none !important; }