/* Global */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

/* Header */
header {
  background-color: #000; /* Black banner */
  color: #f08a01; /* Orange text */
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; /* allows stacking on small screens */
}

header img {
  height: 50px;
}

header h1 {
  font-size: 1.5rem;
  margin: 0.5rem 0 0 0;
}

/* Main */
main {
  padding: 2rem;
  max-width: 900px;
  margin: auto;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

main h2, 
main h3 {
  color: #f08a01; /* Orange accents */
}

ul {
  margin-left: 1.2rem;
}

/* Hall of Fame */
.hall-of-fame {
  margin-top: 2rem;
}

.table-container {
  overflow-x: auto; /* scrollable on small screens */
}

.hof-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  min-width: 500px; /* ensures scroll kicks in */
}

.hof-table th, 
.hof-table td {
  border: 1px solid #ddd;
  padding: 0.75rem;
  text-align: left;
}

.hof-table th {
  background-color: #000; /* Black table header */
  color: #f08a01; /* Orange text */
}

.hof-table tr:nth-child(even) {
  background-color: #f2f2f2;
}

/* Footer */
footer {
  background-color: #000;
  color: #f08a01;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

footer p {
  margin: 0.2rem 0;
}

/* Links */
a {
  color: #f08a01;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  header {
    text-align: center;
    flex-direction: column;
  }
  
  header img {
    margin-bottom: 0.5rem;
  }

  main {
    padding: 1rem;
  }
}
