body {
    background-color: #1a1a1a;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
  }

  .logo {
    font-size: 2rem;
    font-weight: bold;
    color: #ff6600;
    text-align: center;
    padding: 2rem 0;
  }

  .container {
    max-width: 1000px;
    margin: auto;
    padding: 2rem;
    background-color: #666;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  }

  h1 {
    text-align: center;
    color: #ff6600;
  }

  .about-section {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    margin: 2rem 0;
  }

  .about-section.reverse {
    flex-direction: row-reverse;
  }

  .about-section img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
  }

  .about-text {
    flex: 1;
    font-size: 1.1rem;
    color: #eee;
  }

  .about-text h2 {
    color: #ff6600;
  }

  footer {
    background-color: #1a1a1a;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 3rem;
  }

  footer .social-icons {
    margin: 1rem 0;
  }

  footer .social-icons a {
    margin: 0 10px;
    display: inline-block;
  }

  footer .social-icons img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
  }

  footer p {
    color: #ccc;
    font-size: 0.9rem;
  }
  /* nav */
  /* nav */
  .modern-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid #ddd; /* Subtle border for separation */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ff6600; /* Highlighting StreamMaster Pro brand */
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    font-size: 16px;
}

.nav-links a {
    text-decoration: none;
    color: #cac6c6; /* Matches the default text color */
    transition: all 0.3s ease;
}

.nav-links a:hover {
    text-decoration: underline; /* Clean hover effect */
}
