
    :root {
      --page-39betgame-primary-color: #e44d26; /* A vibrant orange-red, common in betting sites */
      --page-39betgame-secondary-color: #333;
      --page-39betgame-accent-color: #4CAF50; /* Green for success/bonus */
      --page-39betgame-text-color: #333;
      --page-39betgame-bg-color: #f4f4f4;
      --page-39betgame-light-bg: #ffffff;
      --page-39betgame-border-color: #eee;
    }

    .page-39betgame {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-39betgame-text-color);
      background-color: var(--page-39betgame-bg-color);
      padding: 0;
      margin: 0;
    }

    .page-39betgame__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    /* Hero Section */
    .page-39betgame__hero-section {
      position: relative;
      width: 100%;
      height: auto;
      background-color: #222;
      color: #fff;
      text-align: center;
      overflow: hidden;
      padding-top: 10px; /* For fixed header */
    }

    .page-39betgame__hero-image {
      width: 100%;
      height: auto;
      max-height: 500px; /* Limit height for large screens */
      object-fit: cover;
      display: block;
    }

    .page-39betgame__hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 90%;
      max-width: 800px;
      z-index: 1;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.6);
      border-radius: 10px;
    }

    .page-39betgame__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-39betgame__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #f0f0f0;
    }

    .page-39betgame__cta-button {
      display: inline-block;
      background-color: var(--page-39betgame-primary-color);
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      font-size: 1.1em;
      text-decoration: none;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-39betgame__cta-button:hover {
      background-color: #d13a15;
    }

    /* Floating Button */
    .page-39betgame__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      left: 20px; /* Make it full width on mobile */
      max-width: 300px; /* Limit width on desktop */
      margin: 0 auto; /* Center on desktop */
      background-color: var(--page-39betgame-accent-color);
      color: #fff;
      padding: 15px 20px;
      border-radius: 50px;
      text-align: center;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      animation: page-39betgame__pulse 2s infinite;
      display: block; /* Ensure it's a block for margin auto */
    }

    .page-39betgame__floating-button:hover {
      background-color: #45a049;
      transform: scale(1.05);
    }

    @keyframes page-39betgame__pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.03); }
      100% { transform: scale(1); }
    }

    /* General Section Styling */
    .page-39betgame__section {
      background-color: var(--page-39betgame-light-bg);
      margin-bottom: 20px;
      padding: 40px 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-39betgame__section-title {
      text-align: center;
      font-size: 2.2em;
      color: var(--page-39betgame-primary-color);
      margin-bottom: 30px;
      position: relative;
    }

    .page-39betgame__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: var(--page-39betgame-accent-color);
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-39betgame__text-content {
      font-size: 1.1em;
      text-align: justify;
      margin-bottom: 20px;
    }

    /* Game Categories */
    .page-39betgame__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-39betgame__game-card {
      background-color: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
    }

    .page-39betgame__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-39betgame__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-39betgame__game-card-title {
      font-size: 1.5em;
      color: var(--page-39betgame-primary-color);
      margin: 20px 15px 10px;
    }

    .page-39betgame__game-card-description {
      font-size: 0.95em;
      color: var(--page-39betgame-secondary-color);
      padding: 0 15px;
      margin-bottom: 15px;
    }

    .page-39betgame__game-card-button {
      background-color: var(--page-39betgame-accent-color);
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-39betgame__game-card-button:hover {
      background-color: #45a049;
    }

    /* Promotions */
    .page-39betgame__promotion-item {
      display: flex;
      align-items: center;
      margin-bottom: 30px;
      background-color: var(--page-39betgame-light-bg);
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      padding: 20px;
    }

    .page-39betgame__promotion-item:last-child {
      margin-bottom: 0;
    }

    .page-39betgame__promotion-image {
      width: 200px;
      height: 150px;
      object-fit: cover;
      border-radius: 8px;
      margin-right: 20px;
      flex-shrink: 0;
    }

    .page-39betgame__promotion-content {
      flex-grow: 1;
    }

    .page-39betgame__promotion-title {
      font-size: 1.8em;
      color: var(--page-39betgame-primary-color);
      margin-bottom: 10px;
    }

    .page-39betgame__promotion-description {
      font-size: 1em;
      color: var(--page-39betgame-secondary-color);
      margin-bottom: 15px;
    }

    /* Advantages Section */
    .page-39betgame__advantages-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-39betgame__advantage-item {
      background-color: var(--page-39betgame-light-bg);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-39betgame__advantage-item:hover {
      transform: translateY(-5px);
    }

    .page-39betgame__advantage-icon {
      width: 80px; /* This is an example, actual image should be >= 200px */
      height: 80px;
      object-fit: contain;
      margin-bottom: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-39betgame__advantage-title {
      font-size: 1.6em;
      color: var(--page-39betgame-primary-color);
      margin-bottom: 10px;
    }

    .page-39betgame__advantage-description {
      font-size: 1em;
      color: var(--page-39betgame-secondary-color);
    }

    /* FAQ Section */
    .page-39betgame__faq-list {
      margin-top: 30px;
    }

    .page-39betgame__faq-item {
      background-color: #fff;
      border: 1px solid var(--page-39betgame-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-39betgame__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #f9f9f9;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      color: var(--page-39betgame-secondary-color);
      transition: background-color 0.3s ease;
    }

    .page-39betgame__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-39betgame__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-39betgame-primary-color);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-39betgame__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-39betgame-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-39betgame__faq-item.active .page-39betgame__faq-toggle {
      transform: rotate(45deg); /* Change + to X or rotate for minus */
    }

    .page-39betgame__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--page-39betgame-text-color);
    }

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

    .page-39betgame__faq-answer p {
      margin: 0;
    }

    /* Call to Action Section */
    .page-39betgame__cta-section {
      text-align: center;
      padding: 50px 20px;
      background-color: var(--page-39betgame-primary-color);
      color: #fff;
      border-radius: 8px;
      margin-bottom: 20px;
    }

    .page-39betgame__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: #fff;
    }

    .page-39betgame__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #f0f0f0;
    }

    /* Image responsive optimization */
    .page-39betgame img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
    }

    /* Specific for images within containers that might constrain them */
    .page-39betgame__hero-image,
    .page-39betgame__game-card-image,
    .page-39betgame__promotion-image,
    .page-39betgame__advantage-icon {
        width: 100%; /* Ensure these images take full width of their container */
        max-width: 100%;
        height: auto;
        box-sizing: border-box; /* Include padding and border in the element's total width and height */
        overflow: hidden; /* Hide anything that overflows */
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-39betgame__container {
        padding: 15px;
      }

      .page-39betgame__hero-section {
        padding-top: 10px; /* For fixed header on mobile */
      }

      .page-39betgame__hero-title {
        font-size: 2em;
      }

      .page-39betgame__hero-description {
        font-size: 1em;
      }

      .page-39betgame__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-39betgame__floating-button {
        left: 10px;
        right: 10px;
        bottom: 10px;
        font-size: 1em;
        padding: 12px 15px;
        max-width: unset; /* Allow full width on mobile */
      }

      .page-39betgame__section-title {
        font-size: 1.8em;
      }

      .page-39betgame__text-content {
        font-size: 1em;
      }

      .page-39betgame__game-grid {
        grid-template-columns: 1fr;
      }

      .page-39betgame__game-card-title {
        font-size: 1.3em;
      }

      .page-39betgame__promotion-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
      }

      .page-39betgame__promotion-image {
        width: 100%;
        height: 180px;
        margin-right: 0;
        margin-bottom: 15px;
      }

      .page-39betgame__promotion-title {
        font-size: 1.5em;
      }

      .page-39betgame__advantages-grid {
        grid-template-columns: 1fr;
      }

      .page-39betgame__advantage-item {
        padding: 20px;
      }

      .page-39betgame__faq-question {
        font-size: 1.1em;
        padding: 12px 15px;
      }

      .page-39betgame__faq-question h3 {
        font-size: 1.1em;
      }

      .page-39betgame__faq-toggle {
        font-size: 1.5em;
      }

      .page-39betgame__faq-answer {
        padding: 15px 15px;
      }

      .page-39betgame__cta-title {
        font-size: 2em;
      }

      .page-39betgame__cta-description {
        font-size: 1em;
      }

      /* Force image responsiveness for mobile */
      .page-39betgame img {
          max-width: 100% !important;
          height: auto !important;
      }
      .page-39betgame__hero-image,
      .page-39betgame__game-card-image,
      .page-39betgame__promotion-image,
      .page-39betgame__advantage-icon {
          width: 100% !important;
          max-width: 100% !important;
          height: auto !important;
      }
    }
  