<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Responsive Styles */

/* Large Devices (Desktops) */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}

/* Medium Devices (Tablets) */
@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small Devices (Landscape Phones) */
@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  
  /* Navigation Toggle */
  .menu-toggle {
    display: flex;
  }
  
  nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background-color: var(--dark-bg);
    flex-direction: column;
    transition: var(--transition);
    padding: 32px 16px;
    z-index: 100;
  }
  
  nav.active {
    left: 0;
  }
  
  nav ul {
    flex-direction: column;
  }
  
  nav ul li {
    margin: 16px 0;
  }
  
  nav ul li:first-child {
    margin-top: 0;
  }
  
  /* Hero Section */
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  /* About Section */
  .about-content {
    flex-direction: column;
  }
  
  .about-image {
    max-width: 50%;
    margin-bottom: 24px;
  }
  
  .about-image.right {
    order: 3;
  }
  
  /* Games Grid */
  .games-grid {
    grid-template-columns: 1fr;
  }
  
  /* Contact Page */
  .contact-content {
    flex-direction: column;
  }
}

/* Extra Small Devices (Portrait Phones) */
@media (max-width: 576px) {
  .container {
    width: 100%;
    padding: 0 16px;
  }
  
  /* Header */
  header .container {
    padding: 12px 16px;
  }
  
  .logo {
    font-size: 1.25rem;
  }
  
  /* Hero Section */
  #hero {
    height: 80vh;
  }
  
  .hero-content h1 {
    font-size: 1.75rem;
  }
  
  /* About Section */
  .about-image {
    max-width: 80%;
  }
  
  /* Game Cards */
  .game-card h3 {
    font-size: 1.25rem;
  }
  
  .game-iframe {
    height: 300px;
  }
  
  /* Policy Pages */
  .policy-content {
    padding: 24px 16px;
  }
  
  .policy-section h2 {
    font-size: 1.25rem;
  }
}

/* Fix for iframe in small screens */
@media (max-width: 480px) {
  .game-iframe {
    height: 250px;
  }
}</pre></body></html>