:root {
      --bg: #1b1b1b;
      --panel: #2a2a2a;
      --accent: #f0f0f0;
      --text: #f0f0f0;
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: radial-gradient(circle at top, #2a2a2a, var(--bg));
      color: var(--text);
      font-family: "Cinzel", "Times New Roman", serif;
    }

    .container {
      background: var(--panel);
      padding: 2.5rem 3rem;
      border-radius: 14px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.6);
      text-align: center;
      max-width: 420px;
      width: 100%;
    }

    h1 {
      margin-top: 0;
      margin-bottom: 0.5rem;
      font-size: 2.2rem;
      letter-spacing: 1px;
      color: var(--accent);
    }

    .subtitle {
      font-size: 0.95rem;
      opacity: 0.85;
      margin-bottom: 2rem;
    }

    .choices {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.2rem;
    }

    button {
      background: linear-gradient(180deg, #3a3a3a, #242424);
      border: 2px solid var(--accent);
      color: var(--text);
      padding: 1rem 1.2rem;
      font-size: 1.1rem;
      border-radius: 10px;
      cursor: pointer;
      transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    }

    button:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.4);
      background: linear-gradient(180deg, #444, #2a2a2a);
    }

    button:active {
      transform: translateY(0);
      box-shadow: 0 6px 12px rgba(0,0,0,0.4);
    }

    .hint {
      margin-top: 1.8rem;
      font-size: 0.85rem;
      opacity: 0.7;
    }