* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background: #1a1a1a;
    color: #eaeaea;
  }

  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }

  header {
    background: linear-gradient(to right, #111, #333);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  }

  header h1 {
    text-align: center;
    font-size: 3rem;
    color: #ffcc00;
  }

  nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 30px;
    margin-top: 15px;
  }

  nav ul li a {
    color: #eaeaea;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
  }

  nav ul li a:hover {
    color: #ffcc00;
  }

  .section {
    padding: 60px 0;
  }

  .bg-dark {
    background: #222;
  }

  h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffcc00;
    margin-bottom: 30px;
  }

  p, ul li {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
  }

  ul {
    padding-left: 20px;
  }

  ul li {
    text-align: left;
  }

  img {
    display: block;
    margin: 30px auto;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255,255,255,0.1);
  }
  video {
    display: block;
    margin: 30px auto;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255,255,255,0.1);
  }

  footer {
    background: #111;
    color: #aaa;
    text-align: center;
    padding: 20px;
  }
  img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
    cursor: pointer;
  }
  header li:hover{
    transform: scale(1.05);
    transition: transform 0.3s ease;
    cursor: pointer;
  }