/* Reset sederhana */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f6f9;

    display: flex;
    justify-content: center;
    align-items: center;

    height: 100vh;
}

/* Container utama */
.container {
    width: 400px;
    background: white;
    padding: 25px;
    border-radius: 10px;

    box-shadow: 0 0 10px rgba(0,0,0,0.1);

    text-align: center;
}

/* Judul */
h1 {
    margin-bottom: 20px;
}

/* Kotak kata Inggris */
.word-box {
    border: 2px solid #3498db;

    padding: 20px;

    font-size: 28px;
    font-weight: bold;

    border-radius: 8px;

    margin-bottom: 20px;

    background-color: #ecf5ff;
}

/* Input jawaban */
input {
    width: 100%;

    padding: 12px;

    font-size: 16px;

    margin-bottom: 15px;

    border: 1px solid #ccc;
    border-radius: 6px;
}

/* Tombol */
button {
    width: 100%;

    padding: 12px;

    border: none;

    background: #3498db;
    color: white;

    font-size: 16px;

    cursor: pointer;

    border-radius: 6px;
}

/* Efek hover */
button:hover {
    background: #2980b9;
}

/* Hasil */
#result {
    margin-top: 15px;
    font-weight: bold;
}

/* Skor */
#score {
    margin-top: 10px;
    font-size: 18px;
}