@media only screen and (max-width: 600px) {
  body {
    font-size: 0.9em;
  }
  
  .chinese-text {
    font-size: 0.9em;
  }
  
  #hero-game-iframe, 
  #play-game-iframe {
    min-height: 300px; 
  }
  
  nav .container {
    padding: 0.5rem;
  }
  
  .pixel-border {
    border-width: 2px;
  }
  
  section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  
  #download .flex {
    gap: 0.5rem;
  }
}

@media only screen and (min-width: 601px) and (max-width: 992px) {
  #hero-game-iframe, 
  #play-game-iframe {
    min-height: 400px;
  }
  
  body {
    font-size: 0.95em;
  }
  
  .chinese-text {
    font-size: 0.95em;
  }
}

@media only screen and (min-width: 993px) {
  #hero-game-iframe, 
  #play-game-iframe {
    min-height: 600px;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
}

@media print {
  nav, footer, iframe, #hero-play-btn {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
    text-shadow: none;
    font-family: serif;
  }
  
  * {
    animation: none !important;
    transition: none !important;
  }
  
  section {
    page-break-inside: avoid;
  }
}

@media screen and (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  
  .crt::before {
    display: none !important;
  }
} 