
    :root {
      --primary-color: #e53935; /* A vibrant red for action */
      --secondary-color: #fdd835; /* A golden yellow for highlights */
      --dark-background: #1a1a2e; /* Dark background for gaming theme */
      --light-text: #ffffff;
      --medium-text: #cccccc;
      --border-color: #4a4a6e;
      --button-hover: #ff5252;
      --card-background: #2b2b4d;
      --section-padding: 60px 20px;
      --mobile-section-padding: 30px 15px;
    }

    .page-pinas77-com-ph-2 {
      font-family: 'Arial', sans-serif;
      color: var(--light-text);
      background-color: var(--dark-background);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-pinas77-com-ph-2__hero-section {
      position: relative;
      background-color: #0d0d1a;
      padding: 10px 0 80px 0; /* Small top padding, relying on body for main offset */
      text-align: center;
      overflow: hidden;
    }

    .page-pinas77-com-ph-2__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-pinas77-com-ph-2__hero-content {
      position: relative;
      z-index: 1;
      padding: 40px 20px;
      max-width: 900px;
      margin: -60px auto 0 auto;
      background-color: rgba(0, 0, 0, 0.6);
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .page-pinas77-com-ph-2__hero-title {
      font-size: 3.2em;
      color: var(--secondary-color);
      margin-bottom: 20px;
      text-shadow: 0 0 10px rgba(255, 255, 0, 0.7);
    }

    .page-pinas77-com-ph-2__hero-description {
      font-size: 1.3em;
      color: var(--light-text);
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-pinas77-com-ph-2__cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .page-pinas77-com-ph-2__cta-button {
      background-color: var(--primary-color);
      color: var(--light-text);
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-pinas77-com-ph-2__cta-button:hover {
      background-color: var(--button-hover);
      transform: translateY(-3px);
    }

    .page-pinas77-com-ph-2__section {
      padding: var(--section-padding);
      text-align: center;
      background-color: var(--dark-background);
    }

    .page-pinas77-com-ph-2__section--alt {
      background-color: #23233b;
    }

    .page-pinas77-com-ph-2__section-title {
      font-size: 2.8em;
      color: var(--secondary-color);
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }

    .page-pinas77-com-ph-2__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--primary-color);
      border-radius: 2px;
    }

    .page-pinas77-com-ph-2__text-content {
      max-width: 900px;
      margin: 0 auto 40px auto;
      font-size: 1.1em;
      color: var(--medium-text);
    }

    .page-pinas77-com-ph-2__text-content p {
      margin-bottom: 1em;
    }

    .page-pinas77-com-ph-2__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-pinas77-com-ph-2__card {
      background-color: var(--card-background);
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border: 1px solid var(--border-color);
    }

    .page-pinas77-com-ph-2__card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    }

    .page-pinas77-com-ph-2__card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
    }

    .page-pinas77-com-ph-2__card-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .page-pinas77-com-ph-2__card:hover .page-pinas77-com-ph-2__card-image {
      transform: scale(1.05);
    }

    .page-pinas77-com-ph-2__card-title {
      font-size: 1.8em;
      color: var(--secondary-color);
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-pinas77-com-ph-2__card-description {
      font-size: 1em;
      color: var(--medium-text);
    }

    .page-pinas77-com-ph-2__list {
      list-style: none;
      padding: 0;
      margin: 0 auto;
      max-width: 900px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
    }

    .page-pinas77-com-ph-2__list-item {
      background-color: var(--card-background);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      padding: 15px 25px;
      font-size: 1.1em;
      color: var(--light-text);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      flex: 1 1 auto; /* Allow items to grow and shrink */
      min-width: 200px; /* Minimum width for list items */
      max-width: 300px; /* Maximum width for list items */
      box-sizing: border-box;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-pinas77-com-ph-2__list-item:hover {
      background-color: #3a3a5e;
      transform: translateY(-3px);
    }

    .page-pinas77-com-ph-2__promo-link {
      display: inline-block;
      background-color: var(--secondary-color);
      color: var(--dark-background);
      padding: 12px 25px;
      border-radius: 30px;
      font-weight: bold;
      text-decoration: none;
      margin-top: 30px;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-pinas77-com-ph-2__promo-link:hover {
      background-color: #ffe082;
      transform: translateY(-3px);
    }

    .page-pinas77-com-ph-2__faq-section {
      padding: var(--section-padding);
      background-color: var(--dark-background);
      max-width: 900px;
      margin: 0 auto;
    }

    .page-pinas77-com-ph-2__faq-item {
      background-color: var(--card-background);
      border: 1px solid var(--border-color);
      margin-bottom: 15px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

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

    .page-pinas77-com-ph-2__faq-question:hover {
      background-color: #4a4a6e;
    }

    .page-pinas77-com-ph-2__faq-question h3 {
      margin: 0;
      font-size: 1.3em;
      color: var(--secondary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-pinas77-com-ph-2__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
      line-height: 1;
    }

    .page-pinas77-com-ph-2__faq-item.active .page-pinas77-com-ph-2__faq-toggle {
      transform: rotate(45deg); /* Visually change + to X or similar */
      color: var(--light-text);
    }

    .page-pinas77-com-ph-2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: var(--medium-text);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      text-align: left;
    }

    .page-pinas77-com-ph-2__faq-item.active .page-pinas77-com-ph-2__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .page-pinas77-com-ph-2__hero-title {
        font-size: 2.2em;
      }

      .page-pinas77-com-ph-2__hero-description {
        font-size: 1em;
      }

      .page-pinas77-com-ph-2__cta-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-pinas77-com-ph-2__cta-button {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        padding: 12px 20px;
      }

      .page-pinas77-com-ph-2__section {
        padding: var(--mobile-section-padding);
      }

      .page-pinas77-com-ph-2__section-title {
        font-size: 2em;
        margin-bottom: 30px;
      }

      .page-pinas77-com-ph-2__grid {
        grid-template-columns: 1fr;
      }

      .page-pinas77-com-ph-2__list {
        flex-direction: column;
        gap: 10px;
        align-items: center;
      }

      .page-pinas77-com-ph-2__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 12px 15px; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-pinas77-com-ph-2__faq-question {
        padding: 15px 20px;
      }

      .page-pinas77-com-ph-2__faq-question h3 {
        font-size: 1.1em;
      }

      .page-pinas77-com-ph-2__faq-answer {
        padding: 15px 20px;
      }

      .page-pinas77-com-ph-2__faq-item.active .page-pinas77-com-ph-2__faq-answer {
        padding: 15px 20px !important;
      }

      /* Image responsiveness */
      .page-pinas77-com-ph-2__hero-image,
      .page-pinas77-com-ph-2__card-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-pinas77-com-ph-2__card-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-pinas77-com-ph-2__hero-title {
        font-size: 1.8em;
      }
      .page-pinas77-com-ph-2__section-title {
        font-size: 1.8em;
      }
    }
  