
    /* Base styles for the page */
    .page-8k8-register {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-top: 10px; /* Small padding, assuming body has header offset */
    }

    /* Hero Section */
    .page-8k8-register__hero-section {
      position: relative;
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
      color: #fff;
      padding: 60px 20px;
      text-align: center;
      overflow: hidden;
      border-radius: 0 0 20px 20px;
      margin-bottom: 40px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

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

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

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

    .page-8k8-register__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      color: #eee;
    }

    .page-8k8-register__hero-button {
      display: inline-block;
      background-color: #ff4500; /* OrangeRed */
      color: #fff;
      padding: 15px 35px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      border: none;
      cursor: pointer;
    }

    .page-8k8-register__hero-button:hover {
      background-color: #e63900;
      transform: translateY(-3px);
    }

    /* Section common styles */
    .page-8k8-register__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      margin-bottom: 40px;
    }

    .page-8k8-register__section-title {
      text-align: center;
      font-size: 2.5em;
      color: #1a2a6c; /* Dark blue */
      margin-bottom: 40px;
      position: relative;
    }

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

    /* Why Register Section */
    .page-8k8-register__why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-8k8-register__why-item {
      background-color: #f0f8ff; /* AliceBlue */
      padding: 25px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid #e0e0e0;
    }

    .page-8k8-register__why-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-register__why-icon {
      margin-bottom: 15px;
      width: 100%;
      max-width: 250px; /* Ensure images are not too wide */
      height: auto;
      border-radius: 8px;
    }

    .page-8k8-register__why-item h3 {
      font-size: 1.5em;
      color: #1a2a6c;
      margin-bottom: 10px;
    }

    .page-8k8-register__why-item p {
      color: #555;
    }

    /* How to Register Section */
    .page-8k8-register__steps-list {
      display: flex;
      flex-direction: column;
      gap: 25px;
      list-style: none;
      padding: 0;
    }

    .page-8k8-register__step-item {
      display: flex;
      align-items: flex-start;
      background-color: #fff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      border-left: 5px solid #ff4500; /* OrangeRed */
    }

    .page-8k8-register__step-number {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      background-color: #1a2a6c;
      color: #fff;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.4em;
      font-weight: bold;
      margin-right: 20px;
    }

    .page-8k8-register__step-content h3 {
      font-size: 1.6em;
      color: #1a2a6c;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-8k8-register__step-content p {
      color: #555;
    }

    /* Game Highlights Section */
    .page-8k8-register__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .page-8k8-register__game-card {
      background-color: #f0f8ff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
    }

    .page-8k8-register__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-register__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 2px solid #ff4500;
    }

    .page-8k8-register__game-info {
      padding: 20px;
    }

    .page-8k8-register__game-info h3 {
      font-size: 1.4em;
      color: #1a2a6c;
      margin-bottom: 10px;
    }

    .page-8k8-register__game-info p {
      font-size: 0.95em;
      color: #555;
    }

    /* Payment Options Section */
    .page-8k8-register__payment-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      list-style: none;
      padding: 0;
      text-align: center;
    }

    .page-8k8-register__payment-item {
      background-color: #f0f8ff;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
      font-weight: bold;
      color: #1a2a6c;
      border: 1px solid #e0e0e0;
      transition: background-color 0.3s ease;
    }

    .page-8k8-register__payment-item:hover {
      background-color: #e6f2ff;
    }

    /* FAQ Section */
    .page-8k8-register__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

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

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

    .page-8k8-register__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none; /* Prevents click event on h3 itself */
      color: #1a2a6c;
    }

    .page-8k8-register__faq-question:hover {
      background-color: #eaeaea;
    }

    .page-8k8-register__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents click event on toggle itself */
      color: #ff4500;
    }

    .page-8k8-register__faq-item.active .page-8k8-register__faq-toggle {
      transform: rotate(45deg); /* Plus sign becomes an X or minus */
    }

    .page-8k8-register__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      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: #555;
    }

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

    /* Floating Buttons */
    .page-8k8-register__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }

    .page-8k8-register__floating-button {
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #1a2a6c; /* Dark blue */
      color: #fff;
      padding: 12px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      min-width: 120px;
      text-align: center;
      border: none;
      cursor: pointer;
    }

    .page-8k8-register__floating-button--register {
      background-color: #ff4500; /* OrangeRed */
    }

    .page-8k8-register__floating-button--register:hover {
      background-color: #e63900;
      transform: translateY(-3px);
    }

    .page-8k8-register__floating-button--login {
      background-color: #1a2a6c; /* Dark blue */
    }

    .page-8k8-register__floating-button--login:hover {
      background-color: #142054;
      transform: translateY(-3px);
    }

    /* General text styles */
    .page-8k8-register p {
      margin-bottom: 1em;
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .page-8k8-register__hero-section {
        padding: 40px 15px;
        margin-bottom: 30px;
      }

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

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

      .page-8k8-register__hero-button {
        padding: 12px 30px;
        font-size: 1em;
      }

      .page-8k8-register__section {
        padding: 30px 15px;
        margin-bottom: 30px;
      }

      .page-8k8-register__section-title {
        font-size: 2em;
        margin-bottom: 30px;
      }

      .page-8k8-register__why-grid,
      .page-8k8-register__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

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

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

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

      .page-8k8-register__payment-list {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
      }

      .page-8k8-register__faq-question {
        font-size: 1em;
        padding: 15px;
      }

      .page-8k8-register__faq-question h3 {
        font-size: 1em;
      }

      .page-8k8-register__faq-answer {
        padding: 0 15px;
      }

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

      .page-8k8-register__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Arrange buttons horizontally on mobile */
        width: calc(100% - 30px);
        justify-content: space-around;
      }

      .page-8k8-register__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.95em;
        min-width: unset;
      }
    }

    /* List item specific responsive styles */
    .page-8k8-register ul, .page-8k8-register ol {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .page-8k8-register__why-item,
    .page-8k8-register__step-item,
    .page-8k8-register__payment-item {
        box-sizing: border-box;
    }

    @media (max-width: 768px) {
        .page-8k8-register__why-item,
        .page-8k8-register__step-item,
        .page-8k8-register__payment-item {
            width: 100% !important;
            max-width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
            padding: 15px !important; /* Adjust padding for smaller screens */
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-8k8-register__why-grid,
        .page-8k8-register__steps-list,
        .page-8k8-register__payment-list {
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
        }
    }
  