body {
  background-color: #000000; /* Black background */
  color: #ffffff; /* White text for readability */
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background-color: #1a1a1a; /* Dark header background */
  padding: 20px;
  text-align: center;
  border-bottom: 3px solid #ff0000; /* Red border below header */
}

header h1 {
  color: #ffa500; /* Orange header text */
  font-size: 2.5em;
  margin: 0;
}

header p {
  color: #aaaaaa; /* Light gray subtext */
  margin-top: 5px;
}

a {
  color: #ff0000; /* Red links */
  text-decoration: none;
  font-weight: bold;
}

nav a {
  color: #ffa500; /* Orange nav links */
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #ffffff; /* White on hover */
}

main {
  padding: 40px 20px;
  text-align: center;
}

h2 {
  color: #ffa500; /* Orange color for h2 */
  margin-bottom: 20px;
}

.bracket-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.round {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #1a1a1a; /* Dark round background */
  padding: 20px;
  border-radius: 12px;
  border: 2px solid #ff0000; /* Red border */
  min-width: 180px;
}

.round h3 {
  color: #ffa500; /* Orange round header text */
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 10px;
  border-bottom: 1px solid #ff0000; /* Red border under round header */
  padding-bottom: 5px;
}

.match {
  background-color: #2a2a2a; /* Dark gray match background */
  padding: 10px;
  border-radius: 8px;
  color: #ffffff; /* White text */
  font-weight: 600;
  text-align: center;
  border-left: 5px solid #ffa500; /* Orange left border */
  transition: background 0.3s;
}

.match:hover {
  background-color: #333333; /* Slightly lighter gray on hover */
}

ul {
  list-style: none;
  padding: 0;
}

ul li a {
  color: #ffa500; /* Orange links */
  text-decoration: none;
}

ul li a:hover {
  text-decoration: underline; /* Underline on hover */
}

footer {
  background-color: #1a1a1a; /* Dark footer background */
  padding: 15px;
  text-align: center;
  color: #666666; /* Light gray footer text */
  border-top: 2px solid #ff0000; /* Red border on top of footer */
}
