<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Event Center</title>
  <link rel="icon" type="image/svg+xml" href="./favicon.svg" />
  <link rel="icon" type="image/x-icon" href="./favicon.ico" />
  <style>
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; background: #1a1a2e; color: #eee; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; }
    h1 { font-size: 2rem; margin-bottom: 2rem; background: linear-gradient(90deg, #fdf11f, #77f97a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
    .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; max-width: 800px; width: 100%; padding: 0 1rem; }
    a { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem 1rem; background: #16213e; border-radius: 12px; text-decoration: none; color: #eee; transition: transform 0.2s, background 0.2s; border: 1px solid #0f3460; }
    a:hover { transform: translateY(-4px); background: #0f3460; }
    .name { font-size: 1.1rem; font-weight: 600; margin-top: 0.5rem; }
    .path { font-size: 0.8rem; color: #888; margin-top: 0.25rem; }
  </style>
</head>
<body>
  <h1>Event Center</h1>
  <div class="grid">
    <a href="./dailyquests/">
      <div class="name">Daily Quests</div>
      <div class="path">./dailyquests/</div>
    </a>
    <a href="./freespins/">
      <div class="name">Free Spins</div>
      <div class="path">./freespins/</div>
    </a>
    <a href="./leaderboard/">
      <div class="name">Leaderboard</div>
      <div class="path">./leaderboard/</div>
    </a>
    <a href="./tournament/">
      <div class="name">Tournament</div>
      <div class="path">./tournament/</div>
    </a>
    <a href="./luckywheel/">
      <div class="name">Lucky Wheel</div>
      <div class="path">./luckywheel/</div>
    </a>
    <a href="./jssdk/test-operator.html?_se=1&_op=bragg">
      <div class="name">JS SDK</div>
      <div class="path">./jssdk/</div>
    </a>
  </div>
</body>
</html>