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

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

    /* MAIN CONTAINER */
    .container {
      width: 100%;
      height: 100%;
      padding: 80px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    /* LEFT CONTENT */
    .left-content {
      width: 50%;
    }

    .title-section {
      display: flex;
      align-items: flex-start;
      gap: 20px;
    }

    .vertical-line {
      width: 6px;
      height: 110px;
      background-color: white;
      margin-top: 10px;
    }

    .title-text h1 {
      color: white;
      font-size: 56px;
      line-height: 1.2;
      font-weight: 700;
    }

    p {
      color: #f2f2f2;
      font-size: 20px;
      margin: 40px 0;
      line-height: 1.5;
    }

    /* BUTTON */
    .play-btn {
      padding: 12px 28px;
      font-size: 18px;
      font-weight: 600;
      color: #4A1D6D;
      background-color: #FFC83D;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      border-color: #4A1D6D;
   

    }

    .play-btn:hover {
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
      background-color: #e7b025;
    }

    footer {
      margin-top: 40px;
      margin-right: 150px;
      color: #f2f2f2;
      font-size: 16px;
     
    }

    /* RIGHT IMAGE */
    .right-img {
      width: 40%;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .right-img img {
      width: 400px;
      height: 400px;
      border-radius: 50%;
      object-fit: cover;
    
    }



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

      .left-content {
        width: 100%;
      }

      .title-section {
        justify-content: center;
      }

      .vertical-line {
        display: none;
      }

      .right-img {
        margin-top: 40px;
        width: 100%;
      }

      .right-img img {
        width: 250px;
        height: 250px;
      }
    }