
    :root {
      --page-phtaya16-com-2-primary-color: #007bff;
      --page-phtaya16-com-2-secondary-color: #6c757d;
      --page-phtaya16-com-2-accent-color: #ffc107;
      --page-phtaya16-com-2-background-color: #f8f9fa;
      --page-phtaya16-com-2-text-color: #343a40;
      --page-phtaya16-com-2-light-text-color: #ffffff;
      --page-phtaya16-com-2-border-color: #dee2e6;
    }

    .page-phtaya16-com-2 {
      font-family: 'Arial', sans-serif;
      color: var(--page-phtaya16-com-2-text-color);
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
      background-color: var(--page-phtaya16-com-2-background-color);
    }

    .page-phtaya16-com-2__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    /* Hero Section */
    .page-phtaya16-com-2__hero-section {
      position: relative;
      width: 100%;
      height: 60vh; /* Responsive height */
      min-height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--page-phtaya16-com-2-light-text-color);
      overflow: hidden;
      padding-top: 10px; /* Small padding, relying on body padding-top for header offset */
      box-sizing: border-box;
    }

    .page-phtaya16-com-2__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.6); /* Darken image for text readability */
    }

    .page-phtaya16-com-2__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
      max-width: 800px;
      background: rgba(0, 0, 0, 0.4);
      border-radius: 10px;
    }

    .page-phtaya16-com-2__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--page-phtaya16-com-2-accent-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-phtaya16-com-2__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    .page-phtaya16-com-2__cta-button {
      display: inline-block;
      padding: 15px 30px;
      background-color: var(--page-phtaya16-com-2-accent-color);
      color: var(--page-phtaya16-com-2-text-color);
      text-decoration: none;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-phtaya16-com-2__cta-button:hover {
      background-color: #ffda6a;
      transform: translateY(-3px);
    }

    /* Section Styling */
    .page-phtaya16-com-2__section {
      padding: 40px 20px;
      text-align: center;
      background-color: var(--page-phtaya16-com-2-background-color);
    }

    .page-phtaya16-com-2__section--dark {
      background-color: var(--page-phtaya16-com-2-text-color);
      color: var(--page-phtaya16-com-2-light-text-color);
    }

    .page-phtaya16-com-2__section-title {
      font-size: 2.2em;
      margin-bottom: 30px;
      color: var(--page-phtaya16-com-2-primary-color);
      position: relative;
      padding-bottom: 10px;
    }

    .page-phtaya16-com-2__section-title--light {
      color: var(--page-phtaya16-com-2-accent-color);
    }

    .page-phtaya16-com-2__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: var(--page-phtaya16-com-2-accent-color);
    }

    /* Promotions Section */
    .page-phtaya16-com-2__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
      justify-content: center;
    }

    .page-phtaya16-com-2__promo-card {
      background-color: var(--page-phtaya16-com-2-light-text-color);
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-phtaya16-com-2__promo-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

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

    .page-phtaya16-com-2__promo-content {
      padding: 25px;
    }

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

    .page-phtaya16-com-2__promo-description {
      font-size: 0.95em;
      color: var(--page-phtaya16-com-2-secondary-color);
      margin-bottom: 20px;
    }

    .page-phtaya16-com-2__promo-button {
      background-color: var(--page-phtaya16-com-2-primary-color);
      color: var(--page-phtaya16-com-2-light-text-color);
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-phtaya16-com-2__promo-button:hover {
      background-color: #0056b3;
    }

    /* Game Categories Section */
    .page-phtaya16-com-2__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
      justify-content: center;
    }

    .page-phtaya16-com-2__game-card {
      background-color: var(--page-phtaya16-com-2-light-text-color);
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding-bottom: 20px;
    }

    .page-phtaya16-com-2__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    }

    .page-phtaya16-com-2__game-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
      margin-bottom: 15px;
    }

    .page-phtaya16-com-2__game-title {
      font-size: 1.3em;
      color: var(--page-phtaya16-com-2-primary-color);
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-phtaya16-com-2__game-description {
      font-size: 0.9em;
      color: var(--page-phtaya16-com-2-secondary-color);
      padding: 0 15px;
    }

    /* Payment Methods & Providers */
    .page-phtaya16-com-2__logo-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-phtaya16-com-2__logo-item {
      background-color: var(--page-phtaya16-com-2-light-text-color);
      padding: 15px 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 120px;
      max-width: 180px;
      box-sizing: border-box;
      flex-grow: 1;
    }

    .page-phtaya16-com-2__logo-item img {
      max-width: 100%;
      height: auto;
      max-height: 50px;
      object-fit: contain;
    }

    /* Why Choose Us Section */
    .page-phtaya16-com-2__features-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
      text-align: left;
    }

    .page-phtaya16-com-2__feature-item {
      background-color: var(--page-phtaya16-com-2-light-text-color);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .page-phtaya16-com-2__feature-icon {
      width: 60px;
      height: 60px;
      margin-bottom: 15px;
      object-fit: contain;
    }

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

    .page-phtaya16-com-2__feature-description {
      font-size: 0.95em;
      color: var(--page-phtaya16-com-2-secondary-color);
    }

    /* FAQ Section */
    .page-phtaya16-com-2__faq-list {
      margin-top: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-phtaya16-com-2__faq-item {
      background-color: var(--page-phtaya16-com-2-light-text-color);
      border: 1px solid var(--page-phtaya16-com-2-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

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

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

    .page-phtaya16-com-2__faq-question h3 {
      margin: 0;
      font-size: 1.15em;
      color: var(--page-phtaya16-com-2-primary-color);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

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

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

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

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

    /* Floating Buttons */
    .page-phtaya16-com-2__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: rgba(0, 0, 0, 0.8);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
      z-index: 1000;
    }

    .page-phtaya16-com-2__floating-button {
      flex: 1;
      margin: 0 5px;
      padding: 12px 10px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease;
      text-align: center;
    }

    .page-phtaya16-com-2__floating-button--register {
      background-color: var(--page-phtaya16-com-2-accent-color);
      color: var(--page-phtaya16-com-2-text-color);
    }

    .page-phtaya16-com-2__floating-button--register:hover {
      background-color: #ffda6a;
    }

    .page-phtaya16-com-2__floating-button--login {
      background-color: var(--page-phtaya16-com-2-primary-color);
      color: var(--page-phtaya16-com-2-light-text-color);
    }

    .page-phtaya16-com-2__floating-button--login:hover {
      background-color: #0056b3;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-phtaya16-com-2__hero-section {
        height: 50vh;
      }

      .page-phtaya16-com-2__hero-title {
        font-size: 2em;
      }

      .page-phtaya16-com-2__hero-subtitle {
        font-size: 1em;
      }

      .page-phtaya16-com-2__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-phtaya16-com-2__section-title {
        font-size: 1.8em;
      }

      .page-phtaya16-com-2__promo-grid,
      .page-phtaya16-com-2__game-grid,
      .page-phtaya16-com-2__features-list {
        grid-template-columns: 1fr;
      }

      .page-phtaya16-com-2__promo-content,
      .page-phtaya16-com-2__game-card,
      .page-phtaya16-com-2__feature-item {
        padding: 20px;
      }

      .page-phtaya16-com-2__promo-title {
        font-size: 1.3em;
      }

      .page-phtaya16-com-2__game-title {
        font-size: 1.2em;
      }

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

      .page-phtaya16-com-2__faq-question h3 {
        font-size: 1em;
      }

      .page-phtaya16-com-2__faq-answer {
        padding: 0 20px;
      }

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

      .page-phtaya16-com-2__floating-button {
        font-size: 1em;
        padding: 10px 5px;
      }

      /* List item responsiveness */
      .page-phtaya16-com-2__promo-grid > div,
      .page-phtaya16-com-2__game-grid > div,
      .page-phtaya16-com-2__features-list > div,
      .page-phtaya16-com-2__logo-grid > div {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-phtaya16-com-2__logo-grid {
        padding: 0 10px !important;
      }

      .page-phtaya16-com-2__logo-item {
        min-width: unset;
        width: 48%; /* Adjust for two columns if desired, or 100% for single */
        flex-grow: 0;
      }

      /* Image responsiveness */
      .page-phtaya16-com-2__hero-image,
      .page-phtaya16-com-2__promo-image,
      .page-phtaya16-com-2__game-image,
      .page-phtaya16-com-2__feature-icon,
      .page-phtaya16-com-2__logo-item img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }

      /* Text wrapping */
      .page-phtaya16-com-2__promo-description,
      .page-phtaya16-com-2__game-description,
      .page-phtaya16-com-2__feature-description,
      .page-phtaya16-com-2__faq-answer {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }
  