body {
    background-color: #0e0e0e;
    color: #eeeeee;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
  }
  form {
    background-color: #1e1e1e;
    border: 2px solid #8000ff;
    border-radius: 12px;
    padding: 30px;
    max-width: 700px;
    margin: 40px auto;
    color: #eeeeee;
    font-family: 'Segoe UI', sans-serif;
  }
  
  /* Labels */
  form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #b47bff;
  }
  
  /* All input-like elements */
  form input,
  form select,
  form textarea,
  form button {
    font-family: inherit;
    font-size: 1em;
    box-sizing: border-box;
  }
  
  /* Generic field styling */
  form input,
  form select,
  form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #8000ff;
    border-radius: 6px;
    background-color: #2a2a2a;
    color: #eeeeee;
    transition: background-color 0.3s, border-color 0.3s;
  }
  
  form input:focus,
  form select:focus,
  form textarea:focus {
    outline: none;
    background-color: #3d3d3d;
    border-color: #d5aaff;
  }
  
  /* Checkboxes & Radios inline */
  form input[type="checkbox"],
  form input[type="radio"] {
    width: auto;
    margin-right: 10px;
    accent-color: #8000ff;
  }
  
  /* Buttons */
  form button,
  form input[type="submit"],
  form input[type="button"] {
    background-color: #8000ff;
    color: #ffffff;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  form button:hover,
  form input[type="submit"]:hover,
  form input[type="button"]:hover {
    background-color: #a64dff;
  }
  
  header {
    background-color: #1a1a1a;
    padding: 20px;
    text-align: center;
    border-bottom: 3px solid #8000ff;
  }
  
  header h1 {
    color: #b47bff;
    font-size: 2.5em;
    margin: 0;
  }
  
  header p {
    color: #aaaaaa;
    margin-top: 5px;
  }
  a{
    color: #8000ff;
    text-decoration: none;
    font-weight: bold;
  }
  nav a {
    color: #d5aaff;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
  }
  
  nav a:hover {
    color: #ffffff;
  }
  
  main {
    padding: 40px 20px;
    text-align: center;
  }
  
  h2 {
    color: #b47bff;
    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: #1e1e1e;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #8000ff;
    min-width: 180px;
  }
  
  .round h3 {
    color: #b47bff;
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 10px;
    border-bottom: 1px solid #8000ff;
    padding-bottom: 5px;
  }
  
  .match {
    background-color: #2a2a2a;
    padding: 10px;
    border-radius: 8px;
    color: #eeeeee;
    font-weight: 600;
    text-align: center;
    border-left: 5px solid #d5aaff;
    transition: background 0.3s;
  }
  
  .match:hover {
    background-color: #3d3d3d;
  }
  
  ul {
    list-style: none;
    padding: 0;
  }
  
  ul li a {
    color: #d5aaff;
    text-decoration: none;
  }
  
  ul li a:hover {
    text-decoration: underline;
  }
  
  footer {
    background-color: #1a1a1a;
    padding: 15px;
    text-align: center;
    color: #666666;
    border-top: 2px solid #8000ff;
  }
  