:root {
    --primary-color: #ff7f00;
    --bg-color: #252525;
    --text-color: #000000;
    --card-bg: #636363;
    --card-shadow: rgba(0, 0, 0, 0.1);
  }
  
  body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
      Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    color: #ff7f00; 
  }
  
  header {
    background-color: #1a1a1a;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
  /* 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 */
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -1px;
  }

  .section-title {
    font-size: 2rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    text-align: center;
  }

  .section-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .carousel-section {
    margin-bottom: 3rem;
    padding: 0 1rem;
  }

  .carousel {
    display: flex;
    justify-content: center;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding: 1rem;
    scroll-padding: 1rem;
  }

  .carousel::-webkit-scrollbar {
    display: none;
  }

  .video {
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 8px 16px var(--card-shadow);
    min-width: 300px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .video:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  }

  iframe {
    width: 100%;
    height: 180px;
    border: none;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }

  .video-title {
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
  }
  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;}

  @media (max-width: 600px) {
    .logo {
      font-size: 2rem;
    }

    .section-title {
      font-size: 1.5rem;
    }

    .video-title {
      font-size: 1rem;
    }

    .section-description {
      font-size: 1rem;
    }
}