.page-kuya-kim-tweet {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-top: var(--header-offset, 10px); /* Adjusting for header, default 10px if var is not set */
    }
    .page-kuya-kim-tweet__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      margin-bottom: 20px;
    }
    .page-kuya-kim-tweet__section--dark {
      background-color: #2c3e50;
      color: #ecf0f1;
    }
    .page-kuya-kim-tweet__section-title {
      text-align: center;
      color: #2c3e50;
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
    }
    .page-kuya-kim-tweet__section--dark .page-kuya-kim-tweet__section-title {
      color: #ecf0f1;
    }
    .page-kuya-kim-tweet__hero-section {
      position: relative;
      width: 100%;
      height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      padding: 10px; /* Small padding as body already has offset */
      box-sizing: border-box;
    }
    .page-kuya-kim-tweet__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }
    .page-kuya-kim-tweet__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }
    .page-kuya-kim-tweet__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 20px;
    }
    .page-kuya-kim-tweet__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      color: #f39c12; /* Brand color */
    }
    .page-kuya-kim-tweet__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }
    .page-kuya-kim-tweet__cta-button {
      display: inline-block;
      background-color: #f39c12;
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }
    .page-kuya-kim-tweet__cta-button:hover {
      background-color: #e67e22;
    }

    .page-kuya-kim-tweet__intro-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }
    .page-kuya-kim-tweet__intro-item {
      background-color: #f2f2f2;
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    }
    .page-kuya-kim-tweet__intro-item-icon {
      margin-bottom: 15px;
    }
    .page-kuya-kim-tweet__intro-item-icon img {
      max-width: 200px;
      height: auto;
      border-radius: 5px;
    }
    .page-kuya-kim-tweet__intro-item h3 {
      color: #2c3e50;
      font-size: 1.5em;
      margin-bottom: 10px;
    }
    .page-kuya-kim-tweet__intro-item p {
      color: #555;
    }

    .page-kuya-kim-tweet__quick-links-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 15px;
      margin-top: 30px;
    }
    .page-kuya-kim-tweet__quick-link-button {
      background-color: #3498db;
      color: #fff;
      padding: 12px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      text-align: center;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }
    .page-kuya-kim-tweet__quick-link-button:hover {
      background-color: #2980b9;
    }

    .page-kuya-kim-tweet__game-categories {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }
    .page-kuya-kim-tweet__game-card {
      background-color: #f2f2f2;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      width: 300px;
      text-align: center;
      transition: transform 0.3s ease;
    }
    .page-kuya-kim-tweet__game-card:hover {
      transform: translateY(-5px);
    }
    .page-kuya-kim-tweet__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    .page-kuya-kim-tweet__game-card-content {
      padding: 20px;
    }
    .page-kuya-kim-tweet__game-card-title {
      font-size: 1.4em;
      color: #2c3e50;
      margin-bottom: 10px;
    }
    .page-kuya-kim-tweet__game-card-description {
      font-size: 0.9em;
      color: #666;
      margin-bottom: 15px;
    }
    .page-kuya-kim-tweet__game-card-button {
      background-color: #f39c12;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }
    .page-kuya-kim-tweet__game-card-button:hover {
      background-color: #e67e22;
    }

    .page-kuya-kim-tweet__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }
    .page-kuya-kim-tweet__promo-card {
      background-color: #e74c3c;
      color: #fff;
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      position: relative;
      overflow: hidden;
    }
    .page-kuya-kim-tweet__promo-card h3 {
      font-size: 1.8em;
      margin-bottom: 10px;
    }
    .page-kuya-kim-tweet__promo-card p {
      margin-bottom: 20px;
      font-size: 1.1em;
    }
    .page-kuya-kim-tweet__promo-card .page-kuya-kim-tweet__cta-button {
      background-color: #fff;
      color: #e74c3c;
    }
    .page-kuya-kim-tweet__promo-card .page-kuya-kim-tweet__cta-button:hover {
      background-color: #f2f2f2;
    }

    .page-kuya-kim-tweet__security-features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }
    .page-kuya-kim-tweet__security-item {
      background-color: #f2f2f2;
      padding: 20px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    }
    .page-kuya-kim-tweet__security-item img {
      max-width: 200px;
      height: auto;
      margin-bottom: 15px;
      border-radius: 5px;
    }
    .page-kuya-kim-tweet__security-item h3 {
      color: #2c3e50;
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-kuya-kim-tweet__payment-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 20px;
    }
    .page-kuya-kim-tweet__payment-provider-logo {
      max-width: 120px;
      height: auto;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: filter 0.3s ease, opacity 0.3s ease;
    }
    .page-kuya-kim-tweet__payment-provider-logo:hover {
      filter: grayscale(0%);
      opacity: 1;
    }
    .page-kuya-kim-tweet__customer-support {
      text-align: center;
      margin-top: 30px;
    }
    .page-kuya-kim-tweet__customer-support p {
      font-size: 1.1em;
      margin-bottom: 15px;
    }
    .page-kuya-kim-tweet__customer-support-btn {
      background-color: #2ecc71;
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }
    .page-kuya-kim-tweet__customer-support-btn:hover {
      background-color: #27ae60;
    }

    .page-kuya-kim-tweet__faq-item {
      background-color: #f9f9f9;
      border: 1px solid #ddd;
      margin-bottom: 10px;
      border-radius: 5px;
      overflow: hidden;
    }
    .page-kuya-kim-tweet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #eee;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }
    .page-kuya-kim-tweet__faq-question:hover {
      background-color: #e0e0e0;
    }
    .page-kuya-kim-tweet__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #333;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }
    .page-kuya-kim-tweet__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #555;
      pointer-events: none; /* Prevent span from blocking click event */
      transition: transform 0.3s ease;
    }
    .page-kuya-kim-tweet__faq-item.active .page-kuya-kim-tweet__faq-toggle {
      transform: rotate(45deg);
    }
    .page-kuya-kim-tweet__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: #666;
    }
    .page-kuya-kim-tweet__faq-item.active .page-kuya-kim-tweet__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-kuya-kim-tweet__blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }
    .page-kuya-kim-tweet__blog-card {
      background-color: #f2f2f2;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }
    .page-kuya-kim-tweet__blog-card:hover {
      transform: translateY(-5px);
    }
    .page-kuya-kim-tweet__blog-card-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }
    .page-kuya-kim-tweet__blog-card-content {
      padding: 20px;
    }
    .page-kuya-kim-tweet__blog-card-title {
      font-size: 1.4em;
      color: #2c3e50;
      margin-bottom: 10px;
    }
    .page-kuya-kim-tweet__blog-card-excerpt {
      font-size: 0.9em;
      color: #666;
      margin-bottom: 15px;
    }
    .page-kuya-kim-tweet__blog-card-link {
      background-color: #f39c12;
      color: #fff;
      padding: 8px 15px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
      display: inline-block;
    }
    .page-kuya-kim-tweet__blog-card-link:hover {
      background-color: #e67e22;
    }

    /* Floating buttons */
    .page-kuya-kim-tweet__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }
    .page-kuya-kim-tweet__floating-button {
      background-color: #f39c12;
      color: #fff;
      padding: 12px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
      min-width: 120px; /* Ensure button text fits */
    }
    .page-kuya-kim-tweet__floating-button:hover {
      background-color: #e67e22;
      transform: translateY(-2px);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-kuya-kim-tweet__section {
        padding: 30px 15px;
        margin-bottom: 15px;
      }
      .page-kuya-kim-tweet__section-title {
        font-size: 2em;
        margin-bottom: 20px;
      }
      .page-kuya-kim-tweet__hero-section {
        height: 400px;
      }
      .page-kuya-kim-tweet__hero-title {
        font-size: 2.5em;
      }
      .page-kuya-kim-tweet__hero-description {
        font-size: 1em;
      }
      .page-kuya-kim-tweet__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-kuya-kim-tweet__intro-grid, .page-kuya-kim-tweet__quick-links-grid,
      .page-kuya-kim-tweet__game-categories, .page-kuya-kim-tweet__promo-grid,
      .page-kuya-kim-tweet__security-features, .page-kuya-kim-tweet__blog-grid {
        grid-template-columns: 1fr;
        gap: 15px;
      }
      .page-kuya-kim-tweet__game-card, .page-kuya-kim-tweet__blog-card {
        width: 100%;
      }
      .page-kuya-kim-tweet__payment-providers {
        gap: 10px;
      }
      .page-kuya-kim-tweet__payment-provider-logo {
        max-width: 80px;
      }
      .page-kuya-kim-tweet__faq-question {
        padding: 12px 15px;
      }
      .page-kuya-kim-tweet__faq-question h3 {
        font-size: 1.1em;
      }
      .page-kuya-kim-tweet__faq-answer {
        padding: 15px 15px !important; /* Adjusted padding for mobile */
      }
      .page-kuya-kim-tweet__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
      }
      .page-kuya-kim-tweet__floating-button {
        padding: 10px 15px;
        font-size: 0.9em;
        min-width: 100px;
      }
      /* List item responsive requirements */
      .page-kuya-kim-tweet__intro-grid > div,
      .page-kuya-kim-tweet__quick-links-grid > a,
      .page-kuya-kim-tweet__game-categories > div,
      .page-kuya-kim-tweet__promo-grid > div,
      .page-kuya-kim-tweet__security-features > div,
      .page-kuya-kim-tweet__blog-grid > div,
      .page-kuya-kim-tweet__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-kuya-kim-tweet__payment-providers {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 10px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-kuya-kim-tweet__game-card-image, .page-kuya-kim-tweet__blog-card-image {
        max-width: 100%;
        height: auto;
      }
    }

    @media (max-width: 480px) {
      .page-kuya-kim-tweet__hero-title {
        font-size: 2em;
      }
      .page-kuya-kim-tweet__section-title {
        font-size: 1.8em;
      }
    }