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

      body {
        font-family: "Poppins", sans-serif;
        background-color: #4a1d6d;
        height: 100vh;
      }

      .main-container {
        width: 100%;
        height: 100%;
        background-color: #4a1d6d;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 60px;
        gap: 40px;
      }

      /* LEFT SECTION */
      .left {
        flex: 1;
        color: #fff;
        display: flex;
        align-items: center;
      }

      .left .line {
        width: 6px;
        height: 120px;
        background-color: #fff;
        margin-right: 20px;
      }

      .left h1 {
        font-size: 60px;
        font-weight: 700;
        line-height: 1.2;
      }

      /* RIGHT CARD */
      .card {
        width: 370px;
        height: 370px;
        background-color: #ffffff;
        border-radius: 8px;
        padding: 25px;
        margin-right: 150px;
      }

      .card h2 {
        text-align: left;
        font-size: 18px;
        margin-bottom: 15px;
      }

      .divider {
        height: 1px;
        background-color: #b57edc;
        margin-bottom: 20px;
      }

      .word-box {
        display: flex;
        justify-content: space-between;
        margin-bottom: 15px;
      }

      .letter {
        width: 42px;
        height: 42px;
        border: 1px solid #b57edc;
        border-radius: 4px;
      }

      .info-box {
        margin-top: 15px;
        background: #f7f0fb;
        padding: 12px;
        border-radius: 6px;
      }

      .info-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 14px;
        margin-bottom: 6px;
      }

      .info-row:last-child {
        margin-bottom: 0;
      }

      .info-row span {
        color: #555;
      }

      .info-row strong {
        font-weight: 600;
      }

      .guess {
        color: #2e7d32;
      }

      .wrong {
        color: #d32f2f;
      }

      .input-box {
        margin-top: 20px;
      }

      .input-box input {
        width: 100%;
        height: 40px;
        border: 1px solid #b57edc;
        border-radius: 4px;
        text-align: center;
      }

      .btn {
        width: 100%;
        margin-top: 12px;
        height: 40px;
        background-color: #ffbf2f;
        border: 1px solid #b57edc;
        border-radius: 4px;
        font-weight: 600;
        cursor: pointer;
      }

      .btn:hover {
        background-color: #f2ad00;
      }

      /* RESPONSIVE */
      @media (max-width: 768px) {
        .main-container {
          flex-direction: column;
          justify-content: center;
          text-align: center;
        }

        .left {
          justify-content: center;
        }

        .left .line {
          display: none;
        }
      }