
    :root {
      --page-39bet10-primary-color: #007bff;
      --page-39bet10-secondary-color: #6c757d;
      --page-39bet10-accent-color: #28a745;
      --page-39bet10-dark-bg: #212529;
      --page-39bet10-light-bg: #f8f9fa;
      --page-39bet10-text-color: #343a40;
      --page-39bet10-white: #ffffff;
      --page-39bet10-border-radius: 8px;
      --page-39bet10-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .page-39bet10 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--page-39bet10-text-color);
      background-color: var(--page-39bet10-light-bg);
    }

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

    /* Hero Section */
    .page-39bet10__hero-section {
      position: relative;
      background-color: var(--page-39bet10-dark-bg);
      color: var(--page-39bet10-white);
      text-align: center;
      padding: 10px 0 50px; /* Adjusted padding-top for fixed header */
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-39bet10__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      margin-bottom: 20px;
    }

    .page-39bet10__hero-content {
      position: relative;
      z-index: 2;
      padding: 0 20px;
    }

    .page-39bet10__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--page-39bet10-white);
      line-height: 1.2;
    }

    .page-39bet10__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-39bet10__cta-button {
      display: inline-block;
      background-color: var(--page-39bet10-accent-color);
      color: var(--page-39bet10-white);
      padding: 15px 30px;
      border-radius: var(--page-39bet10-border-radius);
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-39bet10__cta-button:hover {
      background-color: #218838;
      transform: translateY(-2px);
    }

    /* Floating Login Button */
    .page-39bet10__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-39bet10-primary-color);
      color: var(--page-39bet10-white);
      padding: 12px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: var(--page-39bet10-box-shadow);
      z-index: 1000;
      animation: page-39bet10__pulse 1.5s infinite;
      border: none;
      cursor: pointer;
    }

    @keyframes page-39bet10__pulse {
      0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
      }
      70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(0, 123, 255, 0);
      }
      100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
      }
    }

    /* Section Styling */
    .page-39bet10__section {
      padding: 60px 20px;
      text-align: center;
      background-color: var(--page-39bet10-white);
      margin-bottom: 20px;
      border-radius: var(--page-39bet10-border-radius);
      box-shadow: var(--page-39bet10-box-shadow);
    }

    .page-39bet10__section--dark {
      background-color: var(--page-39bet10-dark-bg);
      color: var(--page-39bet10-white);
    }

    .page-39bet10__section-title {
      font-size: 2.2em;
      margin-bottom: 30px;
      color: var(--page-39bet10-primary-color);
      position: relative;
      padding-bottom: 10px;
    }

    .page-39bet10__section-title--dark {
      color: var(--page-39bet10-white);
    }

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

    .page-39bet10__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-39bet10__game-card {
      background-color: var(--page-39bet10-light-bg);
      border-radius: var(--page-39bet10-border-radius);
      box-shadow: var(--page-39bet10-box-shadow);
      overflow: hidden;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-39bet10__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

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

    .page-39bet10__game-card-content {
      padding: 25px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .page-39bet10__game-card-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: var(--page-39bet10-primary-color);
    }

    .page-39bet10__game-card-description {
      font-size: 0.95em;
      color: var(--page-39bet10-secondary-color);
      flex-grow: 1;
    }

    /* Why Choose Section */
    .page-39bet10__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-39bet10__feature-item {
      background-color: var(--page-39bet10-white);
      padding: 30px;
      border-radius: var(--page-39bet10-border-radius);
      box-shadow: var(--page-39bet10-box-shadow);
      text-align: center;
      transition: transform 0.3s ease;
    }

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

    .page-39bet10__feature-icon {
      width: 80px;
      height: 80px;
      object-fit: contain;
      margin-bottom: 20px;
    }

    .page-39bet10__feature-title {
      font-size: 1.4em;
      color: var(--page-39bet10-primary-color);
      margin-bottom: 15px;
    }

    .page-39bet10__feature-description {
      color: var(--page-39bet10-secondary-color);
    }

    /* Guide Section */
    .page-39bet10__guide-steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }

    .page-39bet10__guide-step {
      background-color: var(--page-39bet10-white);
      padding: 30px;
      border-radius: var(--page-39bet10-border-radius);
      box-shadow: var(--page-39bet10-box-shadow);
      flex: 1 1 300px;
      max-width: 350px;
      text-align: left;
    }

    .page-39bet10__step-number {
      font-size: 2.5em;
      font-weight: bold;
      color: var(--page-39bet10-accent-color);
      margin-bottom: 15px;
    }

    .page-39bet10__step-title {
      font-size: 1.6em;
      color: var(--page-39bet10-primary-color);
      margin-bottom: 15px;
    }

    .page-39bet10__step-description {
      color: var(--page-39bet10-text-color);
    }

    /* FAQ Section */
    .page-39bet10__faq-list {
      margin-top: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
    }

    .page-39bet10__faq-item {
      background-color: var(--page-39bet10-white);
      border: 1px solid #e0e0e0;
      border-radius: var(--page-39bet10-border-radius);
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .page-39bet10__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #f0f0f0;
      font-size: 1.2em;
      font-weight: bold;
      color: var(--page-39bet10-text-color);
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-39bet10__faq-question:hover {
      background-color: #e9e9e9;
    }

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

    .page-39bet10__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      color: var(--page-39bet10-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

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

    .page-39bet10__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      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-39bet10-secondary-color);
      font-size: 1em;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-39bet10__hero-section {
        padding-top: 10px; /* Adjusted for mobile fixed header */
        padding-bottom: 30px;
      }

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

      .page-39bet10__hero-subtitle {
        font-size: 1em;
      }

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

      .page-39bet10__section {
        padding: 40px 15px;
      }

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

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

      .page-39bet10__game-grid,
      .page-39bet10__feature-list {
        grid-template-columns: 1fr;
      }

      .page-39bet10__guide-step {
        max-width: 100%;
        flex: 1 1 100%;
      }

      .page-39bet10__floating-button {
        padding: 10px 15px;
        font-size: 0.9em;
        bottom: 15px;
        right: 15px;
      }

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

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

      .page-39bet10__faq-answer {
        padding: 0 20px;
      }

      .page-39bet10__faq-item.active .page-39bet10__faq-answer {
        padding: 15px 20px !important;
      }

      /* Force responsive image styles */
      .page-39bet10 img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
      }
      .page-39bet10__hero-image,
      .page-39bet10__game-card-image,
      .page-39bet10__feature-icon {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  