/* style.css */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a1a2e;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.game-card {
    background-color: #162447;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    text-align: center;
    max-width: 500px;
    width: 100%;
}

h1 {
    color: #e43f5a;
    font-size: 24px;
    margin-bottom: 20px;
}

#winner-name {
    color: #00fff0;
}

.step {
    font-size: 14px;
    color: #00fff0;
    margin-bottom: 10px;
}

.question-text {
    font-size: 20px;
    min-height: 60px;
    margin-bottom: 30px;
}

.btn-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

button {
    background-color: #1f4068;
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

button:hover {
    background-color: #e43f5a;
}

.restart-btn {
    background-color: #28a745;
    margin-top: 15px;
}

.result-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 15px;
}

.hidden {
    display: none;
}
