
    :root {
      --page-78bet__primary-color: #FFD700; /* Gold/Yellow accent */
      --page-78bet__secondary-color: #1a1a1a; /* Dark grey for sections */
      --page-78bet__text-color: #ffffff;
      --page-78bet__light-text-color: #cccccc;
      --page-78bet__dark-bg: #000000;
      --page-78bet__button-hover: #e6c200;
    }

    .page-78bet {
      font-family: 'Arial', sans-serif;
      background-color: var(--page-78bet__dark-bg);
      color: var(--page-78bet__text-color);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Fixed header spacing */
    .page-78bet__hero-section,
    .page-78bet__about-section,
    .page-78bet__games-section,
    .page-78bet__promo-button {
      padding-top: 120px; /* Adjust based on actual header height */
    }

    @media (max-width: 768px) {
      .page-78bet__hero-section,
      .page-78bet__about-section,
      .page-78bet__games-section,
      .page-78bet__promo-button {
        padding-top: 100px; /* Adjust for mobile header height */
      }
    }

    .page-78bet__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-78bet__section-title {
      font-size: 2.5em;
      color: var(--page-78bet__primary-color);
      text-align: center;
      margin-bottom: 40px;
      padding-top: 20px;
      position: relative;
      text-transform: uppercase;
    }

    .page-78bet__section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background-color: var(--page-78bet__primary-color);
      margin: 10px auto 0;
      border-radius: 2px;
    }

    /* Hero Section */
    .page-78bet__hero-section {
      position: relative;
      text-align: center;
      padding-bottom: 50px;
      background-color: var(--page-78bet__secondary-color);
    }

    .page-78bet__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 30px;
    }

    .page-78bet__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
    }

    .page-78bet__hero-content {
      padding: 0 20px;
      margin-top: -30px; /* Overlap slightly with image for visual flow */
      position: relative;
      z-index: 2;
    }

    .page-78bet__hero-title {
      font-size: 3em;
      color: var(--page-78bet__primary-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-78bet__hero-subtitle {
      font-size: 1.5em;
      color: var(--page-78bet__text-color);
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-78bet__promo-button {
      display: inline-block;
      background-color: var(--page-78bet__primary-color);
      color: var(--page-78bet__dark-bg);
      padding: 15px 30px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
      animation: pulse 2s infinite;
    }

    .page-78bet__promo-button:hover {
      background-color: var(--page-78bet__button-hover);
      transform: translateY(-3px);
    }

    @keyframes pulse {
      0% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4); }
      50% { transform: scale(1.03); box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6); }
      100% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4); }
    }

    /* Floating Login Button */
    .page-78bet__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #FF4500; /* Orange-Red for urgency */
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 5px 20px rgba(255, 69, 0, 0.6);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.3s ease, transform 0.2s ease;
      animation: bounce 1.5s infinite;
    }

    .page-78bet__floating-login-button:hover {
      background-color: #e03d00;
      transform: translateY(-3px);
    }

    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
      40% { transform: translateY(-10px); }
      60% { transform: translateY(-5px); }
    }

    /* About Section */
    .page-78bet__about-section {
      background-color: var(--page-78bet__dark-bg);
      padding: 60px 0;
      border-top: 1px solid var(--page-78bet__secondary-color);
    }

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

    .page-78bet__about-text {
      flex: 1;
      min-width: 300px;
      font-size: 1.1em;
      color: var(--page-78bet__light-text-color);
    }

    .page-78bet__about-text p {
      margin-bottom: 15px;
    }

    .page-78bet__about-image-wrapper {
      flex: 1;
      min-width: 300px;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      border-radius: 10px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    }

    .page-78bet__about-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 10px;
    }

    /* Games Section */
    .page-78bet__games-section {
      background-color: var(--page-78bet__secondary-color);
      padding: 60px 0;
    }

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

    .page-78bet__game-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
    }

    .page-78bet__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    }

    .page-78bet__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Fixed height for consistency */
    }

    .page-78bet__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-78bet__game-card-content {
      padding: 20px;
    }

    .page-78bet__game-card-title {
      font-size: 1.5em;
      color: var(--page-78bet__primary-color);
      margin-bottom: 10px;
    }

    .page-78bet__game-card-description {
      font-size: 0.95em;
      color: var(--page-78bet__light-text-color);
      margin-bottom: 20px;
    }

    .page-78bet__game-card-link {
      display: inline-block;
      background-color: var(--page-78bet__primary-color);
      color: var(--page-78bet__dark-bg);
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
    }

    .page-78bet__game-card-link:hover {
      background-color: var(--page-78bet__button-hover);
    }

    /* Game Providers Section */
    .page-78bet__providers-section {
      background-color: var(--page-78bet__dark-bg);
      padding: 60px 0;
    }

    .page-78bet__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-items: center;
      align-items: center;
    }

    .page-78bet__provider-logo-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      padding: 15px;
      background-color: #2a2a2a;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100px; /* Ensure logos have a minimum display area */
    }

    .page-78bet__provider-logo-wrapper:hover {
      transform: translateY(-5px);
    }

    .page-78bet__provider-logo {
      max-width: 100%;
      height: auto;
      max-height: 80px; /* Limit logo height */
      display: block;
      filter: grayscale(100%) brightness(150%); /* Make logos visible on dark background */
      transition: filter 0.3s ease;
    }

    .page-78bet__provider-logo:hover {
      filter: grayscale(0%) brightness(100%); /* Restore color on hover */
    }

    /* Why Choose Us Section */
    .page-78bet__why-choose-section {
      background-color: var(--page-78bet__secondary-color);
      padding: 60px 0;
    }

    .page-78bet__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      text-align: center;
    }

    .page-78bet__feature-card {
      background-color: #2a2a2a;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
    }

    .page-78bet__feature-card:hover {
      transform: translateY(-10px);
    }

    .page-78bet__feature-icon-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin: 0 auto 20px;
      max-width: 150px; /* Adjust size for feature icons */
    }

    .page-78bet__feature-icon {
      width: 100%;
      height: auto;
      display: block;
      color: var(--page-78bet__primary-color); /* For SVG icons if used */
    }

    .page-78bet__feature-title {
      font-size: 1.6em;
      color: var(--page-78bet__primary-color);
      margin-bottom: 15px;
    }

    .page-78bet__feature-description {
      font-size: 1em;
      color: var(--page-78bet__light-text-color);
    }

    /* FAQ Section */
    .page-78bet__faq-section {
      background-color: var(--page-78bet__dark-bg);
      padding: 60px 0;
    }

    .page-78bet__faq-item {
      background-color: #1a1a1a;
      border: 1px solid #333;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

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

    .page-78bet__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-78bet__faq-question h3 {
      margin: 0;
      font-size: 1.25em;
      color: var(--page-78bet__primary-color);
      pointer-events: none; /* Prevent h3 from interfering with click event */
    }

    .page-78bet__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-78bet__primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from interfering with click event */
    }

    .page-78bet__faq-item.active .page-78bet__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
    }

    .page-78bet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
      color: var(--page-78bet__light-text-color);
    }

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

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .page-78bet__hero-title {
        font-size: 2.5em;
      }
      .page-78bet__hero-subtitle {
        font-size: 1.3em;
      }
      .page-78bet__section-title {
        font-size: 2em;
      }
      .page-78bet__about-content {
        flex-direction: column;
      }
    }

    @media (max-width: 768px) {
      .page-78bet__container {
        padding: 15px;
      }
      .page-78bet__hero-title {
        font-size: 2em;
      }
      .page-78bet__hero-subtitle {
        font-size: 1.1em;
      }
      .page-78bet__promo-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-78bet__section-title {
        font-size: 1.8em;
      }
      .page-78bet__game-grid,
      .page-78bet__feature-grid {
        grid-template-columns: 1fr;
      }
      .page-78bet__floating-login-button {
        padding: 10px 20px;
        font-size: 1em;
        bottom: 15px;
        right: 15px;
      }
      .page-78bet__faq-question {
        padding: 15px 20px;
      }
      .page-78bet__faq-question h3 {
        font-size: 1.1em;
      }
      .page-78bet__faq-answer {
        padding: 0 20px;
      }
      .page-78bet__faq-item.active .page-78bet__faq-answer {
        padding: 15px 20px !important;
      }
      /* Image responsive optimization */
      .page-78bet__hero-image,
      .page-78bet__about-image,
      .page-78bet__game-card-image,
      .page-78bet__provider-logo,
      .page-78bet__feature-icon {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-78bet__hero-image-wrapper,
      .page-78bet__about-image-wrapper,
      .page-78bet__game-card-image-wrapper,
      .page-78bet__provider-logo-wrapper,
      .page-78bet__feature-icon-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-78bet__hero-title {
        font-size: 1.8em;
      }
      .page-78bet__hero-subtitle {
        font-size: 1em;
      }
      .page-78bet__promo-button {
        font-size: 1em;
        padding: 10px 20px;
      }
      .page-78bet__section-title {
        font-size: 1.5em;
      }
      .page-78bet__floating-login-button {
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        bottom: 10px;
        font-size: 0.9em;
      }
    }
  