
    body {
      margin: 0;
      font-family: sans-serif;
      background: url('/images/wrenchmaven_bg.jpg') no-repeat center center fixed;
      background-size: cover;
      color: white;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      backdrop-filter: brightness(0.6);
    }

    .header-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 10px;
      width: 100%;
      box-sizing: border-box;
      position: relative;
    }

    .site-title {
      font-size: 2.5rem;
      margin: 10px;
      color: #ff3c38;
      text-shadow: 0 0 8px black;
      text-align: center;
      word-break: break-word;
    }

    .tagline {
      font-size: 1rem;
      margin-top: -5px;
      color: #ffffff;
      text-shadow: 0 0 4px black;
      text-align: center;
    }

    form {
      background-color: rgba(0, 128, 128, 0.9);
      padding: 2rem;
      border-radius: 1rem;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
      display: grid;
      gap: 1rem;
      width: 300px;
    }

    label {
      font-weight: bold;
    }

    select {
      padding: 0.5rem;
      border-radius: 0.5rem;
      border: none;
    }

    button {
      background-color: #ff3c38;
      color: white;
      padding: 0.75rem;
      border: none;
      border-radius: 0.5rem;
      font-size: 1rem;
      cursor: pointer;
    }

    button:hover {
      background-color: #e0322f;
    }

    .menu {
      position: absolute;
      top: 10px;
      right: 10px;
      z-index: 1000;
    }

    .menu-toggle {
      font-size: 4.5rem;
      background: none;
      border: none;
      color: white;
      cursor: pointer;
    }

    .menu-items {
      display: none;
      position: absolute;
      top: 5rem;
      right: 0;
      background-color: rgba(0, 0, 0, 0.8);
      border-radius: 0 0 8px 8px;
      overflow: hidden;
      min-width: 200px;
      white-space: nowrap;
    }

    .menu-items a {
      display: block;
      color: white;
      text-decoration: none;
      padding: 0.75rem 1.5rem;
    }

    .menu-items a:hover {
      background-color: #ff3c38;
    }