html {
      scroll-behavior: smooth;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }
    body {
      line-height: 1.6;
      color: #fff;
      background-color: #121212;
      overflow-x: hidden;
    }
    header {
      background: black;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      position: relative;
    }
    .logo {
      font-size: 1.5rem;
      font-weight: bold;
    }
    .logo img {
      height: 5vh; /* Adjust as needed */
      width: auto;
      max-width: 100%;
      display: block;
    }
    .menu-toggle {
      display: none;
      font-size: 2rem;
      background: none;
      border: none;
      color: #fff;
      cursor: pointer;
    }
    nav {
      display: flex;
      flex-wrap: wrap;
    }
    nav a {
      margin-left: 20px;
      color: #fff;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    nav a:hover {
      color: #1138e6;
    }
    .hero {
      background: url(../pictures/moji_world_super_hero_art_2.png) no-repeat center center/cover;
      height: 90vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 2rem;
      animation: fadeIn 2s ease-in;
    }
    .hero img{
      height: 50vh; /* Adjust as needed */
      width: auto;
      align-content: center;
      max-width: 100%;
      display: block;
    }
    .hero h1 {
      font-size: 4rem;
      margin-bottom: 1rem;
    }
    .hero p {
      font-size: 1.5rem;
      margin-bottom: 2rem;
    }
    .btn {
      padding: 0.8rem 1.5rem;
      margin: 0.5rem;
      font-size: 1rem;
      background: #1138e6;
      color: #fff;
      border: none;
      border-radius: 20px;
      cursor: pointer;
      transition: transform 0.2s;
    }

    .btn:hover {
      transform: scale(1.05);
    }
    section {
      padding: 4rem 2rem;
      animation: fadeIn 1s ease-in;
    }
    h2 {
      color: #1138e6;
      font-size: xx-large;
      text-align: center;
      margin-bottom: 2rem;
    }

    .features, .media, .buy, .community {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      text-align: center;
    }

    .features_bg{
      background: url(videos/Tutorial_3.mp4);
    }

    .buy img{
      width: auto;
      height: 50vh;
      border-radius: 10px;
      transition: transform 0.3s;
      
    }

    .media video{
      width: 100%;
      border-radius: 2vw;
      transition: transform 0.3s;
    }
    .media img {
      width: 100%;
      border-radius: 10px;
      transition: transform 0.3s;
    }
    .media img:hover {
      transform: scale(1.03);
    }
    .newsletter {
      text-align: center;
    }
    .newsletter input {
      padding: 0.5rem;
      margin: 0.5rem;
      width: 200px;
    }
    .newsletter button {
      padding: 0.5rem 1rem;
      background: #e63946;
      color: #fff;
      border: none;
    }

    .community img{
      width: 10em;
      border-radius: 2vw;
    }

    .footer {
      background: #1f1f1f;
      padding: 2rem;
      text-align: center;
      font-size: 0.9rem;
    }

    .footer img{
      width: 10vw;
      border-radius: 2vw;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
      }
      nav {
        flex-direction: column;
        width: 100%;
        display: none;
      }
      nav.active {
        display: flex;
      }
      nav a {
        margin: 10px 0;
      }
      .hero h1 {
        font-size: 2.5rem;
      }
      .hero p {
        font-size: 1.2rem;
      }
      .hero {
        height: auto;
        padding: 3rem 1rem;
      }
      .newsletter input {
        width: 90%;
        max-width: 300px;
      }
    }