/* TypeNinja - Responsive Styles */

/* Tablet Styles */
@media screen and (max-width: 1024px) {
  .game-container {
    max-width: 90%;
    height: 85vh;
  }
  
  .game-title {
    font-size: 3.5rem;
  }
}

/* Mobile Landscape Styles */
@media screen and (max-width: 768px) {
  .game-container {
    max-width: 95%;
    height: 80vh;
  }
  
  .game-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }
  
  .menu-button {
    padding: 10px 25px;
    font-size: 1.1rem;
  }
  
  .difficulty-button {
    padding: 6px 14px;
    font-size: 0.9rem;
  }
  
  .typing-area {
    height: 50px;
  }
  
  .typing-feedback {
    min-width: 80%;
    font-size: 1rem;
  }
}

/* Mobile Portrait Styles */
@media screen and (max-width: 480px) {
  .game-container {
    height: 100vh;
    max-height: none;
    border-radius: 0;
  }
  
  .game-header {
    padding: 8px 15px;
    font-size: 1rem;
  }
  
  .game-title {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
  }
  
  .menu-button {
    padding: 8px 20px;
    font-size: 1rem;
  }
  
  .difficulty-selector {
    flex-direction: column;
    gap: 8px;
  }
  
  .difficulty-button {
    width: 120px;
    text-align: center;
  }
  
  .game-over h2 {
    font-size: 2.5rem;
  }
  
  .final-score {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
}

/* Small Height Adjustments */
@media screen and (max-height: 600px) {
  .game-container {
    height: 95vh;
  }
  
  .game-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .typing-area {
    height: 40px;
  }
  
  .game-header {
    padding: 5px 15px;
  }
}
