
    :root {
      --page-77betmobi__primary-color: #007bff; /* Blue */
      --page-77betmobi__secondary-color: #6c757d; /* Grey */
      --page-77betmobi__accent-color: #ffc107; /* Yellow */
      --page-77betmobi__text-color: #333;
      --page-77betmobi__background-color: #f8f9fa;
      --page-77betmobi__card-background: #ffffff;
      --page-77betmobi__button-gradient-start: #ff416c;
      --page-77betmobi__button-gradient-end: #ff4b2b;
      --page-77betmobi__floating-button-bg: linear-gradient(to right, var(--page-77betmobi__button-gradient-start), var(--page-77betmobi__button-gradient-end));
      --page-77betmobi__floating-button-text: #ffffff;
    }

    .page-77betmobi {
      font-family: 'Arial', sans-serif;
      color: var(--page-77betmobi__text-color);
      background-color: var(--page-77betmobi__background-color);
      line-height: 1.6;
    }

    .page-77betmobi__section {
      padding: 40px 15px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-77betmobi__hero-section {
      position: relative;
      text-align: center;
      color: #fff;
      padding: 10px 0 60px 0; /* Adjusted padding-top for fixed header */
      overflow: hidden;
      background-color: #000; /* Fallback if image not loaded */
    }

    .page-77betmobi__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.7;
    }

    .page-77betmobi__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px 15px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 300px; /* Ensure content area is visible */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-77betmobi__hero-title {
      font-size: 2.5em;
      margin-bottom: 10px;
      color: var(--page-77betmobi__accent-color);
    }

    .page-77betmobi__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 20px;
      max-width: 600px;
    }

    .page-77betmobi__button {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 30px;
      background: var(--page-77betmobi__primary-color);
      color: #fff;
      font-weight: bold;
      text-decoration: none;
      transition: background 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-77betmobi__button:hover {
      background: #0056b3;
    }

    .page-77betmobi__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
      max-width: 350px;
      background: var(--page-77betmobi__floating-button-bg);
      color: var(--page-77betmobi__floating-button-text);
      padding: 15px 20px;
      border-radius: 50px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      font-size: 1.1em;
      font-weight: bold;
      z-index: 100;
      animation: page-77betmobi__pulse 2s infinite;
      border: none;
      cursor: pointer;
      text-decoration: none; /* Ensure it looks like a button */
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-77betmobi__floating-button:hover {
      transform: translateX(-50%) scale(1.03);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    @keyframes page-77betmobi__pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(255, 75, 43, 0.7);
      }
      70% {
        box-shadow: 0 0 0 15px rgba(255, 75, 43, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(255, 75, 43, 0);
      }
    }

    .page-77betmobi__heading {
      text-align: center;
      font-size: 2em;
      margin-bottom: 30px;
      color: var(--page-77betmobi__primary-color);
    }

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

    .page-77betmobi__game-card {
      background-color: var(--page-77betmobi__card-background);
      border-radius: 10px;
      box-shadow: 0 4px 10px 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-77betmobi__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .page-77betmobi__game-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #eee;
    }

    .page-77betmobi__game-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      width: 100%; /* Ensure image fills wrapper */
      height: 100%; /* Ensure image fills wrapper */
    }

    .page-77betmobi__game-content {
      padding: 15px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-77betmobi__game-title {
      font-size: 1.3em;
      margin-bottom: 10px;
      color: var(--page-77betmobi__primary-color);
      min-height: 40px; /* Ensure consistent height for titles */
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-77betmobi__game-description {
      font-size: 0.9em;
      color: var(--page-77betmobi__secondary-color);
      margin-bottom: 15px;
    }

    .page-77betmobi__advantage-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .page-77betmobi__advantage-card {
      background-color: var(--page-77betmobi__card-background);
      border-left: 5px solid var(--page-77betmobi__primary-color);
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      padding: 20px;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
    }

    .page-77betmobi__advantage-card:hover {
      transform: translateY(-5px);
    }

    .page-77betmobi__advantage-icon {
      width: 80px; /* Increased size */
      height: 80px; /* Increased size */
      margin-bottom: 15px;
      display: block;
      object-fit: contain;
    }

    .page-77betmobi__advantage-title {
      font-size: 1.4em;
      color: var(--page-77betmobi__primary-color);
      margin-bottom: 10px;
    }

    .page-77betmobi__advantage-description {
      font-size: 0.95em;
      color: var(--page-77betmobi__secondary-color);
    }

    .page-77betmobi__faq-section {
      background-color: #f0f2f5;
    }

    .page-77betmobi__faq-item {
      background-color: var(--page-77betmobi__card-background);
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    .page-77betmobi__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #e9ecef;
      border-bottom: 1px solid #dee2e6;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-77betmobi__faq-question:hover {
      background-color: #e2e6ea;
    }

    .page-77betmobi__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-77betmobi__primary-color);
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
    }

    .page-77betmobi__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-77betmobi__primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
      margin-left: 10px;
    }

    .page-77betmobi__faq-item.active .page-77betmobi__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or similar for expanded state */
    }

    .page-77betmobi__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: var(--page-77betmobi__text-color);
      font-size: 0.95em;
    }

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

    .page-77betmobi__cta-section {
      text-align: center;
      background-color: var(--page-77betmobi__primary-color);
      color: #fff;
      padding: 50px 15px;
    }

    .page-77betmobi__cta-title {
      font-size: 2.2em;
      margin-bottom: 20px;
    }

    .page-77betmobi__cta-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-77betmobi__hero-section {
        padding-top: 10px; /* Mobile padding for fixed header */
      }

      .page-77betmobi__hero-title {
        font-size: 2em;
      }

      .page-77betmobi__hero-subtitle {
        font-size: 1em;
      }

      .page-77betmobi__heading {
        font-size: 1.8em;
      }

      .page-77betmobi__section {
        padding: 30px 10px;
      }

      .page-77betmobi__game-grid {
        grid-template-columns: 1fr;
      }

      .page-77betmobi__game-image-wrapper {
        height: 180px;
      }

      .page-77betmobi__advantage-grid {
        grid-template-columns: 1fr;
      }

      .page-77betmobi__faq-question {
        padding: 12px 15px;
      }

      .page-77betmobi__faq-question h3 {
        font-size: 1em;
      }

      .page-77betmobi__faq-answer {
        padding: 0 15px;
        font-size: 0.9em;
      }

      .page-77betmobi__faq-item.active .page-77betmobi__faq-answer {
        padding: 15px !important;
      }

      .page-77betmobi__cta-title {
        font-size: 1.8em;
      }

      .page-77betmobi__cta-description {
        font-size: 1em;
      }

      .page-77betmobi__floating-button {
        width: 95%;
        font-size: 1em;
        padding: 12px 15px;
      }

      /* Responsive image rules with !important */
      .page-77betmobi__game-image,
      .page-77betmobi__advantage-icon,
      .page-77betmobi__hero-background {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-77betmobi__game-image-wrapper,
      .page-77betmobi__advantage-card,
      .page-77betmobi__hero-section {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  