body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f8ff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.game-container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    width: 100%;
}

h1 {
    font-size: 36px;
    color: #4CAF50;
    margin-bottom: 20px;
    text-shadow: 2px 2px #e0e0e0;
}

p {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.sentence-container {
    margin-bottom: 20px;
}

.drop-zone {
    background-color: #e0e0e0;
    padding: 5px 15px;
    border: 2px dashed #4CAF50;
    border-radius: 5px;
    min-width: 100px;
    display: inline-block;
    font-weight: bold;
    color: #4CAF50;
    font-size: 18px;
}

.word-bank {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.draggable-word {
    background-color: #ffeb3b;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: grab;
    color: #333;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 18px;
}

.draggable-word:hover {
    background-color: #fbc02d;
}

button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

button:hover {
    background-color: #45a049;
}

#check-btn {
    background-color: #ff5722;
}

#check-btn:hover {
    background-color: #e64a19;
}

.menu-btn {
    background-color: #2196F3;
}

.menu-btn:hover {
    background-color: #1976D2;
}

#result-message {
    font-size: 20px;
    margin-top: 15px;
    color: #d32f2f;
}
.hidden {
    display: none;
}


