/* src/styles/base.css */
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f5f5f5;
  }
  
  .app-container {
    min-height: 100vh;
  }
  
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 48px;
    background-color: white;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    z-index: 100;
  }
  
  .header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
  }
  
  .header-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
  }
  
  .main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 16px 16px;
  }

  .game-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 1.2em;
    color: #666;
    animation: pulse 1.5s infinite;
  }
  
  .game-error {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    background: #fee2e2;
    border-radius: 8px;
    color: #dc2626;
    padding: 20px;
    text-align: center;
  }
  
  @keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
  }
  
  .games-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
  }
  
  @media (min-width: 768px) {
    .games-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .games-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }