
    :root {
      --page-yy777-com-ph__primary-color: #ffcc00; /* Gold/Yellow */
      --page-yy777-com-ph__secondary-color: #007bff; /* Blue */
      --page-yy777-com-ph__text-color: #333;
      --page-yy777-com-ph__background-color: #f8f9fa;
      --page-yy777-com-ph__dark-background: #1a1a1a;
      --page-yy777-com-ph__light-text: #ffffff;
      --page-yy777-com-ph__border-color: #ddd;
    }

    .page-yy777-com-ph {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-yy777-com-ph__text-color);
      background-color: var(--page-yy777-com-ph__background-color);
      padding-bottom: 20px; /* Ensure space before footer */
      padding-top: 10px; /* Small decorative padding, assuming body padding-top handles header offset */
    }

    .page-yy777-com-ph__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-yy777-com-ph__section--dark {
      background-color: var(--page-yy777-com-ph__dark-background);
      color: var(--page-yy777-com-ph__light-text);
    }

    .page-yy777-com-ph__section-title {
      text-align: center;
      color: var(--page-yy777-com-ph__primary-color);
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    }

    .page-yy777-com-ph__section-title--light {
      color: var(--page-yy777-com-ph__light-text);
    }

    .page-yy777-com-ph__text-center {
      text-align: center;
    }

    .page-yy777-com-ph__hero-section {
      position: relative;
      width: 100%;
      height: 60vh; /* Adjust height for visual impact */
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--page-yy777-com-ph__light-text);
      text-align: center;
      overflow: hidden;
      border-radius: 0 0 15px 15px;
      margin-bottom: 20px;
    }

    .page-yy777-com-ph__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.7); /* Darken background for text readability */
    }

    .page-yy777-com-ph__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px;
      max-width: 900px;
      background-color: rgba(0, 0, 0, 0.4);
      border-radius: 10px;
    }

    .page-yy777-com-ph__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: var(--page-yy777-com-ph__primary-color);
      line-height: 1.1;
    }

    .page-yy777-com-ph__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 25px;
      font-weight: normal;
    }

    .page-yy777-com-ph__button {
      display: inline-block;
      background-color: var(--page-yy777-com-ph__primary-color);
      color: var(--page-yy777-com-ph__dark-background);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
      box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    }

    .page-yy777-com-ph__button:hover {
      background-color: #e6b800; /* Slightly darker yellow */
      transform: translateY(-2px);
    }

    .page-yy777-com-ph__button--secondary {
      background-color: var(--page-yy777-com-ph__secondary-color);
      color: var(--page-yy777-com-ph__light-text);
    }

    .page-yy777-com-ph__button--secondary:hover {
      background-color: #0069d9;
    }

    .page-yy777-com-ph__cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-yy777-com-ph__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-yy777-com-ph__floating-button {
      background-color: var(--page-yy777-com-ph__primary-color);
      color: var(--page-yy777-com-ph__dark-background);
      padding: 10px 20px;
      border-radius: 30px;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
      min-width: 100px;
    }

    .page-yy777-com-ph__floating-button--login {
      background-color: var(--page-yy777-com-ph__secondary-color);
      color: var(--page-yy777-com-ph__light-text);
    }

    .page-yy777-com-ph__floating-button:hover {
      transform: translateY(-2px);
      filter: brightness(1.1);
    }

    .page-yy777-com-ph__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-yy777-com-ph__card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
      box-sizing: border-box;
    }

    .page-yy777-com-ph__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }

    .page-yy777-com-ph__card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      border-bottom: 1px solid var(--page-yy777-com-ph__border-color);
    }

    .page-yy777-com-ph__card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-yy777-com-ph__card-title {
      font-size: 1.5em;
      color: var(--page-yy777-com-ph__primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-yy777-com-ph__card-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-yy777-com-ph__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      justify-content: center;
    }

    .page-yy777-com-ph__list-item {
      background-color: #f0f0f0;
      padding: 12px 20px;
      border-radius: 25px;
      font-weight: bold;
      color: var(--page-yy777-com-ph__text-color);
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      transition: background-color 0.3s ease;
      box-sizing: border-box; /* Crucial for mobile responsiveness */
      word-wrap: break-word; /* Ensure long words break */
      overflow-wrap: break-word; /* Ensure long words break */
    }

    .page-yy777-com-ph__list-item:hover {
      background-color: var(--page-yy777-com-ph__primary-color);
      color: var(--page-yy777-com-ph__dark-background);
    }

    .page-yy777-com-ph__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-yy777-com-ph__promotion-card {
      background-color: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-yy777-com-ph__promotion-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .page-yy777-com-ph__promotion-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
    }

    .page-yy777-com-ph__promotion-content {
      padding: 25px;
      text-align: left;
    }

    .page-yy777-com-ph__promotion-title {
      font-size: 1.8em;
      color: var(--page-yy777-com-ph__primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-yy777-com-ph__promotion-description {
      font-size: 1em;
      color: #555;
      margin-bottom: 20px;
    }

    /* FAQ Section Styles */
    .page-yy777-com-ph__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-yy777-com-ph__faq-item {
      background-color: #fff;
      border: 1px solid var(--page-yy777-com-ph__border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .page-yy777-com-ph__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #f9f9f9;
      font-weight: bold;
      color: var(--page-yy777-com-ph__text-color);
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-yy777-com-ph__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-yy777-com-ph__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from blocking click */
      color: var(--page-yy777-com-ph__text-color); /* Ensure contrast */
    }

    .page-yy777-com-ph__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
      color: var(--page-yy777-com-ph__primary-color); /* Ensure contrast */
    }

    .page-yy777-com-ph__faq-item.active .page-yy777-com-ph__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    .page-yy777-com-ph__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
    }

    .page-yy777-com-ph__faq-item.active .page-yy777-com-ph__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-yy777-com-ph__hero-title {
        font-size: 3em;
      }
      .page-yy777-com-ph__hero-subtitle {
        font-size: 1.3em;
      }
      .page-yy777-com-ph__section {
        padding: 30px 15px;
      }
      .page-yy777-com-ph__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-yy777-com-ph__hero-section {
        height: 50vh;
      }
      .page-yy777-com-ph__hero-title {
        font-size: 2.5em;
      }
      .page-yy777-com-ph__hero-subtitle {
        font-size: 1.1em;
      }
      .page-yy777-com-ph__button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-yy777-com-ph__cta-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-yy777-com-ph__section {
        padding: 25px 15px;
      }
      .page-yy777-com-ph__section-title {
        font-size: 1.8em;
      }
      .page-yy777-com-ph__grid,
      .page-yy777-com-ph__promotions-grid {
        grid-template-columns: 1fr;
      }
      .page-yy777-com-ph__list {
        flex-direction: column; /* Stack list items on mobile */
        align-items: center; /* Center items if stacked */
        gap: 10px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-yy777-com-ph__list-item {
        width: 100% !important; /* Force full width for list items */
        max-width: 100% !important; /* Ensure it doesn't exceed container */
        box-sizing: border-box !important; /* Include padding/border in width */
        padding: 10px 15px !important; /* Adjust padding for mobile */
        margin-left: 0 !important; /* Remove any left/right margins */
        margin-right: 0 !important; /* Remove any left/right margins */
        word-break: break-word !important; /* Ensure long words break */
      }
      .page-yy777-com-ph__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
      }
      .page-yy777-com-ph__floating-button {
        padding: 8px 15px;
        font-size: 0.9em;
        min-width: 90px;
      }
      .page-yy777-com-ph__card-image,
      .page-yy777-com-ph__promotion-image {
        height: 180px;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
      .page-yy777-com-ph__faq-question {
        padding: 12px 15px;
      }
      .page-yy777-com-ph__faq-question h3 {
        font-size: 1.1em;
      }
      .page-yy777-com-ph__faq-answer {
        padding: 0 15px; /* Initial padding */
      }
      .page-yy777-com-ph__faq-item.active .page-yy777-com-ph__faq-answer {
        padding: 15px 15px !important; /* Active padding */
      }
    }

    @media (max-width: 480px) {
      .page-yy777-com-ph__hero-title {
        font-size: 2em;
      }
      .page-yy777-com-ph__hero-subtitle {
        font-size: 1em;
      }
      .page-yy777-com-ph__section-title {
        font-size: 1.6em;
      }
      .page-yy777-com-ph__hero-section {
        height: 40vh;
      }
      .page-yy777-com-ph__floating-buttons {
        bottom: 10px;
        right: 10px;
        gap: 5px;
      }
      .page-yy777-com-ph__floating-button {
        padding: 7px 12px;
        font-size: 0.85em;
        min-width: 80px;
      }
    }
  