
    :root {
      --page-yy777-com-ph-2-primary-color: #007bff; /* Blue */
      --page-yy777-com-ph-2-secondary-color: #6c757d; /* Grey */
      --page-yy777-com-ph-2-accent-color: #ffc107; /* Yellow */
      --page-yy777-com-ph-2-background-light: #f8f9fa; /* Light Grey */
      --page-yy777-com-ph-2-background-dark: #343a40; /* Dark Grey */
      --page-yy777-com-ph-2-text-color: #212529; /* Dark text */
      --page-yy777-com-ph-2-white: #ffffff;
      --page-yy777-com-ph-2-border-color: #dee2e6;
    }

    .page-yy777-com-ph-2 {
      font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      line-height: 1.6;
      color: var(--page-yy777-com-ph-2-text-color);
      background-color: var(--page-yy777-com-ph-2-background-light);
      padding-top: 10px; /* Small decorative padding, assuming body already has padding-top from shared.css */
    }

    .page-yy777-com-ph-2__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
    }

    .page-yy777-com-ph-2__section--dark {
      background-color: var(--page-yy777-com-ph-2-background-dark);
      color: var(--page-yy777-com-ph-2-white);
    }

    .page-yy777-com-ph-2__heading {
      text-align: center;
      margin-bottom: 30px;
      color: var(--page-yy777-com-ph-2-text-color);
    }

    .page-yy777-com-ph-2__heading--dark {
      color: var(--page-yy777-com-ph-2-white);
    }

    .page-yy777-com-ph-2__subheading {
      text-align: center;
      margin-bottom: 20px;
      color: var(--page-yy777-com-ph-2-secondary-color);
      font-size: 1.2em;
    }

    /* Hero Section */
    .page-yy777-com-ph-2__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('[GALLERY:hero:1920x1080:casino,slots,gaming,yy777]');
      background-size: cover;
      background-position: center;
      color: var(--page-yy777-com-ph-2-white);
      text-align: center;
      padding: 100px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
    }

    .page-yy777-com-ph-2__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      line-height: 1.2;
      color: var(--page-yy777-com-ph-2-white);
    }

    .page-yy777-com-ph-2__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
    }

    .page-yy777-com-ph-2__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: var(--page-yy777-com-ph-2-accent-color);
      color: var(--page-yy777-com-ph-2-text-color);
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-yy777-com-ph-2__button:hover {
      background-color: #e0a800; /* Slightly darker accent */
    }

    /* About Section */
    .page-yy777-com-ph-2__about-content {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      align-items: center;
    }

    .page-yy777-com-ph-2__about-text {
      flex: 1;
      min-width: 300px;
    }

    .page-yy777-com-ph-2__about-image-wrapper {
      flex: 1;
      min-width: 300px;
      text-align: center;
    }

    .page-yy777-com-ph-2__about-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    /* Games Section */
    .page-yy777-com-ph-2__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .page-yy777-com-ph-2__game-card {
      background-color: var(--page-yy777-com-ph-2-white);
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-yy777-com-ph-2__game-card:hover {
      transform: translateY(-5px);
    }

    .page-yy777-com-ph-2__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

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

    .page-yy777-com-ph-2__game-title {
      font-size: 1.4em;
      margin-bottom: 10px;
      color: var(--page-yy777-com-ph-2-primary-color);
    }

    .page-yy777-com-ph-2__game-description {
      font-size: 0.95em;
      color: var(--page-yy777-com-ph-2-secondary-color);
      margin-bottom: 15px;
    }

    /* Promotions Section */
    .page-yy777-com-ph-2__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-yy777-com-ph-2__promo-card {
      background-color: var(--page-yy777-com-ph-2-white);
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .page-yy777-com-ph-2__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .page-yy777-com-ph-2__promo-content {
      padding: 20px;
      flex-grow: 1;
    }

    .page-yy777-com-ph-2__promo-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: var(--page-yy777-com-ph-2-primary-color);
    }

    .page-yy777-com-ph-2__promo-description {
      font-size: 1em;
      color: var(--page-yy777-com-ph-2-text-color);
      margin-bottom: 15px;
    }

    /* Payments & Providers Sections */
    .page-yy777-com-ph-2__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-items: center;
      align-items: center;
    }

    .page-yy777-com-ph-2__logo-item {
      background-color: var(--page-yy777-com-ph-2-white);
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px; /* Uniform height for logos */
      width: 100%;
      box-sizing: border-box;
      max-width: 200px;
    }

    .page-yy777-com-ph-2__logo-image {
      max-width: 100%;
      max-height: 70px;
      height: auto;
      object-fit: contain;
    }

    /* FAQ Section */
    .page-yy777-com-ph-2__faq-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-yy777-com-ph-2__faq-item {
      background-color: var(--page-yy777-com-ph-2-white);
      border: 1px solid var(--page-yy777-com-ph-2-border-color);
      border-radius: 8px;
      margin-bottom: 10px;
      overflow: hidden;
    }

    .page-yy777-com-ph-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #e9ecef;
      transition: background-color 0.3s ease;
    }

    .page-yy777-com-ph-2__faq-question:hover {
      background-color: #dee2e6;
    }

    .page-yy777-com-ph-2__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-yy777-com-ph-2-text-color);
      pointer-events: none; /* Prevents text from blocking click event */
    }

    .page-yy777-com-ph-2__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-yy777-com-ph-2-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents icon from blocking click event */
    }

    .page-yy777-com-ph-2__faq-item.active .page-yy777-com-ph-2__faq-toggle {
      transform: rotate(45deg);
    }

    .page-yy777-com-ph-2__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: var(--page-yy777-com-ph-2-text-color);
    }

    .page-yy777-com-ph-2__faq-item.active .page-yy777-com-ph-2__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* CTA Section */
    .page-yy777-com-ph-2__cta-section {
      text-align: center;
      padding: 60px 20px;
      background-color: var(--page-yy777-com-ph-2-primary-color);
      color: var(--page-yy777-com-ph-2-white);
    }

    .page-yy777-com-ph-2__cta-title {
      font-size: 2em;
      margin-bottom: 20px;
      color: var(--page-yy777-com-ph-2-white);
    }

    .page-yy777-com-ph-2__cta-text {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .page-yy777-com-ph-2__hero-title {
        font-size: 2.5em;
      }
      .page-yy777-com-ph-2__hero-subtitle {
        font-size: 1.3em;
      }
      .page-yy777-com-ph-2__section {
        padding: 30px 15px;
      }
    }

    @media (max-width: 768px) {
      .page-yy777-com-ph-2__hero-section {
        padding: 80px 15px;
        min-height: 400px;
      }
      .page-yy777-com-ph-2__hero-title {
        font-size: 2em;
      }
      .page-yy777-com-ph-2__hero-subtitle {
        font-size: 1.1em;
      }
      .page-yy777-com-ph-2__about-content {
        flex-direction: column;
      }
      .page-yy777-com-ph-2__about-image-wrapper {
        order: -1; /* Image above text on mobile */
      }
      .page-yy777-com-ph-2__game-card,
      .page-yy777-com-ph-2__promo-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
      }
      .page-yy777-com-ph-2__games-grid,
      .page-yy777-com-ph-2__promotions-grid,
      .page-yy777-com-ph-2__logo-grid {
        grid-template-columns: 1fr;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
      }
      .page-yy777-com-ph-2__logo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-yy777-com-ph-2__faq-question {
        padding: 12px 15px;
      }
      .page-yy777-com-ph-2__faq-question h3 {
        font-size: 1em;
      }
      .page-yy777-com-ph-2__faq-answer {
        padding: 15px 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-yy777-com-ph-2__cta-title {
        font-size: 1.8em;
      }
      .page-yy777-com-ph-2__cta-text {
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-yy777-com-ph-2__hero-section {
        padding: 60px 10px;
        min-height: 350px;
      }
      .page-yy777-com-ph-2__hero-title {
        font-size: 1.8em;
      }
      .page-yy777-com-ph-2__hero-subtitle {
        font-size: 0.9em;
      }
      .page-yy777-com-ph-2__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-yy777-com-ph-2__section {
        padding: 25px 10px;
      }
      .page-yy777-com-ph-2__heading {
        font-size: 1.8em;
      }
      .page-yy777-com-ph-2__game-title, .page-yy777-com-ph-2__promo-title {
        font-size: 1.2em;
      }
    }
  