body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
}

.game-container {
    background: rgba(255,255,255,0.08);
    padding: 30px;
    border-radius: 20px;
    width: 500px;
    text-align: center;
    box-shadow: 0 0 25px rgba(0,0,0,0.4);
}

h1 {
    margin-bottom: 20px;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 18px;
}

.question-box {
    margin: 20px 0;
    min-height: 80px;
}

.answers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.answers button {
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: #38bdf8;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.answers button:hover {
    background: #0284c7;
}

#startBtn {
    margin-top: 20px;
    padding: 12px 30px;
    border: none;
    border-radius: 10px;
    background: #22c55e;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

#message {
    margin-top: 20px;
    font-size: 18px;
}