body, html {
      height: 100%;
      margin: 0;
      font-family: 'IBM Plex Sans', sans-serif;
      color: #f1f1f1;
      background-color: #0e1b1f;
      background-image:
        linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.6) 50%),
        url('https://wallpapercave.com/wp/wp14130762.jpg');
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      background-attachment: fixed;
    }
    
    nav.navbar {
      background-color: transparent !important;
      backdrop-filter: none;
      box-shadow: none;
      padding: 1rem 0;
      z-index: 10;
    }

    .navbar-nav, .nav-link {
      transition: all 0.3s ease-in-out;
    }

    /* Make nav links look like buttons */
    .nav-link {
      display: block;
      text-align: center;
      font-weight: 600;
      border-radius: 30px;
      padding: 0.5rem 1rem;
      font-size: 1.05rem;
      user-select: none;
      transition: background-color 0.3s ease, color 0.3s ease;
      color: #f1f1f1 !important;
      background-color: rgba(255, 255, 255, 0.05);
    }

    .nav-link:hover,
    .nav-link:focus {
      background-color: rgba(255, 255, 255, 0.2);
      color: #ffffff !important;
    }

    /* Reset nav list style */
    .navbar-nav {
      width: 100%;
      padding-left: 0;
      margin-bottom: 0;
    }

    /* Desktop: space links evenly */
    @media (min-width: 992px) {
      .navbar-nav {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 0.5rem;
      }
       .nav-item {
        flex: 1; /* Equal width */
      }

      .nav-link {
        width: 100%; /* Fill the nav-item */
        text-align: center;
      }
    }

    /* Mobile: stack links vertically */
    @media (max-width: 991.98px) {
      .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
      }

      .nav-item {
        flex: 1 1 0;
      }

      .nav-link {
        width: 100%;
      }
    }

    header.site-header {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      padding: 0 3rem 2rem;
      margin-top: 4rem;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      user-select: none;
      gap: 1rem;
    }

    .server-info {
      justify-self: start;
      align-items: center;
      font-weight: 700;
      font-size: 2rem;
      color: #17c3b2;
      user-select: none;
      text-decoration: none;
      gap: 0.6rem;
      text-align: left;
    }

    .server-info-icon {
      font-size: 2rem;
    }

    .server-info-text {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }

    .server-info-text span {
      font-size: 2rem;
      font-weight: 700;
    }

    .server-info-text .online {
      font-size: 0.85rem;
      font-weight: 400;
      opacity: 0.8;
    }

    .header-logo img {
      filter: drop-shadow(0 0 8px rgba(23, 195, 178, 0.4));
      animation: slowBounce 3s ease-in-out infinite;
      transition: transform 0.3s ease;
    }

    @keyframes slowBounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-6px);
    }
  }

    .join-discord {
      justify-self: end;
      align-items: center;
      font-weight: 700;
      font-size: 2rem;
      color: #17c3b2;
      user-select: none;
      text-decoration: none;
      gap: 0.6rem;
      text-align: right;
    }

    .join-discord:hover {
      color: #a4fff9;
      text-decoration: none;
    }

    .join-discord img {
      width: 28px;
      filter: drop-shadow(0 0 3px #17c3b2);
      user-select: none;
    }

    .join-discord-text {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }

    .join-discord-text span.subtext {
      font-size: 0.85rem;
      font-weight: 400;
      opacity: 0.8;
    }

    main.content-box {
      background: rgba(30, 42, 46, 0.6); /* semi-transparent dark */
      border-radius: 1rem;               /* large rounded corners */
      box-shadow: 0 0 20px #d4af3744, inset 0 0 60px #506d7c55; /* glowing effect */
      color: #eaeaea;                    /* light text */
      font-weight: 600;
      font-size: 1.15rem;
      line-height: 1.6;
      user-select: none;
    }

    h1, h2, h3, .server-info, .join-discord {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: #d4af37; /* brass */
  }

  a.nav-link {
    background-color: #506d7c;
    color: #f1f1f1;
  }

    footer.site-footer {
      text-align: center;
      font-size: 0.9rem;
      color: #17c3b2;
      user-select: none;
      padding: 1rem 1rem;
    }

    @media (max-width: 768px) {
      header.site-header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 1.5rem 2rem;
      }

      .server-info, .join-discord {
        min-width: unset;
        text-align: center;
        justify-content: center;
      }

      .join-discord {
        flex-direction: column;
      }

      .join-discord-text {
        text-align: center;
      }
    }