
    :root {
      --page-8k8-5-primary-color: #e44d26; /* A vibrant orange-red for branding */
      --page-8k8-5-secondary-color: #333;
      --page-8k8-5-accent-color: #ffcc00; /* Gold for highlights */
      --page-8k8-5-text-color-light: #f8f8f8;
      --page-8k8-5-text-color-dark: #222;
      --page-8k8-5-bg-dark: #1a1a1a;
      --page-8k8-5-bg-medium: #2a2a2a;
      --page-8k8-5-bg-light: #3a3a3a;
    }

    .page-8k8-5 {
      font-family: 'Arial', sans-serif;
      color: var(--page-8k8-5-text-color-light);
      background-color: var(--page-8k8-5-bg-dark);
      line-height: 1.6;
    }

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

    .page-8k8-5__hero-section {
      position: relative;
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:casino,gaming,slots,philippines]') no-repeat center center/cover;
      color: var(--page-8k8-5-text-color-light);
      text-align: center;
      padding: 100px 20px;
      padding-top: calc(100px + 10px); /* Add a small top padding for aesthetic spacing, body handles main offset */
      min-height: 500px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      box-sizing: border-box;
    }

    .page-8k8-5__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: var(--page-8k8-5-accent-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-5__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
    }

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

    .page-8k8-5__button:hover {
      background-color: #d13a1e;
      transform: translateY(-3px);
    }

    .page-8k8-5__section {
      padding: 60px 20px;
      text-align: center;
      background-color: var(--page-8k8-5-bg-medium);
      margin-bottom: 20px;
      border-radius: 10px;
    }

    .page-8k8-5__section:nth-of-type(even) {
      background-color: var(--page-8k8-5-bg-dark);
    }

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

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

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

    .page-8k8-5__card {
      background-color: var(--page-8k8-5-bg-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

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

    .page-8k8-5__card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Fixed height for consistency */
    }

    .page-8k8-5__card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .page-8k8-5__card:hover .page-8k8-5__card-image {
      transform: scale(1.05);
    }

    .page-8k8-5__card-content {
      padding: 25px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-8k8-5__card-title {
      font-size: 1.8em;
      color: var(--page-8k8-5-accent-color);
      margin-top: 0;
      margin-bottom: 15px;
    }

    .page-8k8-5__card-description {
      font-size: 1em;
      color: var(--page-8k8-5-text-color-light);
      margin-bottom: 20px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-5__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .page-8k8-5__list-item {
      background-color: var(--page-8k8-5-bg-light);
      padding: 20px;
      border-radius: 8px;
      text-align: left;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box; /* Crucial for responsive width */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-5__list-item strong {
      color: var(--page-8k8-5-primary-color);
      display: block;
      margin-bottom: 5px;
    }

    .page-8k8-5__promo-banner {
      background: linear-gradient(90deg, #e44d26, #ffcc00);
      padding: 40px 20px;
      border-radius: 10px;
      margin-top: 40px;
      color: var(--page-8k8-5-text-color-dark);
    }

    .page-8k8-5__promo-title {
      font-size: 2.2em;
      margin-bottom: 15px;
      color: var(--page-8k8-5-text-color-dark);
    }

    .page-8k8-5__promo-text {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: var(--page-8k8-5-text-color-dark);
    }

    /* FAQ Section */
    .page-8k8-5__faq-section {
      text-align: center;
      padding: 60px 20px;
      background-color: var(--page-8k8-5-bg-medium);
      border-radius: 10px;
    }

    .page-8k8-5__faq-list {
      max-width: 800px;
      margin: 40px auto 0;
      text-align: left;
    }

    .page-8k8-5__faq-item {
      background-color: var(--page-8k8-5-bg-light);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-5__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: var(--page-8k8-5-bg-dark);
      color: var(--page-8k8-5-accent-color);
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8-5__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-8k8-5__faq-question h3 {
      margin: 0;
      pointer-events: none; /* Prevents text from blocking click event */
      color: inherit; /* Ensure h3 inherits color from parent */
    }

    .page-8k8-5__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents icon from blocking click event */
    }

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

    .page-8k8-5__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: var(--page-8k8-5-bg-light);
      color: var(--page-8k8-5-text-color-light);
      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-5__faq-item.active .page-8k8-5__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-8k8-5__cta-section {
      padding: 80px 20px;
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:banner:1920x600:casino,register,bonus]') no-repeat center center/cover;
      color: var(--page-8k8-5-text-color-light);
      text-align: center;
      border-radius: 10px;
    }

    .page-8k8-5__cta-title {
      font-size: 3em;
      margin-bottom: 20px;
      color: var(--page-8k8-5-accent-color);
    }

    .page-8k8-5__cta-text {
      font-size: 1.3em;
      margin-bottom: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-8k8-5__hero-title {
        font-size: 2.5em;
      }

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

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

      .page-8k8-5__grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-5__list {
        grid-template-columns: 1fr;
      }

      .page-8k8-5__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-5__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-5__card-title {
        font-size: 1.5em;
      }

      .page-8k8-5__promo-title {
        font-size: 1.8em;
      }

      .page-8k8-5__promo-text {
        font-size: 1em;
      }

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

      .page-8k8-5__faq-answer {
        padding: 15px 20px;
      }

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

      .page-8k8-5__cta-text {
        font-size: 1.1em;
      }

      .page-8k8-5__card-image-wrapper,
      .page-8k8-5__card-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }
  