
    :root {
      --page-39betvip__primary-color: #007bff;
      --page-39betvip__secondary-color: #6c757d;
      --page-39betvip__accent-color: #ffc107;
      --page-39betvip__background-dark: #1a1a2e;
      --page-39betvip__background-light: #f8f9fa;
      --page-39betvip__text-color-dark: #e0e0e0;
      --page-39betvip__text-color-light: #333;
      --page-39betvip__card-background: #2b2b40;
      --page-39betvip__border-color: #444;
      --page-39betvip__button-gradient-start: #ff4d4d;
      --page-39betvip__button-gradient-end: #ff8080;
    }

    .page-39betvip {
      font-family: 'Arial', sans-serif;
      color: var(--page-39betvip__text-color-dark);
      background-color: var(--page-39betvip__background-dark);
      line-height: 1.6;
      overflow-x: hidden;
    }

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

    .page-39betvip__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      border-radius: 8px;
      background-color: var(--page-39betvip__background-dark);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-39betvip__section--light {
      background-color: var(--page-39betvip__card-background);
      color: var(--page-39betvip__text-color-dark);
    }

    .page-39betvip__hero-section {
      position: relative;
      text-align: center;
      color: #fff;
      padding-top: 10px; /* Adjusted for fixed header */
      padding-bottom: 60px;
      overflow: hidden;
    }

    .page-39betvip__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      filter: brightness(0.7); /* Only for darkening, not color change */
    }

    .page-39betvip__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .page-39betvip__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      font-weight: bold;
      color: var(--page-39betvip__accent-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-39betvip__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #ddd;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-39betvip__button {
      display: inline-block;
      background: linear-gradient(45deg, var(--page-39betvip__button-gradient-start), var(--page-39betvip__button-gradient-end));
      color: #fff;
      padding: 15px 30px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 5px 15px rgba(255, 77, 77, 0.4);
    }

    .page-39betvip__button:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(255, 77, 77, 0.6);
    }

    .page-39betvip__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: linear-gradient(45deg, #ff4d4d, #ff8080);
      color: #fff;
      font-size: 0.9em;
      font-weight: bold;
      text-align: center;
      line-height: 1.2;
      box-shadow: 0 5px 15px rgba(255, 77, 77, 0.5);
      transition: all 0.3s ease;
      text-decoration: none;
      animation: page-39betvip__pulse 2s infinite;
    }

    .page-39betvip__floating-button:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 20px rgba(255, 77, 77, 0.7);
    }

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

    .page-39betvip__section-title {
      font-size: 2.2em;
      color: var(--page-39betvip__accent-color);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-39betvip__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-39betvip__button-gradient-end);
      border-radius: 2px;
    }

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

    .page-39betvip__game-card {
      background-color: var(--page-39betvip__card-background);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

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

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

    .page-39betvip__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-top-left-radius: 12px;
      border-top-right-radius: 12px;
    }

    .page-39betvip__game-card-title {
      font-size: 1.5em;
      color: var(--page-39betvip__accent-color);
      margin: 20px 0 10px;
      padding: 0 15px;
    }

    .page-39betvip__game-card-description {
      font-size: 0.95em;
      color: #bbb;
      padding: 0 15px;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .page-39betvip__info-list {
      list-style: none;
      padding: 0;
      margin: 0;
      text-align: left;
    }

    .page-39betvip__info-list-item {
      background-color: var(--page-39betvip__card-background);
      margin-bottom: 10px;
      padding: 15px 20px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-39betvip__info-list-item-icon {
      width: 40px;
      height: 40px;
      margin-right: 15px;
      object-fit: contain;
    }

    .page-39betvip__info-list-item-text {
      flex-grow: 1;
      font-size: 1.1em;
      color: var(--page-39betvip__text-color-dark);
    }

    .page-39betvip__text-center {
      text-align: center;
    }

    .page-39betvip__text-highlight {
      color: var(--page-39betvip__accent-color);
      font-weight: bold;
    }

    .page-39betvip__faq-section {
      background-color: var(--page-39betvip__card-background);
      padding: 40px 20px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-39betvip__faq-item {
      border-bottom: 1px solid var(--page-39betvip__border-color);
      margin-bottom: 10px;
    }

    .page-39betvip__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-39betvip__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      user-select: none;
      color: var(--page-39betvip__text-color-dark);
      transition: color 0.3s ease;
    }

    .page-39betvip__faq-question:hover {
      color: var(--page-39betvip__accent-color);
    }

    .page-39betvip__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-39betvip__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-39betvip__faq-item.active .page-39betvip__faq-toggle {
      transform: rotate(45deg);
    }

    .page-39betvip__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.3s ease;
      color: #ccc;
    }

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

    .page-39betvip__download-app-section {
      text-align: center;
      background-color: var(--page-39betvip__card-background);
      padding: 40px 20px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-39betvip__download-app-image {
      max-width: 300px;
      height: auto;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-39betvip__hero-title {
        font-size: 2em;
      }
      .page-39betvip__hero-description {
        font-size: 1em;
      }
      .page-39betvip__section {
        padding: 30px 15px;
      }
      .page-39betvip__section-title {
        font-size: 1.8em;
      }
      .page-39betvip__grid {
        grid-template-columns: 1fr;
      }
      .page-39betvip__floating-button {
        width: 50px;
        height: 50px;
        font-size: 0.8em;
        bottom: 15px;
        right: 15px;
      }
      .page-39betvip__hero-section {
        padding-top: 10px; /* Adjusted for fixed header on mobile */
      }
      .page-39betvip__game-card-image,
      .page-39betvip__download-app-image,
      .page-39betvip__info-list-item-icon {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-39betvip__game-card-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        height: 180px; /* Adjust height for mobile */
      }
    }

    /* Ensure all images are responsive */
    .page-39betvip img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
    }
    .page-39betvip__game-card-image,
    .page-39betvip__download-app-image,
    .page-39betvip__info-list-item-icon {
      max-width: 100%;
      height: auto;
    }
    @media (max-width: 768px) {
      .page-39betvip__game-card-image,
      .page-39betvip__download-app-image,
      .page-39betvip__info-list-item-icon {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-39betvip__game-card-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  