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: 800px;
    margin: auto;
    padding: 2rem;
    background-color: #666;
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
    animation: fadeIn 1s ease-in-out;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  h1 {
    text-align: center;
    color: #ff6600;
    font-size: 2.5rem;
  }

  p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  input, textarea {
    padding: 1rem;
    font-size: 1rem;
    border: none;
    border-radius: 10px;
    background-color: #777;
    color: #fff;
  }

  input:focus, textarea:focus {
    outline: 2px solid #ff6600;
    background-color: #888;
  }

  button {
    padding: 1rem;
    background-color: #ff6600;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
  }

  button:hover {
    background-color: #e65c00;
    transform: scale(1.05);
  }

  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);
    transition: transform 0.3s;
  }

  footer .social-icons img:hover {
    transform: scale(1.2);
  }

  footer p {
    color: #ccc;
    font-size: 0.9rem;
  }
  .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 */
}