.page-kuya-kim-laughing {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-top: 10px; /* Small decorative padding, assuming body already has --header-offset */
    }

    .page-kuya-kim-laughing__hero-section {
      position: relative;
      width: 100%;
      height: 60vh;
      min-height: 350px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-kuya-kim-laughing__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }

    .page-kuya-kim-laughing__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
      z-index: -1;
    }

    .page-kuya-kim-laughing__hero-content {
      z-index: 1;
      max-width: 800px;
      padding: 0 15px;
    }

    .page-kuya-kim-laughing__hero-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: #ffcc00;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-kuya-kim-laughing__hero-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-kuya-kim-laughing__button-group {
      display: flex;
      gap: 15px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .page-kuya-kim-laughing__button {
      display: inline-block;
      padding: 12px 25px;
      background-color: #ffcc00;
      color: #333;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-kuya-kim-laughing__button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-kuya-kim-laughing__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      margin-bottom: 25px;
    }

    .page-kuya-kim-laughing__section-title {
      font-size: 2em;
      color: #0056b3;
      text-align: center;
      margin-bottom: 30px;
    }

    .page-kuya-kim-laughing__content-text {
      font-size: 1em;
      margin-bottom: 20px;
      text-align: justify;
    }

    .page-kuya-kim-laughing__highlight-text {
      color: #0056b3;
      font-weight: bold;
    }

    .page-kuya-kim-laughing__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-kuya-kim-laughing__game-card {
      background-color: #fefefe;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      text-align: center;
    }

    .page-kuya-kim-laughing__game-card:hover {
      transform: translateY(-5px);
    }

    .page-kuya-kim-laughing__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-kuya-kim-laughing__game-title {
      font-size: 1.3em;
      color: #333;
      margin: 15px 10px 10px;
    }

    .page-kuya-kim-laughing__game-provider {
      font-size: 0.9em;
      color: #666;
      margin-bottom: 15px;
    }

    .page-kuya-kim-laughing__cta-section {
      text-align: center;
      padding: 50px 20px;
      background-color: #0056b3;
      color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      margin-top: 30px;
    }

    .page-kuya-kim-laughing__cta-title {
      font-size: 2.2em;
      margin-bottom: 20px;
      color: #ffcc00;
    }

    .page-kuya-kim-laughing__cta-text {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    @media (max-width: 768px) {
      .page-kuya-kim-laughing__hero-section {
        height: 70vh;
      }

      .page-kuya-kim-laughing__hero-title {
        font-size: 1.8em;
      }

      .page-kuya-kim-laughing__hero-description {
        font-size: 0.9em;
      }

      .page-kuya-kim-laughing__button {
        padding: 10px 20px;
        font-size: 0.9em;
      }

      .page-kuya-kim-laughing__section {
        padding: 25px 15px;
      }

      .page-kuya-kim-laughing__section-title {
        font-size: 1.6em;
      }

      .page-kuya-kim-laughing__content-text {
        font-size: 0.95em;
      }

      .page-kuya-kim-laughing__game-grid {
        grid-template-columns: 1fr;
      }

      .page-kuya-kim-laughing__cta-title {
        font-size: 1.8em;
      }

      .page-kuya-kim-laughing__cta-text {
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-kuya-kim-laughing__hero-section {
        height: 80vh;
      }

      .page-kuya-kim-laughing__hero-title {
        font-size: 1.5em;
      }

      .page-kuya-kim-laughing__button-group {
        flex-direction: column;
        gap: 10px;
      }

      .page-kuya-kim-laughing__button {
        width: 100%;
      }

      .page-kuya-kim-laughing__section {
        padding: 20px 10px;
      }

      .page-kuya-kim-laughing__cta-section {
        padding: 30px 15px;
      }
    }