
    /* Page-specific CSS for phbet-win-3 */
    .page-phbet-win-3 {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0; /* Light gray for main text */
      background-color: #1a1a2e; /* Dark blue/purple background */
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    .page-phbet-win-3__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-phbet-win-3__hero-section {
      text-align: center;
      padding: 100px 20px 80px;
      background: linear-gradient(135deg, #1a1a2e 0%, #2c2c44 100%);
      position: relative;
      overflow: hidden;
    }

    .page-phbet-win-3__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-phbet-win-3__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-phbet-win-3__hero-title {
      font-size: 3.5em;
      color: #00bcd4; /* Cyan accent */
      margin-bottom: 20px;
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
      font-weight: bold;
    }

    .page-phbet-win-3__hero-subtitle {
      font-size: 1.5em;
      color: #e94560; /* Vibrant red/pink accent */
      margin-bottom: 30px;
      font-weight: 500;
    }

    .page-phbet-win-3__cta-button {
      display: inline-block;
      background-color: #e94560; /* Vibrant red/pink */
      color: #ffffff;
      padding: 15px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-phbet-win-3__cta-button:hover {
      background-color: #ff6b81; /* Lighter red/pink */
      transform: translateY(-3px);
    }

    .page-phbet-win-3__text-center {
      text-align: center;
    }

    .page-phbet-win-3__title {
      font-size: 2.5em;
      color: #00bcd4;
      margin-bottom: 40px;
      text-align: center;
      position: relative;
    }

    .page-phbet-win-3__title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -10px;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #e94560;
      border-radius: 2px;
    }

    .page-phbet-win-3__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-phbet-win-3__card {
      background-color: #2c2c44;
      border-radius: 15px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-phbet-win-3__card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
    }

    .page-phbet-win-3__card-image {
      width: 100%;
      max-width: 400px;
      height: auto;
      border-radius: 10px;
      margin-bottom: 20px;
      object-fit: cover;
    }

    .page-phbet-win-3__card-title {
      font-size: 1.8em;
      color: #e94560;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-phbet-win-3__card-text {
      font-size: 1.1em;
      color: #cccccc;
    }

    .page-phbet-win-3__promo-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
      list-style: none;
      padding: 0;
    }

    .page-phbet-win-3__promo-item {
      background-color: #2c2c44;
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box; /* Crucial for list item responsiveness */
    }

    .page-phbet-win-3__promo-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
    }

    .page-phbet-win-3__promo-item-title {
      color: #00bcd4;
      font-size: 1.6em;
      margin-bottom: 15px;
    }

    .page-phbet-win-3__promo-item-text {
      color: #cccccc;
      margin-bottom: 20px;
    }

    .page-phbet-win-3__promo-item-button {
      background-color: #e94560;
      color: #ffffff;
      padding: 10px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      align-self: flex-start;
      border: none;
      cursor: pointer;
    }

    .page-phbet-win-3__promo-item-button:hover {
      background-color: #ff6b81;
    }

    .page-phbet-win-3__image-full-width {
      width: 100%;
      height: auto;
      max-height: 400px;
      object-fit: cover;
      border-radius: 15px;
      margin-bottom: 40px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .page-phbet-win-3__features-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .page-phbet-win-3__feature-item {
      background-color: #2c2c44;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      text-align: center;
      box-sizing: border-box; /* Crucial for list item responsiveness */
    }

    .page-phbet-win-3__feature-icon {
      width: 100%;
      max-width: 250px; /* Min size 200x200, so 250 is good */
      height: auto;
      margin-bottom: 15px;
      object-fit: contain;
    }

    .page-phbet-win-3__feature-title {
      color: #e94560;
      font-size: 1.5em;
      margin-bottom: 10px;
    }

    .page-phbet-win-3__feature-description {
      color: #cccccc;
      font-size: 1em;
    }

    .page-phbet-win-3__payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-phbet-win-3__payment-logo {
      width: 100%;
      max-width: 250px; /* Min size 200x200 */
      height: auto;
      object-fit: contain;
      background-color: #3a3a5a;
      padding: 15px 20px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

    .page-phbet-win-3__payment-logo:hover {
      transform: translateY(-5px);
    }

    /* FAQ Section */
    .page-phbet-win-3__faq-section {
      padding: 60px 20px;
      background-color: #2c2c44;
    }

    .page-phbet-win-3__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-phbet-win-3__faq-item {
      background-color: #1a1a2e;
      margin-bottom: 15px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-phbet-win-3__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #e94560; /* Vibrant red/pink */
      color: #ffffff;
      font-size: 1.2em;
      font-weight: bold;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      transition: background-color 0.3s ease;
    }

    .page-phbet-win-3__faq-question:hover {
      background-color: #ff6b81; /* Lighter red/pink */
    }

    .page-phbet-win-3__faq-title {
      margin: 0;
      font-size: 1.2em;
      color: #ffffff;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-phbet-win-3__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent */
    }

    .page-phbet-win-3__faq-item.active .page-phbet-win-3__faq-toggle {
      transform: rotate(45deg); /* Rotate to form an 'x' or '-' */
    }

    .page-phbet-win-3__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      opacity: 0;
      background-color: #2c2c44;
      color: #cccccc;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

    .page-phbet-win-3__faq-item.active .page-phbet-win-3__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 25px !important; /* Expanded padding */
      opacity: 1;
    }

    .page-phbet-win-3__faq-answer p {
      margin: 0;
      padding-bottom: 10px; /* Space between paragraphs in answer */
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-phbet-win-3__hero-title {
        font-size: 3em;
      }

      .page-phbet-win-3__hero-subtitle {
        font-size: 1.3em;
      }

      .page-phbet-win-3__title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-phbet-win-3__hero-title {
        font-size: 2.5em;
      }

      .page-phbet-win-3__hero-subtitle {
        font-size: 1.1em;
      }

      .page-phbet-win-3__cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
      }

      .page-phbet-win-3__section {
        padding: 40px 15px;
      }

      .page-phbet-win-3__title {
        font-size: 1.8em;
      }

      .page-phbet-win-3__grid,
      .page-phbet-win-3__promo-list,
      .page-phbet-win-3__features-list {
        grid-template-columns: 1fr; /* Single column for smaller screens */
        gap: 20px;
      }

      .page-phbet-win-3__card,
      .page-phbet-win-3__promo-item,
      .page-phbet-win-3__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for mobile */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-phbet-win-3__promo-list,
      .page-phbet-win-3__features-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-phbet-win-3__card-image,
      .page-phbet-win-3__feature-icon,
      .page-phbet-win-3__image-full-width,
      .page-phbet-win-3__payment-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-phbet-win-3__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-phbet-win-3__faq-title {
        font-size: 1.1em;
      }

      .page-phbet-win-3__faq-answer {
        padding: 0 20px; /* Adjust initial padding */
      }

      .page-phbet-win-3__faq-item.active .page-phbet-win-3__faq-answer {
        padding: 15px 20px !important; /* Adjust expanded padding */
      }
    }

    @media (max-width: 480px) {
      .page-phbet-win-3__hero-title {
        font-size: 2em;
      }

      .page-phbet-win-3__hero-subtitle {
        font-size: 1em;
      }

      .page-phbet-win-3__cta-button {
        padding: 10px 25px;
        font-size: 1em;
      }

      .page-phbet-win-3__title {
        font-size: 1.5em;
      }

      .page-phbet-win-3__card-title {
        font-size: 1.5em;
      }
    }
  