:root {
    --bg: #0a0a0a;
    --accent: #00ffe7;
    --text: #ffffff;
    --error: #ff5555;
    --border: #1a1a1a;
  }
  
  .game-section {
    font-family: 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  
  .container {
    text-align: center;
    max-width: 500px;
    width: 100%;
  }
  
  h1.glow {
    font-size: 2.5rem;
    color: var(--accent);
    text-shadow: 0 0 8px var(--accent);
    margin: 0;
  }
  
  .word-pair {
    display: flex;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    gap: 0.5rem;
  }
  
  .steps {
    display: flex;
    flex-direction: column-reverse;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
  }
  
  .wl-step {
    padding: 0.5rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1.1rem;
    transition: background 0.3s, color 0.3s;
  }
  
  .wl-step.filled {
    background-color: var(--accent);
    color: #000;
    font-weight: bold;
  }
  
  input[type="text"] {
    padding: 0.7rem;
    border: 2px solid var(--accent);
    border-radius: 6px;
    width: 100%;
    max-width: 200px;
    font-size: 1rem;
    background-color: #111;
    color: var(--text);
    text-align: center;
    margin-bottom: 0.8rem;
  }
  
  input:disabled {
    opacity: 0.5;
  }
  
  .controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  button {
    padding: 0.6rem 1rem;
    background: var(--accent);
    color: #000;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
  }
  
  button:hover {
    background: #00e5d1;
  }
  
  .message {
    min-height: 24px;
    font-size: 1rem;
    margin-top: 0.5rem;
  }
  
  .highscore {
    margin-top: 1rem;
    font-weight: bold;
    color: var(--accent);
  }
  
  .modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
  }
  
  .modal-content {
    background: #111;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    color: var(--text);
    box-shadow: 0 0 20px var(--accent);
  }
  