
    /* CSS Styles for 79BET Page */
    :root {
      --page-79bet-primary-color: #e0b32f; /* Gold-like for accents */
      --page-79bet-secondary-color: #1a1a1a; /* Dark background */
      --page-79bet-text-color: #f0f0f0; /* Light text */
      --page-79bet-dark-gray: #333;
      --page-79bet-light-gray: #ccc;
      --page-79bet-button-bg: #e0b32f;
      --page-79bet-button-text: #1a1a1a;
      --page-79bet-hover-color: #ffc107;
      --page-79bet-border-color: #444;
    }

    .page-79bet {
      font-family: 'Arial', sans-serif;
      background-color: var(--page-79bet-secondary-color);
      color: var(--page-79bet-text-color);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-79bet__hero-section {
      position: relative;
      width: 100%;
      min-height: 400px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      background-size: cover;
      background-position: center;
      color: var(--page-79bet-text-color);
      padding: 10px 20px 60px 20px; /* Adjusted padding-top for fixed header */
      box-sizing: border-box;
      overflow: hidden;
    }

    .page-79bet__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .page-79bet__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
      padding: 20px;
      border-radius: 10px;
    }

    .page-79bet__main-title {
      font-size: 2.5em;
      margin-bottom: 10px;
      color: var(--page-79bet-primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-79bet__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 20px;
      color: var(--page-79bet-light-gray);
    }

    .page-79bet__floating-button-wrapper {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      width: 90%;
      max-width: 300px;
      box-sizing: border-box;
      transition: transform 0.3s ease-in-out;
    }

    .page-79bet__floating-button {
      display: block;
      width: 100%;
      padding: 15px 25px;
      background-color: var(--page-79bet-button-bg);
      color: var(--page-79bet-button-text);
      border: none;
      border-radius: 30px;
      font-size: 1.2em;
      font-weight: bold;
      text-align: center;
      text-decoration: none;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-79bet__floating-button:hover {
      background-color: var(--page-79bet-hover-color);
      transform: scale(1.05);
    }

    .page-79bet__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-79bet__section-title {
      font-size: 2em;
      color: var(--page-79bet-primary-color);
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-79bet__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;
      width: 80px;
      height: 3px;
      background-color: var(--page-79bet-primary-color);
    }

    .page-79bet__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-79bet__card {
      background-color: var(--page-79bet-dark-gray);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      display: flex;
      flex-direction: column;
    }

    .page-79bet__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-79bet__card-image {
      width: 100%;
      max-width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-79bet__card-content {
      padding: 20px;
      flex-grow: 1;
    }

    .page-79bet__card-title {
      font-size: 1.3em;
      color: var(--page-79bet-primary-color);
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-79bet__card-text {
      font-size: 0.95em;
      color: var(--page-79bet-light-gray);
    }

    .page-79bet__promo-banner {
      background-color: var(--page-79bet-primary-color);
      color: var(--page-79bet-secondary-color);
      padding: 30px 20px;
      margin-top: 40px;
      border-radius: 10px;
      text-align: center;
    }

    .page-79bet__promo-title {
      font-size: 2em;
      margin-bottom: 15px;
    }

    .page-79bet__promo-text {
      font-size: 1.1em;
      margin-bottom: 20px;
    }

    .page-79bet__promo-button {
      background-color: var(--page-79bet-secondary-color);
      color: var(--page-79bet-primary-color);
      padding: 12px 30px;
      border-radius: 25px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, color 0.3s ease;
      display: inline-block;
      border: 2px solid var(--page-79bet-secondary-color);
    }

    .page-79bet__promo-button:hover {
      background-color: var(--page-79bet-dark-gray);
      color: var(--page-79bet-hover-color);
      border-color: var(--page-79bet-dark-gray);
    }

    .page-79bet__features-list {
      list-style: none;
      padding: 0;
      text-align: left;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .page-79bet__feature-item {
      background-color: var(--page-79bet-dark-gray);
      padding: 15px 20px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .page-79bet__feature-icon {
      width: 50px;
      min-width: 50px; /* Ensure minimum size */
      height: 50px;
      min-height: 50px; /* Ensure minimum size */
      margin-right: 15px;
      object-fit: contain;
      max-width: 100%;
      height: auto;
    }

    .page-79bet__feature-content h3 {
      color: var(--page-79bet-primary-color);
      margin: 0 0 5px 0;
      font-size: 1.2em;
    }

    .page-79bet__feature-content p {
      margin: 0;
      font-size: 0.9em;
      color: var(--page-79bet-light-gray);
    }

    .page-79bet__faq-section {
      text-align: left;
    }

    .page-79bet__faq-item {
      background-color: var(--page-79bet-dark-gray);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .page-79bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--page-79bet-dark-gray);
      color: var(--page-79bet-text-color);
      cursor: pointer;
      user-select: none;
      border-bottom: 1px solid var(--page-79bet-border-color);
    }

    .page-79bet__faq-question:hover {
      background-color: #444;
    }

    .page-79bet__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-79bet-text-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-79bet__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-79bet-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

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

    .page-79bet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: #2a2a2a;
      color: var(--page-79bet-light-gray);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    .page-79bet__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
    }

    .page-79bet__payment-providers,
    .page-79bet__game-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-79bet__provider-logo {
      width: 100px;
      min-width: 100px; /* Ensure minimum size */
      height: 60px;
      min-height: 60px; /* Ensure minimum size */
      object-fit: contain;
      background-color: #fff; /* For logos that might be transparent */
      padding: 5px;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      max-width: 100%;
      height: auto;
    }
    
    .page-79bet__register-cta {
      background: linear-gradient(90deg, #e0b32f, #ffc107);
      padding: 40px 20px;
      text-align: center;
      margin-top: 50px;
      border-radius: 10px;
      color: var(--page-79bet-secondary-color);
    }

    .page-79bet__register-cta h2 {
      font-size: 2em;
      margin-bottom: 15px;
      color: var(--page-79bet-secondary-color);
    }

    .page-79bet__register-cta p {
      font-size: 1.1em;
      margin-bottom: 25px;
      color: var(--page-79bet-dark-gray);
    }

    .page-79bet__register-button {
      background-color: var(--page-79bet-secondary-color);
      color: var(--page-79bet-primary-color);
      padding: 15px 35px;
      border-radius: 30px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, color 0.3s ease;
      display: inline-block;
      border: 2px solid var(--page-79bet-secondary-color);
    }

    .page-79bet__register-button:hover {
      background-color: var(--page-79bet-dark-gray);
      color: var(--page-79bet-hover-color);
      border-color: var(--page-79bet-dark-gray);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-79bet__hero-section {
        padding-top: 10px; /* Mobile header padding */
        min-height: 300px;
      }
      .page-79bet__main-title {
        font-size: 1.8em;
      }
      .page-79bet__hero-subtitle {
        font-size: 1em;
      }
      .page-79bet__section {
        padding: 30px 15px;
      }
      .page-79bet__section-title {
        font-size: 1.6em;
      }
      .page-79bet__grid {
        grid-template-columns: 1fr;
      }
      .page-79bet__card-image {
        height: 180px;
      }
      .page-79bet__floating-button {
        font-size: 1.1em;
        padding: 12px 20px;
      }
      .page-79bet__promo-title {
        font-size: 1.6em;
      }
      .page-79bet__promo-text {
        font-size: 1em;
      }
      .page-79bet__promo-button {
        font-size: 1em;
        padding: 10px 25px;
      }
      .page-79bet__feature-item {
        flex-direction: column;
        text-align: center;
      }
      .page-79bet__feature-icon {
        margin: 0 auto 10px auto;
      }
      .page-79bet__feature-content h3 {
        font-size: 1.1em;
      }
      .page-79bet__feature-content p {
        font-size: 0.85em;
      }
      .page-79bet__faq-question h3 {
        font-size: 1em;
      }
      .page-79bet__faq-toggle {
        font-size: 1.3em;
      }
      .page-79bet__provider-logo {
        width: 80px;
        min-width: 80px;
        height: 50px;
        min-height: 50px;
      }
      .page-79bet__register-cta h2 {
        font-size: 1.6em;
      }
      .page-79bet__register-cta p {
        font-size: 1em;
      }
      .page-79bet__register-button {
        font-size: 1.1em;
        padding: 12px 30px;
      }
      /* Ensure images do not overflow */
      .page-79bet img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-79bet__card-image, .page-79bet__feature-icon, .page-79bet__provider-logo, .page-79bet__hero-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-79bet__hero-section .page-79bet__hero-image {
        max-width: 100% !important;
        height: 100% !important; /* This should remain 100% for full height cover */
      }
      .page-79bet__card-image {
        width: 100% !important;
        height: 180px !important; /* Maintain fixed height for consistent card appearance */
        object-fit: cover !important;
      }
    }
  