* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #ffe082, #4fc3f7);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #222;
}

.game-container {
    width: 90%;
    max-width: 700px;
    background-color: white;
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.title-img {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
}

h1 {
    color: #ff9800;
    margin-bottom: 10px;
}

.intro {
    color: #555;
    margin-bottom: 25px;
}

.progress {
    font-weight: bold;
    color: #0288d1;
}

.question {
    font-size: 24px;
    font-weight: bold;
    margin: 25px 0;
}

.answers {
    display: grid;
    gap: 15px;
}

button {
    border: none;
    padding: 15px;
    font-size: 17px;
    border-radius: 15px;
    cursor: pointer;
    background-color: #03a9f4;
    color: white;
    transition: 0.2s ease;
}

button:hover {
    background-color: #0288d1;
    transform: scale(1.03);
}

button:disabled {
    cursor: not-allowed;
}

.correct {
    background-color: #4caf50 !important;
}

.wrong {
    background-color: #f44336 !important;
}

.score {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
}

.info {
    font-size: 15px;
    color: #555;
    margin-top: 15px;
    min-height: 45px;
}

.hidden {
    display: none;
}

.restart-btn {
    margin-top: 20px;
    background-color: #ff9800;
}

.restart-btn:hover {
    background-color: #f57c00;
}