
    /* CSS styles for page-39bet8 */
    .page-39bet8 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6; /* Light background */
      padding-bottom: 80px; /* Space for floating buttons */
      padding-top: 10px; /* Small decorative padding, assuming body has header offset */
    }

    /* Fixed floating buttons */
    .page-39bet8__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 15px 10px;
      background-color: rgba(0, 0, 0, 0.8);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      box-sizing: border-box;
    }

    .page-39bet8__floating-button {
      flex: 1;
      margin: 0 5px;
      padding: 12px 0;
      border: none;
      border-radius: 25px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      text-align: center;
      text-decoration: none;
      color: #fff;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-39bet8__floating-button--register {
      background-color: #ff4500; /* Orange-red */
    }

    .page-39bet8__floating-button--register:hover {
      background-color: #e03c00;
    }

    .page-39bet8__floating-button--login {
      background-color: #007bff; /* Blue */
    }

    .page-39bet8__floating-button--login:hover {
      background-color: #0069d9;
    }

    /* Hero Section */
    .page-39bet8__hero-section {
      text-align: center;
      padding: 20px 15px 40px;
      background-color: #1a1a1a;
      color: #fff;
      position: relative;
      overflow: hidden;
      min-height: 300px; /* Ensure some height even with short content */
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-39bet8__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
      z-index: 0;
    }

    .page-39bet8__hero-content {
      position: relative;
      z-index: 1;
      max-width: 960px;
      margin: 0 auto;
    }

    .page-39bet8__hero-title {
      font-size: 2.5em;
      margin-bottom: 10px;
      color: #ffd700; /* Gold */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      word-wrap: break-word;
      overflow-wrap: break-word;
    }
    
    .page-39bet8__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 25px;
      color: #eee;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* General Section Styling */
    .page-39bet8__section {
      padding: 40px 15px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      margin-top: 20px;
      box-sizing: border-box;
    }

    .page-39bet8__section:first-of-type {
      margin-top: 0; /* No margin-top for the first section after hero */
    }

    .page-39bet8__section-title {
      font-size: 2em;
      color: #333;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }
    
    .page-39bet8__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: #ff4500;
      margin: 10px auto 0;
    }

    /* Product Grid */
    .page-39bet8__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      justify-content: center; /* Center items if they don't fill the row */
    }

    .page-39bet8__product-card {
      background-color: #f9f9f9;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .page-39bet8__product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-39bet8__product-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      max-width: 100%; /* Ensure responsiveness */
      height: auto;
      display: block; /* Remove extra space below image */
      box-sizing: border-box;
    }
    
    .page-39bet8__product-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-sizing: border-box;
    }

    .page-39bet8__product-title {
      font-size: 1.4em;
      color: #333;
      margin-bottom: 10px;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

    .page-39bet8__product-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 15px;
      flex-grow: 1;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

    .page-39bet8__button {
      display: inline-block;
      padding: 10px 20px;
      background-color: #ff4500;
      color: #fff;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none; /* Make it look like a button */
      cursor: pointer;
      font-size: 1em;
      margin-top: auto; /* Push button to bottom */
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

    .page-39bet8__button:hover {
      background-color: #e03c00;
    }

    /* Promotions Section */
    .page-39bet8__promotion-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .page-39bet8__promotion-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 25px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .page-39bet8__promotion-item:hover {
      transform: translateY(-3px);
    }

    .page-39bet8__promotion-title {
      font-size: 1.3em;
      color: #ff4500;
      margin-bottom: 10px;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

    .page-39bet8__promotion-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
      flex-grow: 1;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

    .page-39bet8__promotion-link {
      color: #007bff;
      text-decoration: none;
      font-weight: bold;
      margin-top: auto;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

    .page-39bet8__promotion-link:hover {
      text-decoration: underline;
    }

    /* News Section */
    .page-39bet8__news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .page-39bet8__news-card {
      background-color: #f9f9f9;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .page-39bet8__news-card:hover {
      transform: translateY(-5px);
    }

    .page-39bet8__news-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      max-width: 100%;
      height: auto;
      display: block;
      box-sizing: border-box;
    }

    .page-39bet8__news-content {
      padding: 15px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-sizing: border-box;
    }

    .page-39bet8__news-date {
      font-size: 0.85em;
      color: #888;
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-39bet8__news-title {
      font-size: 1.2em;
      color: #333;
      margin-bottom: 10px;
      font-weight: bold;
      flex-grow: 1;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-39bet8__news-excerpt {
      font-size: 0.9em;
      color: #666;
      margin-bottom: 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* FAQ Section */
    .page-39bet8__faq-section {
      background-color: #f9f9f9;
      padding: 40px 15px;
      max-width: 960px;
      margin: 20px auto;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-39bet8__faq-section-title {
      font-size: 2em;
      color: #333;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-39bet8__faq-section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: #ff4500;
      margin: 10px auto 0;
    }

    .page-39bet8__faq-item {
      margin-bottom: 15px;
      border: 1px solid #eee;
      border-radius: 8px;
      overflow: hidden;
      background-color: #fff;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
      box-sizing: border-box;
    }

    .page-39bet8__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #e8f0fe; /* Light blue */
      color: #333;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-39bet8__faq-question:hover {
      background-color: #d0e1ff;
    }

    .page-39bet8__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click */
      word-wrap: break-word;
      overflow-wrap: break-word;
      line-height: 1.4;
      color: #2c3e50; /* Darker text for contrast */
    }

    .page-39bet8__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
      color: #ff4500;
    }

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

    .page-39bet8__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding */
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #555;
      font-size: 0.95em;
      box-sizing: border-box;
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-39bet8__hero-title {
        font-size: 2em;
      }

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

      .page-39bet8__section {
        padding: 30px 10px;
        margin-top: 15px;
      }

      .page-39bet8__section-title,
      .page-39bet8__faq-section-title {
        font-size: 1.8em;
      }

      .page-39bet8__product-grid,
      .page-39bet8__promotion-list,
      .page-39bet8__news-grid {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px;
      }

      .page-39bet8__product-card,
      .page-39bet8__promotion-item,
      .page-39bet8__news-card,
      .page-39bet8__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      
      .page-39bet8__product-image,
      .page-39bet8__news-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-39bet8__floating-buttons {
        padding: 10px 5px;
      }

      .page-39bet8__floating-button {
        font-size: 1em;
        padding: 10px 0;
      }

      .page-39bet8__faq-question {
        padding: 12px 15px;
      }

      .page-39bet8__faq-question h3 {
        font-size: 1em;
      }

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

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

    @media (max-width: 480px) {
      .page-39bet8__hero-title {
        font-size: 1.8em;
      }
      .page-39bet8__hero-subtitle {
        font-size: 0.9em;
      }
      .page-39bet8__section-title,
      .page-39bet8__faq-section-title {
        font-size: 1.6em;
      }
      .page-39bet8__floating-button {
        font-size: 0.9em;
      }
    }
  