
    /* Base styles for the page */
    .page-798-clup {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f5f5f5;
      padding-top: 10px; /* Small padding for hero section, relying on body padding for header offset */
    }

    .page-798-clup__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-798-clup__section-title {
      font-size: 2.5em;
      color: #004d40; /* Dark teal */
      text-align: center;
      margin-bottom: 20px;
      padding-top: 40px;
      font-weight: bold;
    }

    .page-798-clup__section-subtitle {
      font-size: 1.2em;
      color: #555;
      text-align: center;
      margin-bottom: 40px;
    }

    /* Hero Section */
    .page-798-clup__hero-section {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 600px;
      color: #fff;
      text-align: center;
      overflow: hidden;
      padding: 60px 0;
      background: linear-gradient(135deg, #004d40 0%, #00796b 100%); /* Dark teal gradient */
    }

    .page-798-clup__hero-image-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }

    .page-798-clup__hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3; /* Slightly transparent to let gradient show */
      max-width: 100%; /* Responsive image */
    }

    .page-798-clup__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      padding: 20px;
    }

    .page-798-clup__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      line-height: 1.2;
      font-weight: bold;
      color: #ffffff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-798-clup__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-798-clup__hero-actions {
      display: flex;
      gap: 20px;
      justify-content: center;
    }

    .page-798-clup__primary-button,
    .page-798-clup__secondary-button {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .page-798-clup__primary-button {
      background-color: #ff9800; /* Orange */
      color: #fff;
      border: 2px solid #ff9800;
    }

    .page-798-clup__primary-button:hover {
      background-color: #e68900;
      border-color: #e68900;
      transform: translateY(-2px);
    }

    .page-798-clup__secondary-button {
      background-color: transparent;
      color: #fff;
      border: 2px solid #fff;
    }

    .page-798-clup__secondary-button:hover {
      background-color: rgba(255, 255, 255, 0.2);
      transform: translateY(-2px);
    }

    /* About Section */
    .page-798-clup__about-section {
      padding: 60px 0;
      background-color: #fff;
    }

    .page-798-clup__about-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 40px;
    }

    .page-798-clup__about-text {
      flex: 1;
      min-width: 300px;
    }

    .page-798-clup__about-text p {
      margin-bottom: 15px;
      font-size: 1.1em;
      color: #444;
    }

    .page-798-clup__about-image-wrapper {
      flex: 1;
      min-width: 300px;
      text-align: center;
    }

    .page-798-clup__about-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    /* Game Categories */
    .page-798-clup__game-categories {
      padding: 60px 0;
      background-color: #f0f0f0;
    }

    .page-798-clup__category-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .page-798-clup__category-item {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-798-clup__category-item:hover {
      transform: translateY(-10px);
    }

    .page-798-clup__category-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Responsive image */
    }

    .page-798-clup__category-title {
      font-size: 1.5em;
      color: #004d40;
      margin: 20px 15px 10px;
      font-weight: bold;
    }

    .page-798-clup__category-description {
      font-size: 1em;
      color: #666;
      padding: 0 15px 20px;
    }

    /* Promotions Section */
    .page-798-clup__promotions-section {
      padding: 60px 0;
      background-color: #fff;
    }

    .page-798-clup__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-798-clup__promo-item {
      background-color: #f9f9f9;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-798-clup__promo-item:hover {
      transform: translateY(-5px);
    }

    .page-798-clup__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Responsive image */
    }

    .page-798-clup__promo-title {
      font-size: 1.4em;
      color: #004d40;
      margin: 20px 20px 10px;
      font-weight: bold;
    }

    .page-798-clup__promo-description {
      font-size: 1em;
      color: #666;
      padding: 0 20px 20px;
    }

    .page-798-clup__view-all-promos {
      text-align: center;
      margin-top: 40px;
    }

    .page-798-clup__view-all-promos p {
      font-size: 1.1em;
      color: #004d40;
      font-weight: bold;
    }

    /* Providers Section */
    .page-798-clup__providers-section,
    .page-798-clup__payment-section {
      padding: 60px 0;
      background-color: #f0f0f0;
    }

    .page-798-clup__provider-list,
    .page-798-clup__payment-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      justify-items: center;
    }

    .page-798-clup__provider-item,
    .page-798-clup__payment-item {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      padding: 20px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s ease;
      box-sizing: border-box; /* Crucial for responsive list items */
      min-height: 150px; /* Ensure consistent height */
    }

    .page-798-clup__provider-item:hover,
    .page-798-clup__payment-item:hover {
      transform: translateY(-5px);
    }

    .page-798-clup__provider-logo,
    .page-798-clup__payment-logo {
      max-width: 100%;
      height: auto;
      max-height: 80px; /* Limit logo height */
      object-fit: contain;
      margin-bottom: 10px;
      filter: none; /* Ensure no color filters */
    }

    .page-798-clup__provider-item p,
    .page-798-clup__payment-item p {
      font-size: 1em;
      color: #333;
      font-weight: bold;
    }

    /* Payment Section specific styles */
    .page-798-clup__payment-section {
      background-color: #fff;
    }

    /* FAQ Section */
    .page-798-clup__faq-section {
      padding: 60px 0;
      background-color: #f0f0f0;
    }

    .page-798-clup__faq-list {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-798-clup__faq-item {
      background-color: #fff;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-798-clup__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #004d40; /* Dark teal */
      color: #fff;
      font-weight: bold;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      transition: background-color 0.3s ease;
    }

    .page-798-clup__faq-question:hover {
      background-color: #00695c; /* Slightly lighter teal */
    }

    .page-798-clup__faq-q-text {
      margin: 0;
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from blocking click */
      color: #ffffff; /* Ensure contrast */
    }

    .page-798-clup__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click */
      color: #ffffff; /* Ensure contrast */
      width: 20px; /* Give it a fixed width for consistent alignment */
      text-align: center;
    }

    .page-798-clup__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #fff;
      color: #444;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    .page-798-clup__faq-answer p {
      margin: 0;
      font-size: 1.05em;
      color: #444;
    }

    /* Floating Buttons */
    .page-798-clup__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
    }

    .page-798-clup__floating-button {
      background-color: #ff9800; /* Orange */
      color: #fff;
      border: none;
      padding: 12px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-798-clup__floating-button:hover {
      background-color: #e68900;
      transform: translateY(-3px);
    }

    .page-798-clup__floating-login {
      background-color: #00796b; /* Teal */
    }

    .page-798-clup__floating-login:hover {
      background-color: #00695c;
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .page-798-clup__hero-title {
        font-size: 3em;
      }
      .page-798-clup__section-title {
        font-size: 2em;
      }
      .page-798-clup__category-grid,
      .page-798-clup__promo-grid,
      .page-798-clup__provider-list,
      .page-798-clup__payment-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-798-clup__hero-section {
        min-height: 500px;
        padding: 40px 0;
      }

      .page-798-clup__hero-title {
        font-size: 2.5em;
      }

      .page-798-clup__hero-description {
        font-size: 1.1em;
      }

      .page-798-clup__hero-actions {
        flex-direction: column;
        gap: 15px;
      }

      .page-798-clup__primary-button,
      .page-798-clup__secondary-button {
        width: 80%;
        margin: 0 auto;
      }

      .page-798-clup__about-content {
        flex-direction: column;
      }

      .page-798-clup__section-title {
        font-size: 1.8em;
        padding-top: 20px;
      }

      .page-798-clup__section-subtitle {
        font-size: 1em;
        margin-bottom: 20px;
      }

      /* List items mobile responsive requirements */
      .page-798-clup__category-item,
      .page-798-clup__promo-item,
      .page-798-clup__provider-item,
      .page-798-clup__payment-item,
      .page-798-clup__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important; /* Reset item padding, content inside can have padding */
      }

      .page-798-clup__category-item,
      .page-798-clup__promo-item,
      .page-798-clup__provider-item,
      .page-798-clup__payment-item {
          padding-bottom: 20px !important; /* Adjust padding as needed for card content */
      }

      .page-798-clup__category-grid,
      .page-798-clup__promo-grid,
      .page-798-clup__provider-list,
      .page-798-clup__payment-list,
      .page-798-clup__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important; /* Adjust container padding */
        margin-left: 0 !important;
        margin-right: 0 !important;
        grid-template-columns: 1fr; /* Single column for all grids */
      }

      .page-798-clup__category-description,
      .page-798-clup__promo-description {
          word-wrap: break-word !important;
          overflow-wrap: break-word !important;
          word-break: break-word !important;
      }

      .page-798-clup__faq-question,
      .page-798-clup__faq-answer {
          padding: 15px 20px; /* Smaller padding for mobile FAQ */
      }
      .page-798-clup__faq-item.active .page-798-clup__faq-answer {
          padding: 15px 20px !important;
      }
      .page-798-clup__faq-q-text {
          font-size: 1.1em;
      }
      .page-798-clup__faq-answer p {
          font-size: 0.95em;
      }

      .page-798-clup__floating-buttons {
          bottom: 15px;
          gap: 10px;
      }
      .page-798-clup__floating-button {
          padding: 10px 20px;
          font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-798-clup__hero-title {
        font-size: 2em;
      }
      .page-798-clup__primary-button,
      .page-798-clup__secondary-button {
        width: 90%;
      }
      .page-798-clup__section-title {
        font-size: 1.6em;
      }
      .page-798-clup__floating-buttons {
          width: 90%;
          left: 5%;
          transform: translateX(0);
          justify-content: space-around;
      }
      .page-798-clup__floating-button {
          flex: 1;
          max-width: 48%;
          font-size: 0.95em;
          padding: 10px 15px;
      }
    }
  