.game-container { 
    background: #fff; 
    border-radius: 4px; 
    padding: 40px 30px; 
    text-align: center; 
    position: relative;
    border: 1px solid #dedede;
    box-shadow:0 2px 8px rgba(0, 0, 0, 0.06);
    width: 100%;
    box-sizing: border-box;

}
  .quote { position: relative; display: inline-block; font-size: 18px; line-height: 1.8;}
  .quote::before { content: "“"; 
    font-family: "abril-tiling", serif;
    font-size: 150px; 
    color: rgba(0,0,0,0.05); 
    position: absolute; 
    top: -90px; 
    left: -10px; 
    z-index: 0; 
    }
  /*.quote::after { content: "”"; font-size: 80px; color: rgba(0,0,0,0.1); position: absolute; bottom: -20px; right: -20px; z-index: 0; }*/
  .quote p {font-size: 45px!important;}
  .quote span, .quote p { position: relative; z-index: 1; display: inline-block; }
  
  .quote-info { margin-bottom: 70px; }
  .blank { display: inline-block; min-width: 100px; height: 40px; background-color: #ebeef5; margin: 0 5px; cursor: pointer; padding: 4px 6px; transition: background 0.3s, box-shadow 0.3s, transform 0.2s; color: transparent; text-align: center; vertical-align: middle; line-height: 40px; border: none; border-radius: 4px; }
  .blank.correct { background-color: #c2f0c2; color: #000; }
  .blank.incorrect { background-color: #f0c2c2; color: transparent; }
  .blank.active { background-color: #9eacce; border: none; }
  .blank:hover:not(.correct) { box-shadow: 0 0 5px 2px #a8d0ff inset; transform: scale(1.05); }
  .options { margin-top: 25px; display: flex; flex-wrap: wrap; justify-content: center; }
  .option-btn { padding: 8px 14px; margin: 5px; cursor: pointer; border: none; border-radius: 6px; background-color: #3e5a9d; color: #fff; font-weight: bold; font-size: 16px; transition: background 0.3s, transform 0.2s, visibility 0.3s; }
  .option-btn:hover { background-color: #9eacce; }
  .option-btn:active { transform: scale(1.1); }
  .option-btn.used { visibility: hidden; }
  #result { margin-top: 20px; font-weight: bold; font-size: 18px; }
  .dragging { opacity: 0.7; transform: scale(1.1); transition: transform 0.2s, opacity 0.2s; }
  
  @media (max-width:864px){ 
  .quote p {font-size: 28px!important; line-height: 2.3;}
 
}

  @media (max-width:500px){ 
   .game-container { padding: 30px 7px; }
   .quote p {font-size: 23px; line-height: 1.5;}
   .blank { border-radius: 0px; border-bottom: 3px solid #9eacce; background-color: rgba(250,250,250,0); height: 0px; min-width: 35px!important; /*height: 1px; min-width: 50px; margin-top: 10px;*/}
   .blank.active {background-color: rgba(250,250,250,0.1)!important; border-bottom: 3px solid #9eacce; }
   .blank.correct {
        background-color: rgba(250,250,250,0.1);
        padding-left: 0;
        padding-right: 0;
        margin-top: -45px;
        border-bottom: none;
        text-decoration: underline 3px solid #9eacce;
   } 
    .quote::before { 
        font-size: 100px; 
        color: rgba(0,0,0,0.1); 
        position: absolute; 
        top: -45px; 
        left: 0; 
    }
     .quote-info { padding: 0 30px; }
     .options h2 {font-size: 1.3rem;}
  }
