
  .funpark-plus-promo {
    background-color: #ffffff; 
    padding: 60px 0; 
    font-family: Arial, sans-serif;
    color: #333333;
    overflow: hidden;
  }

  .fpp-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center; 
    justify-content: space-between;
    gap: 50px;
    box-sizing: border-box;
  }

  .fpp-content {
    flex: 1; 
  }

  .fpp-video-wrapper {
    flex: 1.1; 
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    aspect-ratio: 16 / 9;
    border: 1px solid #eef2f6; 
    background-color: #000; 
  }

  .fpp-badge {
    display: inline-block;
    background-color: #fff3e0;
    color: #FF8C42; 
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    text-transform: uppercase;
  }

  html body .fpp-title,
  .fpp-content .fpp-title {
    font-family: 'Poppins-Bold', 'Poppins', Arial, sans-serif !important;
    font-size: 36px !important;
    font-weight: 700 !important;
    text-align: left !important;
    color: #222222 !important;
    line-height: 1.25;
    margin-bottom: 18px;
    margin-top: 0;
  }

  .fpp-title span {
    color: #30A0FF !important; 
    font-weight: 700 !important;
  }

  .fpp-description {
    font-size: 15px;
    line-height: 1.65;
    color: #555555;
    margin-bottom: 28px;
    text-align: left;
  }

  .fpp-description strong {
    color: #222222;
  }

  .fpp-cta {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    height: 46px;
    padding: 0 28px;
    border-radius: 0px;
    background-color: #30A0FF;
    color: #ffffff;
    border: 2px solid #30A0FF;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    box-sizing: border-box;
    cursor: pointer;
  }

  .fpp-cta:hover {
    background-color: #ffffff;
    color: #30A0FF;
    border-color: #30A0FF;
  }

  .fpp-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  @media (max-width: 1024px) {
    .fpp-container {
      flex-direction: column;
      text-align: center;
      gap: 36px;
    }
    .fpp-content {
      flex: 1; 
    }
    .fpp-video-wrapper {
      flex: 1;
      width: 100%;
    }
  }

  @media (max-width: 576px) {
    .funpark-plus-promo {
      padding: 36px 0;
    }
    .fpp-container {
      padding: 0 12px;
      gap: 24px;
    }
    html body .fpp-title,
    .fpp-content .fpp-title {
      font-size: 22px !important;
      font-weight: 700 !important;
      text-align: center !important;
      margin-bottom: 12px;
    }
    .fpp-description {
      font-size: 13px;
      line-height: 1.5;
      margin-bottom: 20px;
      text-align: center;
    }
    .fpp-cta {
      height: 40px;
      padding: 0 20px;
      font-size: 12px;
      width: 100%;
    }
  }
