
    :root {
      --primary-color: #e44d26; /* A strong, engaging color */
      --secondary-color: #f7931e; /* A complementary color */
      --text-color-dark: #333;
      --text-color-light: #fff;
      --bg-dark: #222;
      --bg-light: #f4f4f4;
      --border-color: #ddd;
    }

    /* Base styles for the page content */
    .page-thabet-88-cx {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--text-color-dark);
      background-color: var(--bg-light);
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-thabet-88-cx__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-thabet-88-cx__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-thabet-88-cx__section--dark {
      background-color: var(--bg-dark);
      color: var(--text-color-light);
    }

    .page-thabet-88-cx__section-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: var(--primary-color);
      position: relative;
      padding-bottom: 10px;
    }

    .page-thabet-88-cx__section-title--light {
      color: var(--secondary-color);
    }

    .page-thabet-88-cx__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: var(--primary-color);
    }

    .page-thabet-88-cx__section-title--light::after {
      background-color: var(--secondary-color);
    }

    .page-thabet-88-cx__button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--text-color-light);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-thabet-88-cx__button:hover {
      background-color: #c0392b; /* Darker primary */
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-thabet-88-cx__hero-section {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('[GALLERY:hero:1920x1080:betting,mobile,banner,thabet88]') no-repeat center center/cover;
      color: var(--text-color-light);
      padding: 10px 0 80px 0; /* 10px for top decorative padding, assuming body has header offset */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
      text-align: center;
      position: relative;
    }
    
    .page-thabet-88-cx__hero-content {
      max-width: 800px;
      padding: 20px;
    }

    .page-thabet-88-cx__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: var(--secondary-color);
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

    .page-thabet-88-cx__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      font-weight: 300;
    }

    /* About Section */
    .page-thabet-88-cx__about-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 30px;
      text-align: left;
    }

    .page-thabet-88-cx__about-image-wrapper {
      flex: 1;
      min-width: 300px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-thabet-88-cx__about-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }

    .page-thabet-88-cx__about-text {
      flex: 2;
      min-width: 300px;
    }

    .page-thabet-88-cx__about-text h2 {
      text-align: center;
      margin-bottom: 20px;
    }

    /* Products Section */
    .page-thabet-88-cx__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-thabet-88-cx__product-card {
      background-color: var(--text-color-light);
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-thabet-88-cx__product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    }

    .page-thabet-88-cx__product-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 200px; /* Ensure images have a decent display area */
    }

    .page-thabet-88-cx__product-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .page-thabet-88-cx__product-info {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-thabet-88-cx__product-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: var(--primary-color);
    }

    .page-thabet-88-cx__product-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
    }

    /* Promotions Section */
    .page-thabet-88-cx__promotion-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
      list-style: none;
      padding: 0;
    }

    .page-thabet-88-cx__promotion-item {
      background-color: var(--text-color-light);
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      padding: 25px;
      text-align: left;
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Crucial for mobile responsiveness */
    }

    .page-thabet-88-cx__promotion-item:hover {
      transform: translateY(-5px);
    }

    .page-thabet-88-cx__promotion-title {
      font-size: 1.4em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-thabet-88-cx__promotion-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 15px;
    }

    /* Features Section */
    .page-thabet-88-cx__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
      list-style: none;
      padding: 0;
    }

    .page-thabet-88-cx__feature-item {
      background-color: var(--bg-dark); /* Dark background for features */
      color: var(--text-color-light);
      border-radius: 8px;
      padding: 30px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      transition: transform 0.3s ease, background-color 0.3s ease;
      box-sizing: border-box; /* Crucial for mobile responsiveness */
    }

    .page-thabet-88-cx__feature-item:hover {
      transform: translateY(-5px);
      background-color: #333;
    }

    .page-thabet-88-cx__feature-title {
      font-size: 1.3em;
      color: var(--secondary-color);
      margin-top: 15px;
      margin-bottom: 10px;
    }

    .page-thabet-88-cx__feature-description {
      font-size: 0.9em;
      opacity: 0.9;
    }

    .page-thabet-88-cx__feature-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 200px;
    }
    .page-thabet-88-cx__feature-image {
        max-width: 100%;
        height: auto;
        border-radius: 5px;
    }

    /* Providers & Payments Section */
    .page-thabet-88-cx__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-top: 30px;
      align-items: center;
      justify-items: center;
    }

    .page-thabet-88-cx__logo-item {
      background-color: var(--text-color-light);
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 80px;
      box-sizing: border-box; /* Crucial for mobile responsiveness */
    }

    .page-thabet-88-cx__logo-image {
      max-width: 100px;
      height: auto;
      display: block;
    }

    /* FAQ Section */
    .page-thabet-88-cx__faq-section {
      text-align: left;
    }

    .page-thabet-88-cx__faq-list {
      margin-top: 30px;
      list-style: none;
      padding: 0;
    }

    .page-thabet-88-cx__faq-item {
      background-color: var(--text-color-light);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      box-sizing: border-box; /* Crucial for mobile responsiveness */
    }

    .page-thabet-88-cx__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #f9f9f9;
      border-bottom: 1px solid var(--border-color);
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-thabet-88-cx__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-thabet-88-cx__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--text-color-dark);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-thabet-88-cx__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      font-weight: bold;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-thabet-88-cx__faq-item.active .page-thabet-88-cx__faq-toggle {
      transform: rotate(45deg); /* Change + to X (or - if preferred) */
    }

    .page-thabet-88-cx__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: #555;
    }

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

    /* Floating Buttons */
    .page-thabet-88-cx__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-thabet-88-cx__floating-button {
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--primary-color);
      color: var(--text-color-light);
      padding: 12px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      min-width: 120px; /* Ensure buttons are wide enough */
    }

    .page-thabet-88-cx__floating-button:hover {
      background-color: #c0392b;
      transform: translateY(-2px);
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .page-thabet-88-cx__section {
        padding: 30px 0;
      }

      .page-thabet-88-cx__section-title {
        font-size: 2em;
      }

      .page-thabet-88-cx__hero-title {
        font-size: 2.5em;
      }

      .page-thabet-88-cx__hero-subtitle {
        font-size: 1.2em;
      }

      .page-thabet-88-cx__about-content {
        flex-direction: column;
        text-align: center;
      }

      .page-thabet-88-cx__about-text {
        order: 2;
      }

      .page-thabet-88-cx__about-image-wrapper {
        order: 1;
        margin-bottom: 20px;
      }

      /* List items mobile responsive */
      .page-thabet-88-cx__promotion-list,
      .page-thabet-88-cx__features-grid,
      .page-thabet-88-cx__faq-list {
        display: flex;
        flex-direction: column;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        gap: 15px; /* Adjust gap for mobile */
      }

      .page-thabet-88-cx__promotion-item,
      .page-thabet-88-cx__feature-item,
      .page-thabet-88-cx__faq-item,
      .page-thabet-88-cx__logo-item,
      .page-thabet-88-cx__product-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px; /* Adjust padding for mobile */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-thabet-88-cx__faq-answer {
        padding: 0 10px; /* Adjust padding for mobile */
      }

      .page-thabet-88-cx__faq-item.active .page-thabet-88-cx__faq-answer {
        padding: 15px 10px !important; /* Adjust padding for mobile */
      }

      .page-thabet-88-cx__product-grid,
      .page-thabet-88-cx__logo-grid {
        grid-template-columns: 1fr;
      }

      /* Image responsive */
      .page-thabet-88-cx__about-image,
      .page-thabet-88-cx__product-image,
      .page-thabet-88-cx__feature-image,
      .page-thabet-88-cx__logo-image {
          max-width: 100% !important;
          height: auto !important;
      }
      .page-thabet-88-cx__about-image-wrapper,
      .page-thabet-88-cx__product-image-wrapper,
      .page-thabet-88-cx__feature-image-wrapper {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }

      .page-thabet-88-cx__floating-buttons {
        bottom: 15px;
        right: 15px;
      }

      .page-thabet-88-cx__floating-button {
        padding: 10px 15px;
        min-width: 100px;
        font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
        .page-thabet-88-cx__hero-title {
            font-size: 2em;
        }
        .page-thabet-88-cx__hero-subtitle {
            font-size: 1em;
        }
        .page-thabet-88-cx__section-title {
            font-size: 1.8em;
        }
    }
  