/* styles.css */
      * {
        box-sizing: border-box;
      }
      body {
        font-family: Arial, sans-serif;
        background-color: #121212;
        color: #ffffff;
        margin: 0;
        padding: 0;
      }
      header {
        background-color: #1f1f1f;
        padding: 20px;
        text-align: left;
        position: relative;
      }
      .header-container {
        display: flex;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: space-between;
      }
      .logo-title {
        display: flex;
        align-items: center;
        gap: 20px;
        flex: 1;
        min-width: 200px;
      }
      header img {
        width: 100px;
        height: auto;
      }
      h1 {
        margin: 0;
        font-size: clamp(1.5rem, 5vw, 2.5rem);
      }
      nav {
        width: 100%;
      }
      nav ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
      }
      nav ul li {
        display: inline;
      }
      nav ul li a {
        color: #ffffff;
        text-decoration: none;
        font-weight: bold;
        font-size: clamp(0.9rem, 2vw, 1.1rem);
        transition: text-decoration 0.3s ease;
      }
      nav ul li a:hover {
        text-decoration: underline;
      }
      .search-icon {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 50px;
        height: auto;
      }
      .banner {
        width: 100%;
        min-height: 75vh;
        background-image: url('Images/Mall Monsters Tumbnail 1.png');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: clamp(1.2rem, 4vw, 2rem);
        font-weight: bold;
      }
      @media (max-width: 768px) {
        header {
          padding: 15px;
        }
        .header-container {
          flex-direction: column;
          align-items: flex-start;
        }
        .logo-title {
          width: 100%;
          justify-content: flex-start;
        }
        nav {
          width: 100%;
        }
        nav ul {
          gap: 10px;
        }
        .search-icon {
          width: 40px;
        }
      }
      @media (max-width: 480px) {
        header {
          padding: 10px;
        }
        header img {
          width: 70px;
        }
        h1 {
          font-size: 1.5rem;
        }
        .search-icon {
          width: 35px;
          top: 15px;
          right: 15px;
        }
        nav ul {
          gap: 8px;
          flex-direction: column;
        }
        nav ul li a {
          font-size: 0.9rem;
          display: block;
          padding: 5px 0;
        }
      }