
    /* Base styles for the page content, ensuring it's scoped */
    .page-plus777-login-register {
      font-family: 'Arial', sans-serif;
      color: #ccc;
      background-color: #1a1a1a;
      line-height: 1.6;
      padding-bottom: 50px; /* Space for footer */
    }

    /* Fixed navigation bar offset - adding a small top padding to the first section */
    .page-plus777-login-register__hero-section {
        padding-top: 10px; /* Small decorative padding, assuming body handles main offset */
    }

    .page-plus777-login-register__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-plus777-login-register__section {
      padding: 40px 20px;
      margin-bottom: 30px;
      background-color: #222;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-plus777-login-register__section--dark {
      background-color: #1a1a1a;
    }

    .page-plus777-login-register__title {
      color: #ffd700;
      text-align: center;
      margin-bottom: 20px;
      font-size: 2.5em;
    }

    .page-plus777-login-register__subtitle {
      color: #fff;
      text-align: center;
      margin-bottom: 30px;
      font-size: 1.5em;
    }

    .page-plus777-login-register__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: #ccc;
    }

    .page-plus777-login-register__button {
      display: inline-block;
      background-color: #ffd700;
      color: #333;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
      margin: 10px;
    }

    .page-plus777-login-register__button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-plus777-login-register__hero-section {
      background: url('[GALLERY:hero:1920x1080:casino,login,register,gaming]') no-repeat center center/cover;
      color: #fff;
      text-align: center;
      padding: 100px 20px;
      border-radius: 0; /* Hero usually full width */
      margin-bottom: 0; /* No margin as it's full width */
      position: relative;
      overflow: hidden;
    }

    .page-plus777-login-register__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .page-plus777-login-register__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-plus777-login-register__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: #ffd700;
      line-height: 1.2;
    }

    .page-plus777-login-register__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-plus777-login-register__hero-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    /* Image Styling */
    .page-plus777-login-register__image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 20px auto;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    /* List Styling */
    .page-plus777-login-register__list-wrapper {
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-plus777-login-register__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      width: 100%; /* Ensure container takes full width */
      max-width: 100%; /* Ensure container takes full width */
      box-sizing: border-box; /* Include padding in width */
    }

    .page-plus777-login-register__list-item {
      background-color: #333;
      padding: 20px;
      border-radius: 8px;
      flex: 1;
      min-width: 280px;
      max-width: calc(33% - 20px); /* For 3 columns */
      box-sizing: border-box;
      position: relative;
      padding-left: 50px; /* Space for custom bullet */
    }

    .page-plus777-login-register__list-item::before {
      content: '✓';
      color: #ffd700;
      font-size: 1.5em;
      position: absolute;
      left: 15px;
      top: 18px;
      font-weight: bold;
    }

    .page-plus777-login-register__list-item h3 {
      color: #ffd700;
      margin-top: 0;
      font-size: 1.3em;
    }

    .page-plus777-login-register__steps-list {
      counter-reset: step-counter;
      list-style: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 25px;
      width: 100%; /* Ensure container takes full width */
      max-width: 100%; /* Ensure container takes full width */
      box-sizing: border-box; /* Include padding in width */
    }

    .page-plus777-login-register__step-item {
      background-color: #333;
      padding: 25px;
      border-radius: 8px;
      display: flex;
      align-items: flex-start;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
      box-sizing: border-box;
    }

    .page-plus777-login-register__step-item::before {
      counter-increment: step-counter;
      content: counter(step-counter);
      background-color: #ffd700;
      color: #1a1a1a;
      font-size: 1.4em;
      font-weight: bold;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      min-width: 40px; /* Ensure it doesn't shrink */
      display: flex;
      justify-content: center;
      align-items: center;
      margin-right: 20px;
    }

    .page-plus777-login-register__step-item h3 {
      color: #ffd700;
      margin-top: 0;
      margin-bottom: 10px;
      font-size: 1.4em;
    }

    .page-plus777-login-register__step-item p {
      margin-bottom: 0;
      color: #ccc;
    }

    /* FAQ Section */
    .page-plus777-login-register__faq-section {
      padding: 40px 20px;
      margin-bottom: 30px;
      background-color: #222;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-plus777-login-register__faq-item {
      margin-bottom: 15px;
      border: 1px solid #333;
      border-radius: 8px;
      overflow: hidden;
    }

    .page-plus777-login-register__faq-question {
      background-color: #333;
      padding: 15px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-plus777-login-register__faq-question:hover {
      background-color: #444;
    }

    .page-plus777-login-register__faq-question h3 {
      color: #fff;
      margin: 0;
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-plus777-login-register__faq-toggle {
      color: #ffd700;
      font-size: 1.8em;
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

    .page-plus777-login-register__faq-item.active .page-plus777-login-register__faq-toggle {
      transform: rotate(45deg); /* Changes '+' to 'x' or '-' depending on initial state */
    }

    .page-plus777-login-register__faq-answer {
      background-color: #2a2a2a;
      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: #ccc;
      font-size: 1em;
    }

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

    /* Call to Action Section */
    .page-plus777-login-register__cta-section {
      text-align: center;
      padding: 60px 20px;
      background-color: #333;
      border-radius: 8px;
    }

    .page-plus777-login-register__cta-title {
      color: #ffd700;
      font-size: 2.2em;
      margin-bottom: 20px;
    }

    .page-plus777-login-register__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #ccc;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-plus777-login-register__hero-title {
        font-size: 3em;
      }
      .page-plus777-login-register__hero-description {
        font-size: 1.2em;
      }
      .page-plus777-login-register__list-item {
        max-width: calc(50% - 20px); /* Two columns */
      }
    }

    @media (max-width: 768px) {
      .page-plus777-login-register__hero-section {
        padding: 80px 20px;
      }
      .page-plus777-login-register__hero-title {
        font-size: 2.5em;
      }
      .page-plus777-login-register__hero-description {
        font-size: 1.1em;
      }
      .page-plus777-login-register__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-plus777-login-register__button {
        width: 80%;
        margin: 0 auto;
      }
      .page-plus777-login-register__title {
        font-size: 2em;
      }
      .page-plus777-login-register__subtitle {
        font-size: 1.3em;
      }
      .page-plus777-login-register__section {
        padding: 30px 15px;
      }
      .page-plus777-login-register__list-wrapper,
      .page-plus777-login-register__list,
      .page-plus777-login-register__steps-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
      .page-plus777-login-register__list {
        flex-direction: column; /* Stack items */
        gap: 15px;
      }
      .page-plus777-login-register__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 40px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-plus777-login-register__list-item::before {
        left: 10px;
        top: 15px;
      }

      .page-plus777-login-register__steps-list {
        gap: 15px;
      }
      .page-plus777-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;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-plus777-login-register__step-item::before {
        margin-right: 0;
        margin-bottom: 15px;
      }
      .page-plus777-login-register__step-item h3 {
        font-size: 1.2em;
      }
      .page-plus777-login-register__step-item p {
        font-size: 0.95em;
      }

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

      .page-plus777-login-register__faq-question {
        padding: 12px 15px;
      }
      .page-plus777-login-register__faq-question h3 {
        font-size: 1.1em;
      }
      .page-plus777-login-register__faq-toggle {
        font-size: 1.5em;
      }
      .page-plus777-login-register__faq-answer {
        padding: 15px 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-plus777-login-register__hero-title {
        font-size: 2em;
      }
      .page-plus777-login-register__hero-description {
        font-size: 1em;
      }
      .page-plus777-login-register__button {
        width: 90%;
      }
      .page-plus777-login-register__title {
        font-size: 1.8em;
      }
      .page-plus777-login-register__subtitle {
        font-size: 1.1em;
      }
      .page-plus777-login-register__section {
        padding: 25px 10px;
      }
    }
  