
    .page-f8ebt {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0;
      background-color: #1a1a1a;
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-f8ebt__highlight {
      color: #ffcc00;
      font-weight: bold;
    }

    .page-f8ebt__section-title {
      font-size: 2.5em;
      color: #e44d26;
      text-align: center;
      margin-bottom: 20px;
      padding: 0 15px;
      line-height: 1.2;
    }

    .page-f8ebt__section-description {
      font-size: 1.1em;
      text-align: center;
      max-width: 800px;
      margin: 0 auto 40px auto;
      padding: 0 15px;
      color: #ccc;
    }

    /* Hero Section */
    .page-f8ebt__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 10px 20px 60px 20px; /* 10px top padding for header offset */
      background: linear-gradient(135deg, #1a1a1a, #333333);
      min-height: 80vh;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .page-f8ebt__hero-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-top: 40px;
    }

    .page-f8ebt__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 10px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

    .page-f8ebt__hero-content {
      max-width: 900px;
      z-index: 1;
    }

    .page-f8ebt__hero-title {
      font-size: 3.2em;
      color: #f0f0f0;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .page-f8ebt__hero-description {
      font-size: 1.3em;
      color: #ccc;
      margin-bottom: 40px;
    }

    .page-f8ebt__hero-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    .page-f8ebt__button {
      padding: 15px 30px;
      font-size: 1.1em;
      font-weight: bold;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      display: inline-block;
      text-align: center;
      box-sizing: border-box;
    }

    .page-f8ebt__button--primary {
      background-color: #e44d26;
      color: #ffffff;
    }

    .page-f8ebt__button--primary:hover {
      background-color: #ff6a3c;
      transform: translateY(-2px);
    }

    .page-f8ebt__button--secondary {
      background-color: #333;
      color: #ffffff;
      border: 2px solid #e44d26;
    }

    .page-f8ebt__button--secondary:hover {
      background-color: #e44d26;
      transform: translateY(-2px);
    }

    /* Game Categories */
    .page-f8ebt__game-categories,
    .page-f8ebt__promotions,
    .page-f8ebt__why-choose,
    .page-f8ebt__providers,
    .page-f8ebt__payment-methods,
    .page-f8ebt__faq,
    .page-f8ebt__cta-bottom {
      padding: 60px 20px;
      margin-bottom: 20px;
      background-color: #2a2a2a;
      border-radius: 10px;
      margin: 40px auto;
      max-width: 1200px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .page-f8ebt__category-grid,
    .page-f8ebt__promo-grid,
    .page-f8ebt__benefits-grid,
    .page-f8ebt__provider-grid,
    .page-f8ebt__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-content: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-f8ebt__category-item,
    .page-f8ebt__promo-item,
    .page-f8ebt__benefit-item {
      background-color: #333;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      padding: 20px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-f8ebt__category-item:hover,
    .page-f8ebt__promo-item:hover,
    .page-f8ebt__benefit-item:hover {
      transform: translateY(-5px);
    }

    .page-f8ebt__category-image,
    .page-f8ebt__promo-image,
    .page-f8ebt__benefit-icon {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
      object-fit: cover;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-f8ebt__benefit-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
    }

    .page-f8ebt__category-title,
    .page-f8ebt__promo-title,
    .page-f8ebt__benefit-title {
      font-size: 1.5em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-f8ebt__category-text,
    .page-f8ebt__promo-text,
    .page-f8ebt__benefit-text {
      font-size: 1em;
      color: #ccc;
    }

    /* Promotions Section specific */
    .page-f8ebt__promotions-cta {
      text-align: center;
      margin-top: 40px;
    }

    /* Providers & Payments */
    .page-f8ebt__provider-grid,
    .page-f8ebt__payment-grid {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
    }

    .page-f8ebt__provider-logo,
    .page-f8ebt__payment-logo {
      max-width: 100%;
      height: auto;
      object-fit: contain;
      padding: 10px;
      background-color: #444;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-f8ebt__provider-logo:hover,
    .page-f8ebt__payment-logo:hover {
      transform: scale(1.05);
    }

    /* FAQ Section */
    .page-f8ebt__faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-f8ebt__faq-item {
      background-color: #333;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-f8ebt__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #e44d26;
      color: #ffffff;
      font-weight: bold;
      border-radius: 8px;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-f8ebt__faq-question:hover {
      background-color: #ff6a3c;
    }

    .page-f8ebt__faq-heading {
      margin: 0;
      font-size: 1.2em;
      pointer-events: none;
    }

    .page-f8ebt__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none;
      transition: transform 0.3s ease;
    }

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

    .page-f8ebt__faq-answer p {
      margin: 0;
      padding-bottom: 15px;
      font-size: 1em;
    }

    .page-f8ebt__faq-item.active .page-f8ebt__faq-answer {
      max-height: 2000px !important;
      padding: 20px !important;
      opacity: 1;
    }

    .page-f8ebt__faq-item.active .page-f8ebt__faq-toggle {
      transform: rotate(45deg);
    }

    /* Call to Action Bottom */
    .page-f8ebt__cta-bottom {
      text-align: center;
      padding-bottom: 80px;
    }

    .page-f8ebt__cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    /* Floating Register/Login Buttons */
    .page-f8ebt__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 15px;
      background-color: rgba(26, 26, 26, 0.95);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      gap: 10px;
    }

    .page-f8ebt__floating-button {
      flex: 1;
      padding: 12px 0;
      font-size: 1.1em;
      font-weight: bold;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-f8ebt__floating-button--register {
      background-color: #e44d26;
      color: #ffffff;
    }

    .page-f8ebt__floating-button--register:hover {
      background-color: #ff6a3c;
    }

    .page-f8ebt__floating-button--login {
      background-color: #333;
      color: #ffffff;
      border: 1px solid #e44d26;
    }

    .page-f8ebt__floating-button--login:hover {
      background-color: #e44d26;
      border-color: #e44d26;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-f8ebt__hero-title {
        font-size: 2.8em;
      }
      .page-f8ebt__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-f8ebt__hero-section {
        padding-left: 15px;
        padding-right: 15px;
      }
      .page-f8ebt__hero-title {
        font-size: 2.2em;
      }
      .page-f8ebt__hero-description {
        font-size: 1.1em;
      }
      .page-f8ebt__hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
      }
      .page-f8ebt__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
      }

      .page-f8ebt__section-title {
        font-size: 1.8em;
      }
      .page-f8ebt__section-description {
        font-size: 1em;
      }

      /* List items responsive */
      .page-f8ebt__category-grid,
      .page-f8ebt__promo-grid,
      .page-f8ebt__benefits-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
      }

      .page-f8ebt__category-item,
      .page-f8ebt__promo-item,
      .page-f8ebt__benefit-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px;
      }

      .page-f8ebt__provider-grid,
      .page-f8ebt__payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        padding: 0 10px;
      }

      .page-f8ebt__provider-logo,
      .page-f8ebt__payment-logo {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-f8ebt__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-f8ebt__faq-question {
        padding: 15px;
      }
      .page-f8ebt__faq-heading {
        font-size: 1.1em;
      }
      .page-f8ebt__faq-answer {
        padding: 0 15px;
      }
      .page-f8ebt__faq-item.active .page-f8ebt__faq-answer {
        padding: 15px !important;
      }
      .page-f8ebt__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-f8ebt__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
      }
    }

    @media (max-width: 480px) {
      .page-f8ebt__hero-title {
        font-size: 1.8em;
      }
      .page-f8ebt__section-title {
        font-size: 1.5em;
      }
      .page-f8ebt__hero-section,
      .page-f8ebt__game-categories,
      .page-f8ebt__promotions,
      .page-f8ebt__why-choose,
      .page-f8ebt__providers,
      .page-f8ebt__payment-methods,
      .page-f8ebt__faq,
      .page-f8ebt__cta-bottom {
        padding-left: 10px;
        padding-right: 10px;
      }
      .page-f8ebt__floating-buttons {
        padding: 8px 10px;
      }
      .page-f8ebt__floating-button {
        font-size: 1em;
        padding: 10px 0;
      }
    }
  