body {
    font-family: 'Georgia', serif;
    background-color: #e6e6e6;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

#game-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 600px;
    text-align: center;
}

h1 {
    color: #8B4513;
}

#game-map {
    margin-bottom: 20px;
    padding: 20px;
    border: 1px dashed #ccc;
    position: relative;
    min-height: 150px;
    background-image: url('stungMeanchey.png');
    background-size: contain;
    background-repeat: repeat-x;
}

.trigger {
    background-color: #A9A9A9;
    color: white;
    padding: 10px 13px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px;
    transition: background-color 0.3s;
    position: absolute;
}

.trigger:hover {
    background-color: #696969;
}

#shack-notebook { top: 30%; left: 10%; }
#trash-glass { top: 45%; left: 40%; }
#city-clock { top: 30%; right: 10%; }

#question-area {
    text-align: left;
    margin-top: 20px;
}

.option {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.2s;
}

.option:hover {
    background-color: #e0e0e0;
}

.correct { background-color: #d4edda; border-color: #c3e6cb; }
.incorrect { background-color: #f8d7da; border-color: #f5c6cb; }

#feedback {
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
}

#next-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
}

.hidden { display: none; }

.literacy-container {
    padding: 20px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    background-color: #f7f7f7;
    border-radius: 8px;
}

.blurred-word {
      filter: blur(8px);
      transition: filter 0.5s ease-out;
      display: inline-block;
      font-size: 2.7em;
      font-weight: bold;
      cursor: pointer;
}

.blurred-text-box {
      text-align: center;
      padding: 50px;
      background-color: #f4f4f4;
      border: 1px solid #ccc;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      line-height: 1.5;
}

.blurred-word:hover {
    filter: blur(0px);
}
.learned {
    filter: blur(0px);
}
.word-unit {
    display: inline-block;
    margin-right: 15px;
}
.blurred-word:not(.word-unit) {
  margin-right: 15px;
}

.scavenge-container {
    padding: 20px;
    border: 1px solid #ddd;
    background-color: #f7f7f7;
    border-radius: 8px;
    text-align: center;
}

#trash-items {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    margin-bottom: 20px;
}

.item {
    background-color: #A9A9A9;
    color: white;
    padding: 8px;
    border-radius: 5px;
    cursor: grab;
}

.bins-container {
    display: flex;
    justify-content: space-around;
}

.bin {
    width: 45%;
    min-height: 150px;
    border: 3px solid #8B4513;
    padding: 10px;
    background-color: #eee;
}

.bin h3 { margin-top: 0; }
.drag-over { border: 3px dashed #4CAF50; }
