@font-face {
    font-family: 'MinecraftStandard';
    src: url('./fonts/MinecraftStandard.otf') format('opentype');
  }
  
  body {
    margin: 0;
    padding: 40px;
    background-color: #121212;
    font-family: 'MinecraftStandard', monospace;
    color: #92fe6c;
  }
  
  h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .overlay-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .overlay-card {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #92fe6c;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 0 10px #000;
  }
  
  .overlay-card h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.3rem;
  }
  
  .toggle {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .toggle input {
    margin-right: 8px;
  }
  
  .option {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
  }
  
  .option label {
    font-size: 0.9rem;
    margin-bottom: 4px;
  }
  
  .option input {
    padding: 4px;
    border-radius: 4px;
    border: 1px solid #333;
    background: #1a1a1a;
    color: #92fe6c;
    font-family: inherit;
  }
  
  .url-box {
    width: 100%;
    padding: 6px;
    font-size: 0.9rem;
    border: 1px solid #333;
    border-radius: 4px;
    background: #1a1a1a;
    color: #92fe6c;
    margin-bottom: 8px;
  }
  
  button {
    font-family: inherit;
    background: #92fe6c;
    color: #000;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
  }
  
  button:hover {
    background: #b4ff8f;
  }
  