
    /* Base styles for the page */
    .page-yy777-ph-login {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      padding-bottom: 60px; /* Space for floating buttons */
    }

    /* Adjust padding for the main content if header offset is not handled by body */
    .page-yy777-ph-login.page-content {
      padding-top: var(--header-offset, 122px); /* Fallback to 122px if not defined in shared.css */
    }

    /* General section styling */
    .page-yy777-ph-login__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
      background-color: #fff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-yy777-ph-login__section:first-of-type {
        padding-top: 10px; /* Small decorative top padding for the first section */
    }

    .page-yy777-ph-login__section h2 {
      color: #0056b3;
      text-align: center;
      margin-bottom: 25px;
      font-size: 2.2em;
      font-weight: bold;
    }

    .page-yy777-ph-login__section h3 {
      color: #0056b3;
      font-size: 1.6em;
      margin-top: 20px;
      margin-bottom: 15px;
    }

    .page-yy777-ph-login__section p {
      margin-bottom: 15px;
      font-size: 1.1em;
      color: #555;
    }

    /* Hero Section */
    .page-yy777-ph-login__hero-section {
      background: linear-gradient(135deg, #007bff, #0056b3);
      color: #fff;
      text-align: center;
      padding: 60px 20px;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-yy777-ph-login__hero-section h1 {
      font-size: 3.5em;
      margin-bottom: 20px;
      line-height: 1.2;
      font-weight: bold;
    }

    .page-yy777-ph-login__hero-section p {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #e0f2f7;
    }

    /* Floating Buttons */
    .page-yy777-ph-login__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 15px 10px;
      background-color: #0056b3;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
      z-index: 1000;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
    }

    .page-yy777-ph-login__floating-button {
      background-color: #ffc107;
      color: #000;
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      flex-grow: 1;
      margin: 0 8px;
      max-width: 180px;
      cursor: pointer;
      border: none;
    }

    .page-yy777-ph-login__floating-button:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
    }

    /* Image Styling */
    .page-yy777-ph-login__image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      margin: 25px auto;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
    }

    .page-yy777-ph-login__image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }

    /* List Styling */
    .page-yy777-ph-login__list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .page-yy777-ph-login__list-item {
      background-color: #e9f7ff;
      padding: 20px;
      border-left: 5px solid #007bff;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      font-size: 1.1em;
      color: #333;
      box-sizing: border-box; /* Crucial for responsiveness */
      word-wrap: break-word !important; /* Ensure text wraps */
      overflow-wrap: break-word !important; /* Ensure text wraps */
      word-break: break-word !important; /* Break long words */
    }

    .page-yy777-ph-login__list-item strong {
      color: #0056b3;
    }

    /* How-to steps */
    .page-yy777-ph-login__steps-list {
      counter-reset: step-counter;
      list-style: none;
      padding: 0;
      margin: 20px 0;
    }

    .page-yy777-ph-login__steps-list-item {
      background-color: #f9f9f9;
      margin-bottom: 15px;
      padding: 20px 25px 20px 60px;
      border-radius: 8px;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
      position: relative;
      font-size: 1.1em;
      color: #444;
      box-sizing: border-box; /* Crucial for responsiveness */
      word-wrap: break-word !important; /* Ensure text wraps */
      overflow-wrap: break-word !important; /* Ensure text wraps */
      word-break: break-word !important; /* Break long words */
    }

    .page-yy777-ph-login__steps-list-item::before {
      content: counter(step-counter);
      counter-increment: step-counter;
      position: absolute;
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
      background-color: #007bff;
      color: #fff;
      width: 35px;
      height: 35px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.2em;
    }

    /* Game Providers / Payment Methods Grid */
    .page-yy777-ph-login__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }

    .page-yy777-ph-login__grid-item {
      background-color: #f0f8ff;
      border: 1px solid #cceeff;
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      font-weight: bold;
      color: #0056b3;
      font-size: 1em;
      box-sizing: border-box; /* Crucial for responsiveness */
      word-wrap: break-word !important; /* Ensure text wraps */
      overflow-wrap: break-word !important; /* Ensure text wraps */
      word-break: break-word !important; /* Break long words */
    }

    /* Call to Action Button */
    .page-yy777-ph-login__cta-button {
      display: block;
      width: fit-content;
      margin: 30px auto 0;
      background-color: #ffc107;
      color: #000;
      padding: 15px 35px;
      border-radius: 30px;
      font-size: 1.3em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      border: none;
    }

    .page-yy777-ph-login__cta-button:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
    }

    .page-yy777-ph-login__promo-note {
      text-align: center;
      margin-top: 20px;
      font-style: italic;
      color: #666;
    }

    /* FAQ Section */
    .page-yy777-ph-login__faq-section {
      background-color: #fff;
      padding: 40px 20px;
      margin: 0 auto 20px;
      max-width: 1200px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-yy777-ph-login__faq-item {
      border: 1px solid #eee;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      background-color: #f9f9f9;
    }

    .page-yy777-ph-login__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #007bff;
      color: #fff;
      cursor: pointer;
      font-size: 1.2em;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-yy777-ph-login__faq-question h3 {
      margin: 0;
      color: #fff; /* Ensure h3 color is white */
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-yy777-ph-login__faq-question:hover {
      background-color: #0056b3;
    }

    .page-yy777-ph-login__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 10px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-yy777-ph-login__faq-item.active .page-yy777-ph-login__faq-toggle {
      transform: rotate(45deg); /* Change + to X or a dash visually */
    }

    .page-yy777-ph-login__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;
      background-color: #fff;
      color: #333;
    }

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

    .page-yy777-ph-login__faq-answer p {
      margin-top: 0;
      margin-bottom: 10px;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-yy777-ph-login__section {
        padding: 30px 15px;
      }
      .page-yy777-ph-login__hero-section h1 {
        font-size: 3em;
      }
      .page-yy777-ph-login__hero-section p {
        font-size: 1.2em;
      }
    }

    @media (max-width: 768px) {
      .page-yy777-ph-login__hero-section h1 {
        font-size: 2.5em;
      }
      .page-yy777-ph-login__hero-section p {
        font-size: 1.1em;
      }
      .page-yy777-ph-login__section h2 {
        font-size: 1.8em;
      }
      .page-yy777-ph-login__section h3 {
        font-size: 1.4em;
      }
      .page-yy777-ph-login__section p,
      .page-yy777-ph-login__list-item,
      .page-yy777-ph-login__steps-list-item,
      .page-yy777-ph-login__grid-item {
        font-size: 1em;
      }

      /* List item mobile responsiveness */
      .page-yy777-ph-login__list,
      .page-yy777-ph-login__grid {
        grid-template-columns: 1fr; /* Single column layout for lists and grids */
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 10px !important; /* Adjust padding for smaller screens */
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-yy777-ph-login__list-item,
      .page-yy777-ph-login__steps-list-item,
      .page-yy777-ph-login__grid-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important; /* Adjust padding */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      /* Image mobile responsiveness */
      .page-yy777-ph-login__image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      .page-yy777-ph-login__image {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-yy777-ph-login__floating-buttons {
        padding: 10px 5px;
      }

      .page-yy777-ph-login__floating-button {
        padding: 10px 15px;
        font-size: 1em;
        margin: 0 5px;
      }

      .page-yy777-ph-login__cta-button {
        font-size: 1.1em;
        padding: 12px 25px;
      }

      .page-yy777-ph-login__faq-question {
        padding: 12px 15px;
        font-size: 1.1em;
      }
      .page-yy777-ph-login__faq-question h3 {
        font-size: 1.1em;
      }
      .page-yy777-ph-login__faq-answer {
        padding: 0 10px;
      }
      .page-yy777-ph-login__faq-item.active .page-yy777-ph-login__faq-answer {
        padding: 15px 10px !important;
      }
    }

    @media (max-width: 480px) {
      .page-yy777-ph-login__hero-section h1 {
        font-size: 2em;
      }
      .page-yy777-ph-login__hero-section p {
        font-size: 1em;
      }
      .page-yy777-ph-login__section h2 {
        font-size: 1.6em;
      }
      .page-yy777-ph-login__section h3 {
        font-size: 1.2em;
      }
      .page-yy777-ph-login__floating-button {
        font-size: 0.9em;
        padding: 8px 10px;
        margin: 0 3px;
      }
    }
  