    *, html, body {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Helvetica, Arial, sans-serif;
    }

    header {
      background: #1a2238;
      color: #eaeaea;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 20px;
      width: 100%;
      padding: 20px;
    }

    .logo {
      margin-right: auto;
      margin-left: 10px;
      font-size: 1.5rem;
      cursor: pointer;
      transition: all .5s ease 0s;
    }

    .logo:hover {
      color: #FFD700;
      transform: rotate(5deg);
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .menu-toggle div {
      width: 25px;
      height: 3px;
      background: white;
      margin: 4px 0;
    }

    nav ul {
      display: flex;
      gap: 20px;
    }

    li {
      list-style-type: none;
    }

    li a {
      color: #eaeaea;
      text-decoration: none;
      transition: all .5s ease 0s;
    }

    li a:hover {
      color: #ff6a3d;
      transform: rotate(3deg);
    }

    .btn-cta {
      border: none;
      font-size: 16px;
      padding: 6px 12px;
      background: #ff0000;
      color: #eaeaea;
      border-radius: 8px;
      cursor: pointer;
      margin-left: 10px;
    }

    @media (max-width: 768px) {
      nav ul {
        display: none;
        flex-direction: column;
        background: #1a2238;
        position: absolute;
        right: 0;
        top: 60px;
        width: 200px;
        padding: 1rem;
      }

      nav ul.show {
        display: flex;
      }

      .menu-toggle {
        display: flex;
      }

      .btn-cta {
        margin-left: 0;
        margin-top: 10px;
      }
    }

    a {
      color: #eaeaea;
      text-decoration: none;
    }

    .copyright {
  color: #eaeaea;
  background: #1a2238;
}
span {
  color: #800080;
}

.btn-pink{
  background: #B721FF;
  color: #fff;
  border-color: #B721FF;
  transition: all 0.5s ease-in-out;
  font-size: 0.9rem;
  text-transform: uppercase;
  border: 2px solid #fff;
  border-radius: 20px;
  padding: 0.55rem 0;
  width: 130px;
  font-weight: 600;
  margin: 0 0.5rem;
  cursor: pointer;
  color:#fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 0;
}

.intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
  width: auto;
}

.description {
  font-size: 10px;
  display: flex;
  text-align: center;
  width: auto;
}

.parallax {
  background-image: url('logo store.png');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: auto;
}

.tentang {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #1a2238;
  color: #eaeaea;
  padding: 20px ;
  width: auto;
}
.title {
  font-size: 20px;
  font-weight: bold;
}
.btn-game {
  margin-right: 10px;
  border: none;
  font-size: 15px;
  padding: 5px 10px;
  background: #FFD700;
  color: #1a2238;
  border-radius: 6px;
  cursor: pointer;
}
