@import url('https://fonts.googleapis.com/css2?family=BBH+Sans+Hegarty&family=Bitcount+Grid+Single:wght@100..900&family=Doto:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #202933;
    color: #fff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container utama */
.app {
    background: #fff;
    color: #222;
    width: 90%;
    max-width: 500px;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

h1 {
    font-family: "BBH Sans Hegarty", sans-serif;
    font-size: 50px;
    font-weight: 40;
    text-align: center;
    color: #000000;
    margin-bottom: 20px;
}

.quiz h2 {
    font-family: "Bebas Neue", sans-serif;
    text-align: center;
    font-size: 25px;
    font-weight: 50;
    margin-bottom: 20px;
}

.btn {
    font-family: "Bebas Neue", sans-serif;
    font-size: 18px;
    background: #f1f1f1;
    color: #222;
    width: 100%;
    border: 2px solid #ddd;
    padding: 10px;
    margin: 8px 0;
    border-radius: 10px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover:not([disabled]) {
    background: #237cdb;
    color: #fff;
}

.btn:disabled {
    cursor: no-drop;
}

/* Warna hasil jawaban */
.correct {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.incorrect {
    background: #E53935;
    color: white;
    border-color: #E53935;
}

#nextbtn {
    background: #288dfc;
    color: white;
    font-weight: 500;
    width: 150px;
    border: none;
    padding: 10px;
    margin: 20px auto 0;
    border-radius: 10px;
    display: none;
    cursor: pointer;
    transition: 0.3s ease;
}

#nextbtn:hover {
    background: #1c66b5;
}

@media (max-width: 600px) {
    .app {
        padding: 20px;
    }

    h1 {
        font-size: 24px;
    }

    .quiz h2 {
        font-size: 18px;
    }
}
