
    /* Base styles for the page */
    .page-8k8-com-login-register {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0;
      background-color: #1a1a1a;
      line-height: 1.6;
      padding-bottom: 40px; /* Ensure space above footer */
    }

    .page-8k8-com-login-register__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-8k8-com-login-register__section--dark {
      background-color: #222222;
    }

    .page-8k8-com-login-register__section-title {
      font-size: 2.5em;
      color: #ffcc00; /* Gold accent */
      margin-bottom: 20px;
      font-weight: bold;
      text-transform: uppercase;
    }

    .page-8k8-com-login-register__section-subtitle {
      font-size: 1.2em;
      color: #cccccc;
      margin-bottom: 40px;
    }

    /* Hero Section */
    .page-8k8-com-login-register__hero-section {
      position: relative;
      padding: 10px 0 80px 0; /* Adjusted for header offset and bottom space */
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:8k8_login_register,casino_ph,background]') no-repeat center center/cover;
      color: #ffffff;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 60vh; /* Ensure it takes up a good portion of the viewport */
    }

    .page-8k8-com-login-register__hero-content {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .page-8k8-com-login-register__hero-title {
      font-size: 3.5em;
      color: #ffcc00;
      margin-bottom: 15px;
      line-height: 1.1;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-com-login-register__hero-description {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #e0e0e0;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-com-login-register__cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .page-8k8-com-login-register__cta-button {
      background-color: #e60000; /* Red accent */
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none; /* Ensure it looks like a button */
      cursor: pointer;
    }

    .page-8k8-com-login-register__cta-button:hover {
      background-color: #cc0000;
      transform: translateY(-3px);
    }
    
    .page-8k8-com-login-register__cta-button--secondary {
        background-color: #ffcc00; /* Gold accent */
        color: #1a1a1a;
    }

    .page-8k8-com-login-register__cta-button--secondary:hover {
        background-color: #e6b800;
        transform: translateY(-3px);
    }

    /* Info Cards */
    .page-8k8-com-login-register__info-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-com-login-register__card {
      background-color: #2a2a2a;
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid #3a3a3a;
    }

    .page-8k8-com-login-register__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-com-login-register__card-icon {
      margin-bottom: 20px;
      max-width: 100%;
      height: auto;
      border-radius: 5px;
    }

    .page-8k8-com-login-register__card-title {
      font-size: 1.8em;
      color: #ffcc00;
      margin-bottom: 15px;
    }

    .page-8k8-com-login-register__card-description {
      font-size: 1em;
      color: #cccccc;
    }

    /* Steps Section */
    .page-8k8-com-login-register__steps-list {
      display: flex;
      flex-direction: column;
      gap: 30px;
      margin-top: 40px;
      text-align: left;
    }

    .page-8k8-com-login-register__step-item {
      background-color: #2a2a2a;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: flex-start;
      gap: 20px;
      border: 1px solid #3a3a3a;
    }

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

    .page-8k8-com-login-register__step-content {
      flex-grow: 1;
    }

    .page-8k8-com-login-register__step-title {
      font-size: 1.5em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-8k8-com-login-register__step-description {
      font-size: 1em;
      color: #cccccc;
    }

    /* Game Categories */
    .page-8k8-com-login-register__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-8k8-com-login-register__game-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid #3a3a3a;
    }

    .page-8k8-com-login-register__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-com-login-register__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-8k8-com-login-register__game-info {
      padding: 20px;
      text-align: center;
    }

    .page-8k8-com-login-register__game-title {
      font-size: 1.5em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-8k8-com-login-register__game-description {
      font-size: 0.95em;
      color: #cccccc;
    }

    /* FAQ Section */
    .page-8k8-com-login-register__faq-section {
      text-align: left;
    }

    .page-8k8-com-login-register__faq-list {
      margin-top: 40px;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .page-8k8-com-login-register__faq-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      border: 1px solid #3a3a3a;
    }

    .page-8k8-com-login-register__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #333333;
      color: #ffcc00;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8-com-login-register__faq-question:hover {
      background-color: #444444;
    }
    
    .page-8k8-com-login-register__faq-question h3 {
        margin: 0;
        color: inherit;
        font-size: 1em; /* Adjust to match parent font size */
        pointer-events: none; /* Prevent h3 from intercepting click event */
    }

    .page-8k8-com-login-register__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from intercepting click event */
    }

    .page-8k8-com-login-register__faq-item.active .page-8k8-com-login-register__faq-toggle {
      transform: rotate(45deg); /* Changes + to x or - */
    }

    .page-8k8-com-login-register__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #2a2a2a;
      color: #cccccc;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 1em;
    }

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

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-com-login-register__hero-title {
        font-size: 3em;
      }

      .page-8k8-com-login-register__hero-description {
        font-size: 1.3em;
      }

      .page-8k8-com-login-register__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-com-login-register__hero-section {
        min-height: 50vh;
      }

      .page-8k8-com-login-register__hero-title {
        font-size: 2.5em;
      }

      .page-8k8-com-login-register__hero-description {
        font-size: 1.1em;
      }

      .page-8k8-com-login-register__cta-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-8k8-com-login-register__cta-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
      }

      .page-8k8-com-login-register__section {
        padding: 30px 15px;
      }

      .page-8k8-com-login-register__section-title {
        font-size: 1.8em;
      }

      .page-8k8-com-login-register__section-subtitle {
        font-size: 1em;
      }

      .page-8k8-com-login-register__info-cards,
      .page-8k8-com-login-register__game-categories {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-8k8-com-login-register__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
      }

      .page-8k8-com-login-register__step-number {
        margin-bottom: 15px;
      }

      /* Image responsiveness */
      .page-8k8-com-login-register__card-icon,
      .page-8k8-com-login-register__game-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      /* List item responsiveness for FAQ */
      .page-8k8-com-login-register__faq-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-8k8-com-login-register__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-com-login-register__faq-question,
      .page-8k8-com-login-register__faq-answer {
        padding: 15px 20px;
      }
      
      .page-8k8-com-login-register__faq-question h3 {
          font-size: 1.1em;
      }
    }

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

      .page-8k8-com-login-register__hero-description {
        font-size: 1em;
      }

      .page-8k8-com-login-register__section-title {
        font-size: 1.5em;
      }
    }
  