 :root {
      --primary: #ff4e00;
      --dark: #111;
      --light: #f4f6f8;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
      background: var(--light);
      color: #333;
      line-height: 1.7;
    }

    #bbo-navbar-wrapper {
      position: sticky;
      top: 0;
      background: var(--dark);
      z-index: 1000;
      width: 100%;
    }

    #bbo-navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.8rem 1.5rem;
      max-width: 1140px;
      margin: auto;
    }

    #bbo-logo {
      color: #fff;
      font-size: 1.5rem;
      font-weight: bold;
    }

    #bbo-logo span {
      color: var(--primary);
    }

    #bboNavLinks {
      list-style: none;
      display: flex;
      gap: 1.5rem;
    }

    #bbo-nav-home a,
    #bbo-nav-upcoming a,
    #bbo-nav-past a,
    #bbo-nav-team a,
    #bbo-nav-contact a {
      color: #fff;
      font-weight: 500;
      transition: color 0.3s;
      text-decoration: none;
    }

    #bbo-nav-home a:hover,
    #bbo-nav-upcoming a:hover,
    #bbo-nav-past a:hover,
    #bbo-nav-team a:hover,
    #bbo-nav-contact a:hover {
      color: var(--primary);
    }

    #bbo-menu-icon {
      display: none;
      font-size: 26px;
      color: white;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      #bboNavLinks {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: var(--dark);
        border-radius: 8px;
        padding: 1rem;
        width: 200px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
      }

      #bboNavLinks.show {
        display: flex;
      }

      #bbo-menu-icon {
        display: block;
      }
    }
    #header {
      background-color: #1e1e1e;
      color: white;
      text-align: center;
      padding: 10px 20px;
    }

    header h1 {
      margin: 0;
      font-size: 2.5rem;
    }
