
    /* Base styles for the page */
    .page-yy777-register {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-bottom: 40px;
      /* Fallback for header offset if shared.css doesn't provide body padding-top */
      padding-top: var(--header-offset, 122px);
    }

    .page-yy777-register__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    /* Hero Section */
    .page-yy777-register__hero-section {
      position: relative;
      background-color: #001f3f; /* Dark blue background for contrast */
      color: #fff;
      padding: 60px 0;
      text-align: center;
      overflow: hidden;
      padding-top: 10px; /* Small top padding for aesthetics, body handles main offset */
    }

    .page-yy777-register__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-yy777-register__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-yy777-register__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      color: #ffd700; /* Gold for emphasis */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-yy777-register__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-yy777-register__hero-button {
      background-color: #ff4500; /* Orange-red for call to action */
      color: #fff;
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      cursor: pointer;
      transition: background-color 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .page-yy777-register__hero-button:hover {
      background-color: #e03a00;
    }

    /* Section Styling */
    .page-yy777-register__section {
      padding: 40px 0;
      background-color: #fff;
      margin-top: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-yy777-register__section--dark {
      background-color: #001f3f;
      color: #fff;
    }

    .page-yy777-register__section-title {
      font-size: 2.5em;
      color: #001f3f;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
    }

    .page-yy777-register__section--dark .page-yy777-register__section-title {
      color: #ffd700;
    }

    .page-yy777-register__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -10px;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background-color: #ff4500;
      border-radius: 2px;
    }

    .page-yy777-register__section--dark .page-yy777-register__section-title::after {
      background-color: #ffd700;
    }

    /* Features/Benefits Grid */
    .page-yy777-register__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-yy777-register__feature-item {
      text-align: center;
      padding: 30px;
      background-color: #f0f8ff; /* Light blue */
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-yy777-register__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-yy777-register__feature-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      object-fit: contain;
    }

    .page-yy777-register__feature-title {
      font-size: 1.5em;
      color: #001f3f;
      margin-bottom: 15px;
    }

    .page-yy777-register__feature-description {
      font-size: 1em;
      color: #555;
    }

    /* Steps Section */
    .page-yy777-register__steps-list {
      display: flex;
      flex-direction: column;
      gap: 25px;
      max-width: 800px;
      margin: 0 auto;
      padding: 0;
      list-style: none;
    }

    .page-yy777-register__step-item {
      display: flex;
      align-items: flex-start;
      background-color: #e6f7ff; /* Lighter blue */
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      box-sizing: border-box; /* Crucial for mobile responsiveness */
      width: 100%;
    }

    .page-yy777-register__step-number {
      font-size: 2.2em;
      font-weight: bold;
      color: #ff4500;
      margin-right: 20px;
      flex-shrink: 0;
    }

    .page-yy777-register__step-content h3 {
      font-size: 1.6em;
      color: #001f3f;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-yy777-register__step-content p {
      font-size: 1.1em;
      color: #444;
      margin-bottom: 0;
    }

    /* Payment Methods / Game Providers */
    .page-yy777-register__logos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-items: center;
      align-items: center;
      margin-top: 30px;
    }

    .page-yy777-register__logo-item {
      width: 100%;
      height: 100px; /* Fixed height for consistency */
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      padding: 10px;
      box-sizing: border-box;
    }

    .page-yy777-register__logo-image {
      max-width: 100%;
      max-height: 80px;
      object-fit: contain;
    }

    /* Call to Action Section */
    .page-yy777-register__cta-section {
      text-align: center;
      background-color: #001f3f;
      color: #fff;
      padding: 60px 20px;
      margin-top: 40px;
      border-radius: 8px;
    }

    .page-yy777-register__cta-title {
      font-size: 2.8em;
      color: #ffd700;
      margin-bottom: 20px;
    }

    .page-yy777-register__cta-description {
      font-size: 1.3em;
      max-width: 800px;
      margin: 0 auto 30px auto;
      color: #e0e0e0;
    }

    .page-yy777-register__cta-button {
      background-color: #ff4500;
      color: #fff;
      padding: 18px 35px;
      border: none;
      border-radius: 5px;
      font-size: 1.2em;
      cursor: pointer;
      transition: background-color 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .page-yy777-register__cta-button:hover {
      background-color: #e03a00;
    }

    /* FAQ Section */
    .page-yy777-register__faq-section {
      padding: 40px 0;
      background-color: #f0f8ff;
      margin-top: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

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

    .page-yy777-register__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      font-size: 1.25em;
      font-weight: bold;
      color: #001f3f;
      cursor: pointer;
      user-select: none;
      background-color: #e6f7ff;
      transition: background-color 0.3s ease;
    }

    .page-yy777-register__faq-question:hover {
      background-color: #d0efff;
    }

    .page-yy777-register__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevents click event on h3 from interfering */
    }

    .page-yy777-register__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      color: #ff4500;
      pointer-events: none; /* Prevents click event on toggle icon from interfering */
      transition: transform 0.3s ease;
    }

    .page-yy777-register__faq-item.active .page-yy777-register__faq-toggle {
      transform: rotate(45deg); /* Change + to X (or rotate to -) */
      color: #001f3f;
    }

    .page-yy777-register__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      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;
      background-color: #fff;
    }

    .page-yy777-register__faq-item.active .page-yy777-register__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 25px !important; /* Final padding */
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-yy777-register__hero-title {
        font-size: 2.8em;
      }

      .page-yy777-register__section-title {
        font-size: 2em;
      }

      .page-yy777-register__cta-title {
        font-size: 2.2em;
      }
    }

    @media (max-width: 768px) {
      .page-yy777-register__hero-section {
        padding: 40px 0;
      }

      .page-yy777-register__hero-title {
        font-size: 2.2em;
      }

      .page-yy777-register__hero-subtitle {
        font-size: 1.1em;
      }

      .page-yy777-register__hero-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-yy777-register__section {
        padding: 30px 0;
        margin-top: 15px;
      }

      .page-yy777-register__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
      }

      .page-yy777-register__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-yy777-register__feature-item {
        padding: 25px;
      }

      .page-yy777-register__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-yy777-register__step-number {
        margin-right: 0;
        margin-bottom: 15px;
      }

      .page-yy777-register__step-content h3 {
        font-size: 1.4em;
      }

      .page-yy777-register__step-content p {
        font-size: 1em;
      }

      .page-yy777-register__logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
      }

      .page-yy777-register__logo-item {
        height: 80px;
        padding: 8px;
      }

      .page-yy777-register__logo-image {
        max-height: 60px;
      }

      .page-yy777-register__cta-section {
        padding: 40px 15px;
      }

      .page-yy777-register__cta-title {
        font-size: 1.8em;
      }

      .page-yy777-register__cta-description {
        font-size: 1.1em;
      }

      .page-yy777-register__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
      }

      .page-yy777-register__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-yy777-register__faq-answer {
        padding: 0 20px;
      }

      .page-yy777-register__faq-item.active .page-yy777-register__faq-answer {
        padding: 15px 20px !important;
      }

      /* Image responsiveness */
      .page-yy777-register img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-yy777-register__hero-background {
        max-width: 100% !important;
        height: 100% !important;
      }
      .page-yy777-register__feature-icon,
      .page-yy777-register__logo-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-yy777-register__logos-grid,
      .page-yy777-register__steps-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-yy777-register__feature-description,
      .page-yy777-register__step-content p,
      .page-yy777-register__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-yy777-register__hero-title {
        font-size: 1.8em;
      }
      .page-yy777-register__section-title {
        font-size: 1.6em;
      }
      .page-yy777-register__cta-title {
        font-size: 1.6em;
      }
      .page-yy777-register__faq-question {
        font-size: 1em;
      }
    }
  