body {
    margin: 0;
    background: rgb(11, 11, 13);
    color: rgb(252, 251, 240);
    font-family: 'Atkinson Hyperlegible', sans-serif;
    text-align: center;
    padding: 2rem;
  }
  
  h1 {
    font-family: 'Kyiv*Type Titling', serif;
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
  }
  
  h2 {
    font-weight: normal;
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .icon-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
  }
  
  .icon-container {
    position: relative;
    width: 128px;
    height: 160px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .icon-container:hover {
    transform: scale(1.05);
  }
  
  .icon-container img {
    width: auto;
    height: 128px;
    margin: 0 auto;
    height: 128px;
    display: block;
    transition: opacity 0.3s ease;
    filter: brightness(150%);
  }
  
  .icon-container .label {
    font-family: 'Kyiv*Type Titling', serif;
    color: #87CEEB;
    display: block;
    margin-top: 0.5rem;
    font-size: 0.95rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}
  
  .icon-container:hover .label {
    opacity: 1;
  }
  
  .cta {
    margin-top: 0;
    font-size: 1rem;
  }
  
  .enter-button {
    margin-top: 1rem;
    padding: 0.4rem;
    font-size: 1rem;
    background: transparent;
    border: 2px solid rgb(252, 251, 240);
    color: rgb(252, 251, 240);
    border-radius: 4px;
    font-family: 'Kyiv*Type Titling', serif;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
  }
  
  .enter-button:hover {
    background: rgb(252, 251, 240);
    color: black;
  }
  
  .blurb {
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    font-size: 1rem;
  }
  
  footer {
    margin-top: 2rem;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
  }
  
  footer a {
    color: rgb(252, 251, 240);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  footer a:hover {
    color: #87CEEB;
}
  