
    /* Base styles for the page */
    .page-yy777-com-login-register {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #0f0f2f;
      line-height: 1.6;
      padding: 10px 0 0 0; /* Adjusted padding-top for fixed header */
      max-width: 100vw;
      overflow-x: hidden;
    }

    /* Section styling */
    .page-yy777-com-login-register__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #1a1a3e;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-yy777-com-login-register__section--dark {
      background-color: #0f0f2f;
    }

    /* Hero Section */
    .page-yy777-com-login-register__hero-section {
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(135deg, #1a1a3e, #0f0f2f);
      color: #ffffff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
      position: relative;
      overflow: hidden;
    }

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

    .page-yy777-com-login-register__hero-content {
      position: relative;
      z-index: 1;
    }

    .page-yy777-com-login-register__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      color: #ffc107;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

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

    /* Buttons */
    .page-yy777-com-login-register__button-group {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
      flex-wrap: wrap;
    }

    .page-yy777-com-login-register__button {
      background-color: #ffc107;
      color: #1a1a3e;
      padding: 15px 30px;
      border: none;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      display: inline-block;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    }

    .page-yy777-com-login-register__button:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
    }

    .page-yy777-com-login-register__button--secondary {
      background-color: #007bff;
      color: #ffffff;
    }

    .page-yy777-com-login-register__button--secondary:hover {
      background-color: #0056b3;
    }

    /* Content Headings */
    .page-yy777-com-login-register__heading {
      font-size: 2.2em;
      color: #ffc107;
      text-align: center;
      margin-bottom: 30px;
      margin-top: 40px;
    }

    .page-yy777-com-login-register__sub-heading {
      font-size: 1.8em;
      color: #007bff;
      margin-bottom: 20px;
    }

    /* Paragraphs */
    .page-yy777-com-login-register__paragraph {
      margin-bottom: 15px;
      font-size: 1.1em;
      color: #c0c0c0;
    }

    /* Image Styling */
    .page-yy777-com-login-register__image-container {
      width: 100%;
      max-width: 800px;
      margin: 30px auto;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-yy777-com-login-register__image {
      max-width: 100%;
      height: auto;
      display: block;
      transition: transform 0.3s ease;
    }

    .page-yy777-com-login-register__image:hover {
      transform: scale(1.02);
    }

    /* How-To Steps */
    .page-yy777-com-login-register__steps-list {
      list-style: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .page-yy777-com-login-register__step-item {
      background-color: #2a2a4e;
      padding: 25px;
      border-radius: 8px;
      display: flex;
      align-items: flex-start;
      gap: 20px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-yy777-com-login-register__step-number {
      font-size: 2em;
      font-weight: bold;
      color: #ffc107;
      flex-shrink: 0;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: #007bff;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    .page-yy777-com-login-register__step-content h3 {
      margin-top: 0;
      color: #e0e0e0;
      font-size: 1.4em;
    }

    .page-yy777-com-login-register__step-content p {
      margin-bottom: 0;
      color: #c0c0c0;
    }

    /* FAQ Section */
    .page-yy777-com-login-register__faq-section {
      padding: 40px 20px;
      background-color: #1a1a3e;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      margin-top: 40px;
      box-sizing: border-box;
    }

    .page-yy777-com-login-register__faq-item {
      background-color: #2a2a4e;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-yy777-com-login-register__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #3a3a5e;
      color: #ffc107;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-yy777-com-login-register__faq-question:hover {
      background-color: #4a4a6e;
    }

    .page-yy777-com-login-register__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      color: #ffc107;
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-yy777-com-login-register__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-yy777-com-login-register__faq-item.active .page-yy777-com-login-register__faq-toggle {
      transform: rotate(45deg); /* Plus to X (or rotate to minus) */
    }

    .page-yy777-com-login-register__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;
      color: #c0c0c0;
      box-sizing: border-box;
    }

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

    /* General utility for text */
    .page-yy777-com-login-register__text-center {
      text-align: center;
    }

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

      .page-yy777-com-login-register__hero-subtitle {
        font-size: 1.2em;
      }

      .page-yy777-com-login-register__button-group {
        flex-direction: column;
        gap: 15px;
      }

      .page-yy777-com-login-register__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-yy777-com-login-register__heading {
        font-size: 1.8em;
      }

      .page-yy777-com-login-register__sub-heading {
        font-size: 1.5em;
      }

      .page-yy777-com-login-register__paragraph {
        font-size: 1em;
      }

      .page-yy777-com-login-register__section,
      .page-yy777-com-login-register__hero-section,
      .page-yy777-com-login-register__faq-section {
        padding: 30px 15px;
        margin-left: 10px;
        margin-right: 10px;
        width: calc(100% - 20px);
        max-width: calc(100% - 20px);
        box-sizing: border-box;
      }

      .page-yy777-com-login-register__image-container {
        padding: 0 10px;
        box-sizing: border-box;
      }

      .page-yy777-com-login-register__image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-yy777-com-login-register__steps-list {
        gap: 15px;
      }

      .page-yy777-com-login-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-com-login-register__step-number {
        margin-bottom: 15px;
      }

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

      .page-yy777-com-login-register__faq-question h3 {
        font-size: 1.1em;
      }

      .page-yy777-com-login-register__faq-answer {
        padding: 15px 15px;
      }

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

    @media (max-width: 480px) {
      .page-yy777-com-login-register__hero-title {
        font-size: 1.8em;
      }

      .page-yy777-com-login-register__hero-subtitle {
        font-size: 1em;
      }

      .page-yy777-com-login-register__heading {
        font-size: 1.5em;
      }

      .page-yy777-com-login-register__sub-heading {
        font-size: 1.3em;
      }
    }
  