body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* height: 100vh; */
    margin: 0;
    background: linear-gradient(135deg, #34495e, #2c3e50);
    font-family: 'Arial', sans-serif;
    color: #ecf0f1;
}

#game {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin-top: 100px;
    margin-bottom: 20px;
    border: 2px solid #34495e;
    border-radius: 10px;
    background: rgba(52, 73, 94, 0.8);
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.seats {
    display: flex;
    flex-wrap: wrap;
    width: 30%;
    justify-content: space-evenly;
}

.seat {
    width: 45%;
    height: 50px;
    margin: 5px;
    background-color: #27ae60;
    border: 2px solid #2c3e50;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s;
}

.seat:hover {
    background-color: #2ecc71;
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.7);
}

#bot {
    width: 20%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e74c3c;
    border: 2px solid #2c3e50;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 10px;
    position: relative;
}

#bot img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

#result {
    font-size: 24px;
    margin-bottom: 20px;
    color: #f1c40f;
    text-shadow: 0 0 5px rgba(241, 196, 15, 0.7);
    transition: color 0.3s, text-shadow 0.3s;
}

#startBtn {
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    background-color: #2980b9;
    border: none;
    border-radius: 5px;
    color: #ecf0f1;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 10px rgba(41, 128, 185, 0.5);
    margin-bottom: 50px;
}

#startBtn:hover {
    background-color: #3498db;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(52, 152, 219, 0.7);
}

#fireworks {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: none;
}

.firework {
    position: absolute;
    background: transparent;
    border-radius: 50%;
    animation: firework-animation 1s linear infinite;
}

@keyframes firework-animation {
    0% {
        transform: scale(0.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    #game {
        flex-direction: column;
        align-items: center;
        width: 90%;
    }

    .seats {
        width: 90%;
        margin-bottom: 20px;
    }

    .seat {
        width: 20%;
        height: 40px;
    }

    #bot {
        width: 50%;
        height: 150px;
        margin-bottom: 20px;
    }

    #result {
        font-size: 20px;
    }

    #startBtn {
        font-size: 16px;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .seat {
        width: 30%;
        height: 30px;
    }

    #bot {
        width: 70%;
        height: 120px;
    }

    #result {
        font-size: 18px;
    }

    #startBtn {
        font-size: 14px;
        padding: 6px 12px;
    }
}
