
    :root {
      --page-78be-primary-color: #ff4d4d;
      --page-78be-secondary-color: #4CAF50;
      --page-78be-dark-bg: #1a1a1a;
      --page-78be-light-bg: #f5f5f5;
      --page-78be-text-color: #333;
      --page-78be-light-text-color: #fff;
      --page-78be-border-color: #eee;
      --page-78be-accent-color: #007bff;
    }

    /* General styles for the page */
    .page-78be {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-78be-text-color);
      background-color: var(--page-78be-light-bg);
      overflow-x: hidden;
    }

    .page-78be__section-title {
      font-size: 2.5em;
      color: var(--page-78be-dark-bg);
      text-align: center;
      margin-bottom: 20px;
      padding-top: 40px;
      font-weight: bold;
    }

    .page-78be__section-description {
      font-size: 1.1em;
      text-align: center;
      max-width: 800px;
      margin: 0 auto 50px auto;
      color: #666;
    }

    .page-78be__button {
      display: inline-block;
      padding: 12px 30px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      color: var(--page-78be-light-text-color);
      background-color: var(--page-78be-primary-color);
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .page-78be__button:hover {
      background-color: #e63939;
      transform: translateY(-2px);
    }

    .page-78be__button--primary {
      background-color: var(--page-78be-primary-color);
    }

    .page-78be__button--large {
      padding: 15px 40px;
      font-size: 1.2em;
    }

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

    .page-78be__button--register,
    .page-78be__button--login {
      width: 120px;
      text-align: center;
      padding: 12px 15px;
      border-radius: 25px;
      font-weight: bold;
      text-decoration: none;
      color: #fff;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease-in-out;
    }

    .page-78be__button--register {
      background-color: var(--page-78be-primary-color); /* Red */
    }

    .page-78be__button--login {
      background-color: var(--page-78be-secondary-color); /* Green */
    }

    .page-78be__button--register:hover,
    .page-78be__button--login:hover {
      transform: translateY(-3px);
      opacity: 0.9;
    }

    /* Hero Section */
    .page-78be__hero-section {
      background: linear-gradient(135deg, #2c3e50, #4CAF50);
      color: var(--page-78be-light-text-color);
      padding: 10px 20px 80px 20px; /* Small decorative padding-top */
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .page-78be__hero-content {
      max-width: 900px;
      margin-bottom: 40px;
      z-index: 10;
    }

    .page-78be__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      font-weight: bold;
      line-height: 1.2;
      color: #fff;
    }

    .page-78be__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      opacity: 0.9;
      color: #fff;
    }

    .page-78be__hero-cta-group {
      display: flex;
      gap: 20px;
      justify-content: center;
    }

    .page-78be__hero-image-wrapper {
      width: 100%;
      max-width: 1000px;
      margin-top: 30px;
      position: relative;
      z-index: 5;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-78be__hero-image {
      max-width: 100%;
      height: auto;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      display: block;
    }

    /* Game Categories Section */
    .page-78be__game-categories {
      padding: 60px 20px;
      background-color: var(--page-78be-light-bg);
    }

    .page-78be__category-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-78be__category-item {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      padding: 25px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      border: 1px solid var(--page-78be-border-color);
    }

    .page-78be__category-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .page-78be__category-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
      box-sizing: border-box;
    }

    .page-78be__category-title {
      font-size: 1.5em;
      color: var(--page-78be-primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-78be__category-text {
      font-size: 1em;
      color: #555;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    /* Promotions Section */
    .page-78be__promotions {
      background-color: #f0f8ff;
      padding: 60px 20px;
    }

    .page-78be__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-78be__promo-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--page-78be-border-color);
    }

    .page-78be__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .page-78be__promo-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      box-sizing: border-box;
    }

    .page-78be__promo-card h3,
    .page-78be__promo-card p {
      padding: 0 20px;
    }

    .page-78be__promo-title {
      font-size: 1.4em;
      color: var(--page-78be-dark-bg);
      margin: 15px 0 10px;
      font-weight: bold;
    }

    .page-78be__promo-text {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 20px;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    /* Why Choose Us Section */
    .page-78be__why-choose-us {
      padding: 60px 20px;
      background-color: var(--page-78be-light-bg);
    }

    .page-78be__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-78be__feature-item {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      padding: 25px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      border: 1px solid var(--page-78be-border-color);
    }

    .page-78be__feature-icon {
      width: 100px;
      height: 100px;
      object-fit: contain;
      margin-bottom: 15px;
      box-sizing: border-box;
    }

    .page-78be__feature-title {
      font-size: 1.4em;
      color: var(--page-78be-accent-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-78be__feature-text {
      font-size: 0.95em;
      color: #666;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    /* Payment Methods & Providers Section */
    .page-78be__payment-methods,
    .page-78be__providers {
      padding: 60px 20px;
      background-color: #f9f9f9;
    }

    .page-78be__payment-methods:nth-of-type(even),
    .page-78be__providers:nth-of-type(even) {
      background-color: #f0f8ff;
    }

    .page-78be__payment-grid,
    .page-78be__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .page-78be__payment-item,
    .page-78be__provider-item {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
      padding: 15px;
      text-align: center;
      transition: transform 0.2s ease;
      border: 1px solid var(--page-78be-border-color);
    }

    .page-78be__payment-item:hover,
    .page-78be__provider-item:hover {
      transform: translateY(-3px);
    }

    .page-78be__payment-item a,
    .page-78be__provider-item a {
      text-decoration: none;
      color: var(--page-78be-text-color);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
    }

    .page-78be__payment-logo,
    .page-78be__provider-logo {
      max-width: 100px;
      height: auto;
      object-fit: contain;
      margin-bottom: 10px;
      box-sizing: border-box;
    }

    .page-78be__payment-name,
    .page-78be__provider-name {
      font-size: 0.9em;
      font-weight: bold;
      color: #333;
    }

    /* FAQ Section */
    .page-78be__faq-section {
      padding: 60px 20px;
      background-color: var(--page-78be-light-bg);
    }

    .page-78be__faq-container {
      max-width: 900px;
      margin: 0 auto;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      border: 1px solid var(--page-78be-border-color);
    }

    .page-78be__faq-item {
      border-bottom: 1px solid var(--page-78be-border-color);
    }

    .page-78be__faq-item:last-child {
      border-bottom: none;
    }

    .page-78be__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #fff;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-78be__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-78be__faq-question-text {
      font-size: 1.2em;
      color: var(--page-78be-dark-bg);
      margin: 0;
      pointer-events: none;
      flex-grow: 1;
      text-align: left;
    }

    .page-78be__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-78be-primary-color);
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none;
    }

    .page-78be__faq-item.active .page-78be__faq-toggle {
      transform: rotate(45deg);
      color: var(--page-78be-secondary-color);
    }

    .page-78be__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #fcfcfc;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #555;
    }

    .page-78be__faq-item.active .page-78be__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain any content */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-78be__faq-answer p {
      margin: 0;
      font-size: 1em;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    /* Call to Action Section */
    .page-78be__cta-section {
      background: linear-gradient(135deg, #1a1a1a, #333);
      color: var(--page-78be-light-text-color);
      padding: 80px 20px;
      text-align: center;
    }

    .page-78be__cta-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #fff;
    }

    .page-78be__cta-description {
      font-size: 1.2em;
      max-width: 700px;
      margin: 0 auto 40px auto;
      opacity: 0.9;
      color: #fff;
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .page-78be__hero-title {
        font-size: 2.8em;
      }
      .page-78be__hero-description {
        font-size: 1.1em;
      }
      .page-78be__section-title {
        font-size: 2em;
      }
      .page-78be__cta-title {
        font-size: 2.2em;
      }
    }

    @media (max-width: 768px) {
      .page-78be__hero-section {
        padding: 10px 15px 60px 15px;
      }
      .page-78be__hero-title {
        font-size: 2.2em;
      }
      .page-78be__hero-description {
        font-size: 1em;
      }
      .page-78be__section-title {
        font-size: 1.8em;
        padding-top: 30px;
      }
      .page-78be__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
      }
      .page-78be__button {
        padding: 10px 25px;
        font-size: 1em;
      }
      .page-78be__button--large {
        padding: 12px 30px;
        font-size: 1.1em;
      }
      .page-78be__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
      }
      .page-78be__button--register,
      .page-78be__button--login {
        width: 100px;
        padding: 10px 12px;
        font-size: 0.9em;
      }

      /* Grid/Flex containers for lists */
      .page-78be__category-grid,
      .page-78be__promo-grid,
      .page-78be__features-grid,
      .page-78be__payment-grid,
      .page-78be__provider-grid {
          grid-template-columns: 1fr !important; /* Stack items */
          gap: 20px !important;
          padding: 0 15px !important; /* Adjust padding for container */
          max-width: 100% !important;
          box-sizing: border-box !important;
      }

      /* List items */
      .page-78be__category-item,
      .page-78be__promo-card,
      .page-78be__feature-item,
      .page-78be__payment-item,
      .page-78be__provider-item {
          width: 100% !important;
          max-width: 100% !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
          box-sizing: border-box !important;
          padding: 15px !important; /* Adjust item padding if needed */
      }

      /* Images responsiveness */
      .page-78be__hero-image,
      .page-78be__category-image,
      .page-78be__promo-image,
      .page-78be__feature-icon,
      .page-78be__payment-logo,
      .page-78be__provider-logo {
          max-width: 100% !important;
          height: auto !important;
          box-sizing: border-box !important;
      }

      .page-78be__hero-image-wrapper,
      .page-78be__category-item img,
      .page-78be__promo-card img,
      .page-78be__feature-item img,
      .page-78be__payment-item a,
      .page-78be__provider-item a {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }

      /* Text wrapping for list item contents and FAQ answers */
      .page-78be__category-text,
      .page-78be__promo-text,
      .page-78be__feature-text,
      .page-78be__faq-answer p {
          word-wrap: break-word !important;
          overflow-wrap: break-word !important;
          word-break: break-word !important;
      }

      .page-78be__faq-question {
        padding: 15px 20px;
      }
      .page-78be__faq-question-text {
        font-size: 1.1em;
      }
      .page-78be__faq-toggle {
        font-size: 1.5em;
      }
      .page-78be__faq-answer {
        padding: 0 20px;
      }
      .page-78be__faq-item.active .page-78be__faq-answer {
        padding: 15px 20px !important;
      }

      .page-78be__cta-section {
        padding: 60px 15px;
      }
      .page-78be__cta-title {
        font-size: 1.8em;
      }
      .page-78be__cta-description {
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-78be__hero-title {
        font-size: 1.8em;
      }
      .page-78be__hero-description {
        font-size: 0.9em;
      }
      .page-78be__cta-title {
        font-size: 1.6em;
      }
      .page-78be__cta-description {
        font-size: 0.9em;
      }
    }
  