
    /* Base styles for the page */
    .page-phtaya16-login-app {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    /* Hero Section */
    .page-phtaya16-login-app__hero-section {
      position: relative;
      padding: 10px 0 60px; /* Adjusted padding-top as per fixed nav spacing rules */
      color: #fff;
      text-align: center;
      overflow: hidden;
      background-color: #0d1a26; /* Dark background for contrast */
    }

    .page-phtaya16-login-app__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
      z-index: 0;
    }

    .page-phtaya16-login-app__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-phtaya16-login-app__hero-title {
      font-size: 3em;
      margin-bottom: 20px;
      color: #ffc107; /* Gold accent */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-phtaya16-login-app__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-phtaya16-login-app__primary-button {
      display: inline-block;
      padding: 15px 30px;
      background-color: #ffc107; /* Gold accent */
      color: #0d1a26;
      border: none;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
    }

    .page-phtaya16-login-app__primary-button:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
    }

    /* Section Styling */
    .page-phtaya16-login-app__section {
      padding: 60px 20px;
      text-align: center;
      background-color: #fff;
      margin-bottom: 20px;
    }

    .page-phtaya16-login-app__section:nth-of-type(even) {
      background-color: #f0f2f5;
    }

    .page-phtaya16-login-app__section-title {
      font-size: 2.5em;
      margin-bottom: 40px;
      color: #0d1a26;
    }

    .page-phtaya16-login-app__section-description {
      max-width: 800px;
      margin: 0 auto 40px;
      font-size: 1.1em;
      color: #555;
    }

    /* Feature List */
    .page-phtaya16-login-app__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      list-style: none;
      padding: 0;
    }

    .page-phtaya16-login-app__feature-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Required for list items */
    }

    .page-phtaya16-login-app__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-phtaya16-login-app__feature-icon {
      width: 80px; /* Min size 200x200, but this is an icon illustration */
      height: 80px; /* Placeholder will be larger */
      margin-bottom: 20px;
      object-fit: contain;
      max-width: 100%; /* Responsive image */
      height: auto; /* Responsive image */
    }

    .page-phtaya16-login-app__feature-title {
      font-size: 1.5em;
      margin-bottom: 15px;
      color: #0d1a26;
    }

    .page-phtaya16-login-app__feature-description {
      font-size: 1em;
      color: #666;
    }

    /* How-To Section */
    .page-phtaya16-login-app__how-to-steps {
      display: flex;
      flex-direction: column;
      gap: 30px;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-phtaya16-login-app__step-item {
      display: flex;
      align-items: center;
      gap: 25px;
      background-color: #fff;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
      text-align: left;
      box-sizing: border-box; /* Required for list items */
    }

    .page-phtaya16-login-app__step-number {
      font-size: 2.5em;
      font-weight: bold;
      color: #ffc107;
      flex-shrink: 0;
      width: 60px;
      text-align: center;
    }

    .page-phtaya16-login-app__step-content {
      flex-grow: 1;
    }

    .page-phtaya16-login-app__step-title {
      font-size: 1.4em;
      margin-bottom: 10px;
      color: #0d1a26;
    }

    .page-phtaya16-login-app__step-description {
      font-size: 1em;
      color: #666;
    }

    .page-phtaya16-login-app__app-image {
      max-width: 100%;
      height: auto;
      border-radius: 12px;
      margin-top: 40px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
      object-fit: cover;
    }

    /* Game Showcase */
    .page-phtaya16-login-app__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0;
      list-style: none;
    }

    .page-phtaya16-login-app__game-card {
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Required for list items */
    }

    .page-phtaya16-login-app__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-phtaya16-login-app__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Responsive image */
    }

    .page-phtaya16-login-app__game-info {
      padding: 20px;
    }

    .page-phtaya16-login-app__game-title {
      font-size: 1.3em;
      margin-bottom: 10px;
      color: #0d1a26;
    }

    .page-phtaya16-login-app__game-category {
      font-size: 0.9em;
      color: #999;
    }

    /* FAQ Section */
    .page-phtaya16-login-app__faq-section {
      text-align: left;
    }

    .page-phtaya16-login-app__faq-container {
      max-width: 800px;
      margin: 0 auto;
      padding: 0;
    }

    .page-phtaya16-login-app__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-phtaya16-login-app__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      font-size: 1.2em;
      font-weight: bold;
      color: #0d1a26;
      cursor: pointer;
      background-color: #f9f9f9;
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-phtaya16-login-app__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #0d1a26;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-phtaya16-login-app__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-phtaya16-login-app__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #ffc107;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-phtaya16-login-app__faq-item.active .page-phtaya16-login-app__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-phtaya16-login-app__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;
      font-size: 1em;
      text-align: left;
    }

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

    /* Call to Action Section */
    .page-phtaya16-login-app__cta-section {
      background-color: #0d1a26;
      color: #fff;
    }

    .page-phtaya16-login-app__cta-title {
      color: #ffc107;
    }

    .page-phtaya16-login-app__cta-description {
      color: #e0e0e0;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-phtaya16-login-app__hero-title {
        font-size: 2.5em;
      }
      .page-phtaya16-login-app__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-phtaya16-login-app__hero-title {
        font-size: 2em;
      }
      .page-phtaya16-login-app__hero-description {
        font-size: 1em;
      }
      .page-phtaya16-login-app__primary-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-phtaya16-login-app__section {
        padding: 40px 15px;
      }
      .page-phtaya16-login-app__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-phtaya16-login-app__section-description {
        font-size: 1em;
        margin-bottom: 30px;
      }

      /* List Item Responsive */
      .page-phtaya16-login-app__feature-list,
      .page-phtaya16-login-app__game-grid {
        grid-template-columns: 1fr;
        padding: 0 10px !important; /* Ensure padding doesn't cause overflow */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-phtaya16-login-app__feature-item,
      .page-phtaya16-login-app__game-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-phtaya16-login-app__how-to-steps {
        padding: 0 10px;
      }

      .page-phtaya16-login-app__step-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-phtaya16-login-app__step-number {
        margin-bottom: 15px;
        width: auto;
      }

      .page-phtaya16-login-app__faq-container {
        padding: 0 10px;
      }

      .page-phtaya16-login-app__faq-question {
        padding: 15px;
        font-size: 1.1em;
      }
      .page-phtaya16-login-app__faq-question h3 {
        font-size: 1.1em;
      }
      .page-phtaya16-login-app__faq-answer {
        padding: 15px 10px;
      }
      .page-phtaya16-login-app__faq-item.active .page-phtaya16-login-app__faq-answer {
        padding: 20px 15px !important; /* Adjust for mobile */
      }
      
      /* Image Responsive */
      .page-phtaya16-login-app__app-image,
      .page-phtaya16-login-app__game-image,
      .page-phtaya16-login-app__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-phtaya16-login-app__hero-background {
        max-width: 100% !important;
        height: 100% !important; /* Height should cover hero section */
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-phtaya16-login-app__hero-title {
        font-size: 1.7em;
      }
      .page-phtaya16-login-app__section-title {
        font-size: 1.5em;
      }
      .page-phtaya16-login-app__feature-title,
      .page-phtaya16-login-app__step-title {
        font-size: 1.2em;
      }
      .page-phtaya16-login-app__game-title {
        font-size: 1.1em;
      }
    }
  