<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Scoreboard</title>
  <link href="/bootstrap/css/bootstrap.min.css" rel="stylesheet">
  <style>
    /* Add some basic aesthetic styling to meet the "Rich Aesthetics" requirement */
    body {
      background-color: #0f172a;
      color: #f8fafc;
      font-family: 'Inter', -apple-system, sans-serif;
    }
    .container {
      margin-top: 2rem;
      background: #1e293b;
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    }
    .table {
      color: #f8fafc;
    }
    .table-striped>tbody>tr:nth-of-type(odd)>* {
      color: #f8fafc;
    }
    .btn-primary {
      background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
      border: none;
      transition: transform 0.1s;
    }
    .btn-primary:hover {
      transform: scale(1.05);
    }
    .winner {
      color: #fbbf24;
      font-weight: bold;
    }
    h1, h2, h3 {
      background: linear-gradient(to right, #60a5fa, #a78bfa);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    a.nav-link {
      color: #60a5fa;
    }
    a.nav-link:hover {
      color: #93c5fd;
    }
  </style>
</head>
<body>
  <div id="app"></div>
  <script src="/js/compiled/app.js"></script>
</body>
</html>
