* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    background-color: #1a1f2b;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }
  
  .container {
    max-width: 32rem;
    width: 100%;
  }
  
  h1 {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }
  
  .highlight {
    color: #34d399;
  }
  
  p {
    color: #94a3b8;
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
  
  button {
    background-color: #34d399;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-bottom: 2rem;
  }
  
  button:hover {
    background-color: #10b981;
  }
  
  .passwords-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  @media (min-width: 768px) {
    .passwords-container {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  .password {
    background-color: #273549;
    color: #34d399;
    padding: 1rem;
    border-radius: 0.5rem;
    font-family: monospace;
    text-align: center;
    word-break: break-all;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.2s;
  }
  
  .password:hover {
    opacity: 0.8;
  }