body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #e0f7fa;
    overflow: hidden;
  }
  
  .game-container {
    text-align: center;
    padding: 20px;
  }
  
  h1 {
    color: #006064;
  }
  
  #gameArea {
    position: relative;
    height: 70vh;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    margin: 20px auto;
    max-width: 600px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  .word {
    position: absolute;
    padding: 8px 12px;
    background-color: #b2ebf2;
    color: #004d40;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    user-select: none;
  }
  
  .affirmation-box {
    font-size: 18px;
    margin-top: 10px;
    color: #00796b;
    min-height: 24px;
  }
  
  .score {
    font-weight: bold;
    color: #004d40;
  }
  