
    /* General styles for the page */
    .page-8k8-com-4 {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e;
      line-height: 1.6;
      padding-bottom: 60px; /* Space for sticky footer, if any */
    }

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

    .page-8k8-com-4__section {
      padding: 40px 0;
      text-align: center;
      margin-bottom: 20px;
      background-color: #1a1a2e;
      border-radius: 8px;
    }

    .page-8k8-com-4__section--dark {
      background-color: #0f0e1f;
    }

    .page-8k8-com-4__section-title {
      font-size: 2.5em;
      color: #ffcc00; /* Gold */
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-8k8-com-4__section-subtitle {
      font-size: 1.2em;
      color: #cccccc;
      margin-bottom: 30px;
    }

    /* Hero Section */
    .page-8k8-com-4__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:8k8,casino,login,ph,hero,banner,gaming]') no-repeat center center/cover;
      padding: 10px 20px 80px; /* 10px top for shared header offset */
      color: #ffffff;
      text-align: center;
      min-height: 500px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      position: relative;
      overflow: hidden;
      border-radius: 0;
    }

    .page-8k8-com-4__hero-content {
      max-width: 900px;
      margin-top: 20px;
      position: relative;
      z-index: 2;
    }

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

    .page-8k8-com-4__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #f0f0f0;
    }

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

    .page-8k8-com-4__cta-button {
      background-color: #ffcc00;
      color: #1a1a2e;
      padding: 15px 30px;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: inline-block;
      cursor: pointer;
      border: none;
    }

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

    .page-8k8-com-4__cta-button--secondary {
      background-color: #4a4a6e;
      color: #ffffff;
    }

    .page-8k8-com-4__cta-button--secondary:hover {
      background-color: #3a3a5e;
    }

    /* Floating Login/Register Buttons */
    .page-8k8-com-4__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-8k8-com-4__floating-button {
      background-color: #ffcc00;
      color: #1a1a2e;
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 1em;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-align: center;
      border: none;
      cursor: pointer;
    }

    .page-8k8-com-4__floating-button:hover {
      background-color: #e6b800;
      transform: scale(1.05);
    }

    .page-8k8-com-4__floating-button--login {
      background-color: #4a4a6e;
      color: #ffffff;
    }

    .page-8k8-com-4__floating-button--login:hover {
      background-color: #3a3a5e;
    }

    /* About Section */
    .page-8k8-com-4__about-content {
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
    }

    .page-8k8-com-4__about-text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #cccccc;
    }

    /* Games Section */
    .page-8k8-com-4__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-com-4__game-card {
      background-color: #2a2a4e;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      text-align: left;
    }

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

    .page-8k8-com-4__game-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      background-color: #0f0e1f;
      display: flex;
      justify-content: center;
      align-items: center;
      box-sizing: border-box;
    }

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

    .page-8k8-com-4__game-content {
      padding: 20px;
      flex-grow: 1;
    }

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

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

    /* Promotions Section */
    .page-8k8-com-4__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-com-4__promotion-card {
      background-color: #2a2a4e;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      text-align: left;
    }

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

    .page-8k8-com-4__promotion-image-wrapper {
      width: 100%;
      height: 220px; /* Fixed height */
      overflow: hidden;
      background-color: #0f0e1f;
      display: flex;
      justify-content: center;
      align-items: center;
      box-sizing: border-box;
    }

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

    .page-8k8-com-4__promotion-content {
      padding: 20px;
      flex-grow: 1;
    }

    .page-8k8-com-4__promotion-title {
      font-size: 1.4em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-8k8-com-4__promotion-description {
      font-size: 0.9em;
      color: #cccccc;
      margin-bottom: 15px;
    }

    .page-8k8-com-4__promotion-button {
      background-color: #ffcc00;
      color: #1a1a2e;
      padding: 10px 20px;
      border-radius: 5px;
      font-size: 0.9em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      display: inline-block;
      margin-top: auto; /* Push to bottom */
      cursor: pointer;
      border: none;
    }

    .page-8k8-com-4__promotion-button:hover {
      background-color: #e6b800;
    }

    /* How It Works / Steps Section */
    .page-8k8-com-4__steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-com-4__step-card {
      background-color: #2a2a4e;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      text-align: center;
    }

    .page-8k8-com-4__step-icon {
      font-size: 3em;
      color: #ffcc00;
      margin-bottom: 15px;
    }

    .page-8k8-com-4__step-title {
      font-size: 1.3em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

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

    /* Payment Methods */
    .page-8k8-com-4__payment-methods-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-8k8-com-4__payment-method-item {
      background-color: #2a2a4e;
      border-radius: 8px;
      padding: 15px 25px;
      color: #ffcc00;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      box-sizing: border-box; /* Crucial for mobile responsiveness */
      width: auto; /* Allow natural width */
    }

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

    .page-8k8-com-4__faq-list {
      max-width: 800px;
      margin: 40px auto 0;
      list-style: none;
      padding: 0;
    }

    .page-8k8-com-4__faq-item {
      background-color: #2a2a4e;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      overflow: hidden;
      box-sizing: border-box;
      width: 100%;
    }

    .page-8k8-com-4__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #3a3a5e;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-8k8-com-4__faq-question:hover {
      background-color: #4a4a6e;
    }

    .page-8k8-com-4__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #ffcc00;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-8k8-com-4__faq-toggle {
      font-size: 1.5em;
      color: #ffcc00;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-8k8-com-4__faq-item.active .page-8k8-com-4__faq-toggle {
      transform: rotate(45deg); /* Plus to Minus visual effect */
    }

    .page-8k8-com-4__faq-answer {
      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: #cccccc;
      font-size: 0.95em;
      text-align: left;
    }

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

    /* Providers Section */
    .page-8k8-com-4__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
      justify-content: center;
    }

    .page-8k8-com-4__provider-item {
      background-color: #2a2a4e;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      text-align: center;
      box-sizing: border-box;
    }

    .page-8k8-com-4__provider-image-wrapper {
        width: 100%;
        height: 100px; /* Fixed height for consistency */
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 10px;
        box-sizing: border-box;
    }

    .page-8k8-com-4__provider-image {
        max-width: 100%;
        max-height: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }

    .page-8k8-com-4__provider-name {
      font-weight: bold;
      color: #ffcc00;
      font-size: 1em;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-com-4__container {
        padding: 15px;
      }

      .page-8k8-com-4__section {
        padding: 30px 0;
      }

      .page-8k8-com-4__section-title {
        font-size: 2em;
      }

      .page-8k8-com-4__hero-section {
        padding: 10px 15px 60px;
        min-height: 400px;
      }

      .page-8k8-com-4__hero-title {
        font-size: 2.5em;
      }

      .page-8k8-com-4__hero-description {
        font-size: 1.1em;
      }

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

      .page-8k8-com-4__cta-button {
        padding: 12px 25px;
        width: 100%;
        max-width: 300px;
      }

      .page-8k8-com-4__floating-buttons {
        bottom: 15px;
        right: 15px;
      }

      .page-8k8-com-4__games-grid,
      .page-8k8-com-4__promotions-grid,
      .page-8k8-com-4__steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-8k8-com-4__game-image-wrapper,
      .page-8k8-com-4__promotion-image-wrapper {
        height: 180px;
      }

      .page-8k8-com-4__payment-methods-list {
        flex-direction: column; /* Stack payment methods */
        align-items: center;
        gap: 15px;
      }

      .page-8k8-com-4__payment-method-item {
        width: 100% !important;
        max-width: 250px !important; /* Constrain width for better look */
        padding: 12px 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-com-4__providers-grid {
          grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }

      .page-8k8-com-4__faq-list {
        margin: 30px auto 0;
      }

      .page-8k8-com-4__faq-item {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
      }

      .page-8k8-com-4__faq-question {
          padding: 12px 15px;
      }

      .page-8k8-com-4__faq-question h3 {
          font-size: 1.1em;
          word-break: break-word !important;
      }

      .page-8k8-com-4__faq-answer {
          padding: 15px 15px !important;
          word-wrap: break-word !important;
          overflow-wrap: break-word !important;
      }

      /* Image responsiveness for all images */
      .page-8k8-com-4 img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-8k8-com-4__game-image-wrapper,
      .page-8k8-com-4__promotion-image-wrapper,
      .page-8k8-com-4__provider-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

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

      .page-8k8-com-4__section-title {
        font-size: 1.8em;
      }
    }
  