
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Helvetica Neue', sans-serif;
      background-color: #0d0d0d;
      color: #fcebd2;
    }

    /* --- Navbar --- */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #1a1a1a;
      padding: 15px 30px;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .navbar .logo {
      font-size: 24px;
      font-weight: bold;
      color: #fcebd2;
    }

    .navbar ul {
      list-style: none;
      display: flex;
      gap: 25px;
    }

    .navbar ul li a {
      text-decoration: none;
      color: #fcebd2;
      font-size: 16px;
      transition: color 0.3s ease;
    }

    .navbar ul li a:hover {
      color: #ffd38a;
    }

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

    .hamburger span {
      height: 3px;
      width: 25px;
      background: #fcebd2;
      margin: 4px 0;
      border-radius: 3px;
    }

    @media (max-width: 768px) {
      .navbar ul {
        display: none;
        flex-direction: column;
        background-color: #1a1a1a;
        position: absolute;
        top: 60px;
        right: 30px;
        width: 200px;
        border-radius: 8px;
        padding: 10px;
      }

      .navbar ul.active {
        display: flex;
      }

      .hamburger {
        display: flex;
      }
    }

    /* --- Main Container --- */
    .container {
      display: flex;
      background-color: #0d0d0d;
      max-width: 1000px;
      margin: 40px auto;
      width: 90%;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 0 20px rgba(0,0,0,0.5);
      flex-wrap: wrap;
    }

    .left {
      flex: 1;
      background-color: #1a1a1a;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 40px;
      min-width: 250px;
    }

    .left h1 {
      color: #fff;
      font-size: 36px;
      margin-bottom: 20px;
    }

    .qr {
      background-color: #fcebd2;
      padding: 10px;
      border-radius: 12px;
      margin-top: 20px;
    }

    .qr img {
      width: 240px;
      height: 500px;
    }

    .right {
      flex: 2;
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .right .label {
      font-size: 16px;
      color: #d9d9d9;
      margin-bottom: 10px;
    }

    .right h2 {
      font-size: 48px;
      font-weight: bold;
      margin-bottom: 20px;
      color: #fcebd2;
    }

    .right p {
      font-size: 18px;
      margin-bottom: 30px;
      color: #d9d9d9;
      text-align: left;
      font-weight:300;
    }

    .download-btn {
      background-color: #fcebd2;
      color: #0d0d0d;
      border: none;
      padding: 14px 24px;
      font-size: 16px;
      border-radius: 8px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      width: fit-content;
    }

    .download-btn img {
      width: 20px;
      height: 20px;
    }

    @media (max-width: 768px) {
      .container {
        flex-direction: column;
        text-align: center;
      }

      .right {
        padding: 20px;
      }

      .right h2 {
        font-size: 36px;
      }
    }
