
    :root {
      --page-8k8-com-primary-color: #007bff; /* A vibrant blue for actions */
      --page-8k8-com-secondary-color: #6c757d; /* A muted grey */
      --page-8k8-com-accent-color: #28a745; /* Green for success/promotions */
      --page-8k8-com-text-color: #343a40; /* Dark grey for text */
      --page-8k8-com-background-light: #f8f9fa; /* Light background */
      --page-8k8-com-background-dark: #212529; /* Dark background */
      --page-8k8-com-card-background: #ffffff; /* White for cards */
      --page-8k8-com-border-color: #dee2e6; /* Light border */
      --page-8k8-com-link-color: #0056b3; /* Darker blue for links */
    }

    .page-8k8-com {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-8k8-com-text-color);
      background-color: var(--page-8k8-com-background-light);
      padding-top: 10px; /* Minimal top padding, body handles header offset */
    }

    .page-8k8-com__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-8k8-com__section {
      padding: 60px 0;
      text-align: center;
      background-color: var(--page-8k8-com-background-light);
    }

    .page-8k8-com__section--dark {
      background-color: var(--page-8k8-com-background-dark);
      color: #ffffff;
    }

    .page-8k8-com__section--dark h2,
    .page-8k8-com__section--dark h3,
    .page-8k8-com__section--dark p {
      color: #ffffff;
    }

    .page-8k8-com__section--dark .page-8k8-com__button {
        background-color: var(--page-8k8-com-accent-color);
        color: #ffffff;
        border: 1px solid var(--page-8k8-com-accent-color);
    }
    .page-8k8-com__section--dark .page-8k8-com__button:hover {
        background-color: #218838; /* Darker green */
        border-color: #1e7e34;
    }

    .page-8k8-com__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('[GALLERY:hero:1920x1080:online_casino,gaming,philippines,8k8_com]') no-repeat center center/cover;
      color: #ffffff;
      padding: 100px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
      position: relative;
    }

    .page-8k8-com__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      text-align: center;
    }

    .page-8k8-com__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
      text-align: center;
    }

    .page-8k8-com__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: var(--page-8k8-com-primary-color);
      color: #ffffff;
      text-decoration: none;
      border-radius: 8px;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
      margin: 10px;
    }

    .page-8k8-com__button:hover {
      background-color: var(--page-8k8-com-link-color);
      transform: translateY(-2px);
    }

    .page-8k8-com__button--accent {
        background-color: var(--page-8k8-com-accent-color);
    }

    .page-8k8-com__button--accent:hover {
        background-color: #218838; /* Darker green */
    }

    .page-8k8-com__section-title {
      font-size: 2.5em;
      margin-bottom: 40px;
      color: var(--page-8k8-com-primary-color);
      position: relative;
      padding-bottom: 10px;
    }

    .page-8k8-com__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-8k8-com-accent-color);
      border-radius: 2px;
    }

    .page-8k8-com__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-com__card {
      background-color: var(--page-8k8-com-card-background);
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      padding: 30px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      height: 100%;
      box-sizing: border-box;
    }

    .page-8k8-com__card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-com__card-icon {
      width: 200px; /* Min size 200x200 */
      height: 200px; /* Min size 200x200 */
      margin-bottom: 20px;
      object-fit: contain;
      max-width: 100%;
      height: auto;
    }

    .page-8k8-com__card-title {
      font-size: 1.5em;
      margin-bottom: 15px;
      color: var(--page-8k8-com-primary-color);
    }

    .page-8k8-com__card-description {
      font-size: 1em;
      color: var(--page-8k8-com-text-color);
    }

    .page-8k8-com__image-wrapper {
      margin-bottom: 25px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      width: 100%;
      max-width: 800px; /* Limit image width */
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-8k8-com__image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      max-width: 100%;
    }

    .page-8k8-com__steps-list {
      list-style: none;
      padding: 0;
      margin: 40px auto 0;
      max-width: 800px;
      text-align: left;
    }

    .page-8k8-com__step-item {
      background-color: var(--page-8k8-com-card-background);
      border-left: 5px solid var(--page-8k8-com-primary-color);
      margin-bottom: 20px;
      padding: 20px 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      display: flex;
      align-items: center;
      box-sizing: border-box;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word; /* Ensure text wraps */
    }

    .page-8k8-com__step-number {
      font-size: 2em;
      font-weight: bold;
      color: var(--page-8k8-com-primary-color);
      margin-right: 20px;
      flex-shrink: 0;
    }

    .page-8k8-com__step-content h3 {
      margin-top: 0;
      color: var(--page-8k8-com-primary-color);
      font-size: 1.3em;
    }

    .page-8k8-com__step-content p {
      margin-bottom: 0;
      color: var(--page-8k8-com-text-color);
    }

    /* Floating Register/Login Buttons */
    .page-8k8-com__floating-buttons {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 15px;
        z-index: 1000;
        pointer-events: none; /* Allow clicks to pass through if not on button */
    }

    .page-8k8-com__floating-button {
        display: block; /* Ensure it takes up space */
        padding: 12px 25px;
        background-color: var(--page-8k8-com-accent-color);
        color: #ffffff;
        text-decoration: none;
        border-radius: 30px;
        font-weight: bold;
        font-size: 1.1em;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s ease, transform 0.2s ease;
        pointer-events: auto; /* Re-enable clicks for the button itself */
        white-space: nowrap; /* Prevent text wrapping */
    }

    .page-8k8-com__floating-button--login {
        background-color: var(--page-8k8-com-primary-color);
    }

    .page-8k8-com__floating-button:hover {
        background-color: #218838;
        transform: translateY(-3px);
    }
    .page-8k8-com__floating-button--login:hover {
        background-color: #0056b3;
    }

    /* FAQ Section */
    .page-8k8-com__faq-list {
      max-width: 800px;
      margin: 40px auto;
      text-align: left;
      list-style: none;
      padding: 0;
    }

    .page-8k8-com__faq-item {
      background-color: var(--page-8k8-com-card-background);
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #f1f1f1;
      border-bottom: 1px solid var(--page-8k8-com-border-color);
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8-com__faq-question:hover {
      background-color: #e9e9e9;
    }

    .page-8k8-com__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-8k8-com-text-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-com__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-8k8-com-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
      line-height: 1; /* Adjust line height to center +/- */
      width: 20px; /* Fixed width for consistent alignment */
      text-align: center;
    }

    .page-8k8-com__faq-item.active .page-8k8-com__faq-toggle {
      transform: rotate(45deg); /* Plus sign rotates to form an 'x' or 'minus' visually */
    }

    .page-8k8-com__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: var(--page-8k8-com-text-color);
    }

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

    /* General responsive adjustments */
    @media (max-width: 768px) {
      .page-8k8-com__container {
        padding: 15px;
      }

      .page-8k8-com__hero-title {
        font-size: 2.5em;
      }

      .page-8k8-com__hero-subtitle {
        font-size: 1.2em;
      }

      .page-8k8-com__button {
        padding: 12px 20px;
        font-size: 1em;
        margin: 5px;
      }

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

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

      .page-8k8-com__card {
        padding: 25px;
      }

      .page-8k8-com__card-title {
        font-size: 1.3em;
      }

      .page-8k8-com__steps-list {
        margin-top: 30px;
      }

      .page-8k8-com__step-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-com__step-number {
        margin-bottom: 10px;
        margin-right: 0;
        font-size: 1.8em;
      }

      .page-8k8-com__faq-question {
        padding: 15px 20px;
      }

      .page-8k8-com__faq-question h3 {
        font-size: 1.1em;
      }

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

      .page-8k8-com__floating-buttons {
          flex-direction: column;
          bottom: 15px;
          gap: 10px;
      }

      .page-8k8-com__floating-button {
          width: 200px; /* Fixed width for mobile buttons */
          text-align: center;
          padding: 10px 15px;
      }

      /* Image responsiveness */
      .page-8k8-com__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        margin-left: auto !important;
        margin-right: auto !important;
      }

      .page-8k8-com__image {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
      }
    }

    /* Further mobile adjustments for very small screens */
    @media (max-width: 480px) {
        .page-8k8-com__hero-title {
            font-size: 2em;
        }
        .page-8k8-com__hero-subtitle {
            font-size: 1em;
        }
        .page-8k8-com__section-title {
            font-size: 1.8em;
        }
        .page-8k8-com__floating-button {
            width: 180px;
            font-size: 0.95em;
        }
    }
  