
    /* CSS styles for page-keo5 */
    :root {
      --page-keo5-primary-color: #e44d26; /* A vibrant red/orange for betting */
      --page-keo5-secondary-color: #333;
      --page-keo5-accent-color: #ffcc00; /* Gold for highlights */
      --page-keo5-background-light: #f5f5f5;
      --page-keo5-text-color-dark: #333;
      --page-keo5-text-color-light: #fff;
      --page-keo5-border-color: #ddd;
    }

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

    .page-keo5__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    /* Hero Section */
    .page-keo5__hero-section {
      position: relative;
      width: 100%;
      min-height: 300px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: var(--page-keo5-text-color-light);
      overflow: hidden;
      padding-top: 10px; /* For fixed header */
    }

    .page-keo5__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.6); /* Darken background image for text readability */
    }

    .page-keo5__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.4);
      border-radius: 8px;
      max-width: 90%;
    }

    .page-keo5__hero-title {
      font-size: 2.5em;
      margin-bottom: 10px;
      color: var(--page-keo5-accent-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-keo5__hero-description {
      font-size: 1.2em;
      margin-bottom: 20px;
      max-width: 700px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    /* Floating Promotion Button */
    .page-keo5__floating-promo-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-keo5-primary-color);
      color: var(--page-keo5-text-color-light);
      padding: 15px 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);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      cursor: pointer; /* Indicate it's clickable, even if not an <a> */
      border: none; /* Make it look like a button */
    }

    .page-keo5__floating-promo-button:hover {
      background-color: #c0392b;
      transform: translateY(-3px);
    }

    /* Section Styling */
    .page-keo5__section {
      background-color: var(--page-keo5-text-color-light);
      padding: 40px 20px;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .page-keo5__section-title {
      font-size: 2em;
      color: var(--page-keo5-primary-color);
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-keo5__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: var(--page-keo5-accent-color);
      border-radius: 2px;
    }

    /* Game Categories */
    .page-keo5__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      padding: 0 20px;
    }

    .page-keo5__game-card {
      background-color: var(--page-keo5-background-light);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
    }

    .page-keo5__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

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

    .page-keo5__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-keo5__game-content {
      padding: 15px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-keo5__game-title {
      font-size: 1.3em;
      color: var(--page-keo5-primary-color);
      margin-bottom: 10px;
    }

    .page-keo5__game-description {
      font-size: 0.95em;
      color: var(--page-keo5-secondary-color);
      margin-bottom: 15px;
    }

    /* Call to Action */
    .page-keo5__cta-section {
      text-align: center;
      background: linear-gradient(135deg, var(--page-keo5-primary-color), #f39c12);
      color: var(--page-keo5-text-color-light);
      padding: 50px 20px;
      border-radius: 8px;
      margin-bottom: 20px;
    }

    .page-keo5__cta-title {
      font-size: 2.2em;
      margin-bottom: 15px;
      color: var(--page-keo5-accent-color);
    }

    .page-keo5__cta-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-keo5__cta-button {
      background-color: var(--page-keo5-accent-color);
      color: var(--page-keo5-primary-color);
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: inline-block;
      cursor: pointer;
      border: none;
    }

    .page-keo5__cta-button:hover {
      background-color: #ffd700;
      transform: translateY(-3px);
    }

    /* FAQ Section */
    .page-keo5__faq-section {
      padding: 40px 20px;
      background-color: var(--page-keo5-text-color-light);
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .page-keo5__faq-item {
      border-bottom: 1px solid var(--page-keo5-border-color);
      margin-bottom: 10px;
    }

    .page-keo5__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-keo5__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      user-select: none;
      color: var(--page-keo5-text-color-dark);
      transition: color 0.3s ease;
    }

    .page-keo5__faq-question:hover {
      color: var(--page-keo5-primary-color);
    }

    .page-keo5__faq-question h3 {
      font-size: 1.1em;
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from interfering with click event */
    }

    .page-keo5__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from interfering with click event */
    }

    .page-keo5__faq-item.active .page-keo5__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-keo5__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: var(--page-keo5-secondary-color);
    }

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

    /* General Content */
    .page-keo5__content-block {
      padding: 20px;
      margin-bottom: 20px;
      background-color: var(--page-keo5-text-color-light);
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .page-keo5__content-block h2 {
      color: var(--page-keo5-primary-color);
      margin-bottom: 15px;
      font-size: 1.8em;
    }

    .page-keo5__content-block p {
      margin-bottom: 1em;
    }

    .page-keo5__content-block ul {
      list-style-type: disc;
      padding-left: 20px;
      margin-bottom: 1em;
    }

    .page-keo5__content-block ol {
      list-style-type: decimal;
      padding-left: 20px;
      margin-bottom: 1em;
    }

    .page-keo5__content-block li {
      margin-bottom: 0.5em;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-keo5__container {
        padding: 10px;
      }

      .page-keo5__hero-section {
        min-height: 250px;
        padding-top: 10px; /* For fixed header */
      }

      .page-keo5__hero-title {
        font-size: 1.8em;
      }

      .page-keo5__hero-description {
        font-size: 1em;
      }

      .page-keo5__floating-promo-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-keo5__section-title {
        font-size: 1.8em;
      }

      .page-keo5__game-grid {
        grid-template-columns: 1fr;
        padding: 0;
      }

      .page-keo5__game-image-wrapper {
          height: 180px;
      }

      .page-keo5__cta-title {
        font-size: 1.8em;
      }

      .page-keo5__cta-description {
        font-size: 0.95em;
      }

      .page-keo5__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-keo5__faq-question h3 {
        font-size: 1em;
      }

      .page-keo5__faq-answer {
        padding: 0 10px;
      }

      .page-keo5__faq-item.active .page-keo5__faq-answer {
        padding: 15px 10px !important;
      }

      /* Image responsiveness for mobile */
      .page-keo5__hero-background,
      .page-keo5__game-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-keo5__game-image-wrapper {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
    }
  