:root {
    --accent: #4f46e5;
    --bg: #f9f9f9;
    --card-bg: #fff;
    --text: #222;
    --muted: #777;
  }
  
  * {
    box-sizing: border-box;
  }
  
  @font-face {
    font-family: 'Noto Sans';
    font-weight: 700;
    font-style: normal;
    src: url('fonts/NotoSans-Bold-LatinSubset.woff2') format('woff2');
    unicode-range: U+0020-007E;
  }
  
  html {
    min-height: 100%;
    background: linear-gradient(45deg, #fed6e3 10%, #a8edea 50%, #fed6e3 90%);
  }
  
  body {
    min-height: 90vh;
    margin: 0;
    padding: 0;
    background: transparent;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    text-align: center;
  
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  h1 {
    font-size: 2.5em;
    margin-top: 30px;
    margin-bottom: 0.1em;
    color: rgb(0, 0, 0);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }
  
  p.subtitle {
    font-size: 1em;
    margin-top: 0;
    margin-bottom: 30px;
    color: var(--muted);
  }
  
  .games {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: calc(4 * 240px + 3 * 20px);
    margin: 0 20px;
  }
  
  .game-card {
    width: 240px;
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid transparent;
    text-align: center;
    animation: fadeInUp 0.4s ease both;
    transition: all 0.2s ease;
  }
  
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .game-card:hover {
    border-color: var(--accent);
  }
  
  .game-icon {
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  }
  
  .game-card .game-icon {
    width: 96px;
    height: 96px;
    border-radius: 16px;
    margin-bottom: 12px;
  }
  
  .game-card h3 {
    margin: 0;
    font-size: 1.1em;
    min-height: 2.6em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.3;
  }
  
  .game-card a {
    display: inline-block;
    margin-top: 8px;
    color: var(--accent);
    text-decoration: none;
    font-weight: bold;
  }
  
  .game-card a:hover {
    text-decoration: underline;
  }
  
  footer {
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 0.9em;
    color: var(--muted);
  }
  
  footer a {
    color: var(--muted);
    text-decoration: none;
  }
  