
    .page-08wim {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-bottom: 80px; /* Space for floating buttons */
    }

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

    .page-08wim__hero-section {
      background: linear-gradient(135deg, #1a2a6c 0%, #b21f1f 100%);
      color: #fff;
      text-align: center;
      padding: 10px 15px 60px; /* Small top padding, larger bottom for content */
      position: relative;
      overflow: hidden;
      border-radius: 0 0 20px 20px;
    }

    .page-08wim__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('[GALLERY:pattern:1920x1080:abstract,geometric,subtle]');
      background-size: cover;
      opacity: 0.1;
      z-index: 0;
    }

    .page-08wim__hero-content {
      position: relative;
      z-index: 1;
    }

    .page-08wim__main-heading {
      font-size: 2.5em;
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      color: #ffd700; /* Gold color */
    }

    .page-08wim__sub-heading {
      font-size: 1.2em;
      margin-bottom: 30px;
      font-weight: normal;
    }

    .page-08wim__hero-image {
      width: 100%;
      max-width: 800px;
      height: auto;
      border-radius: 15px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
      margin: 30px auto 0;
      display: block;
    }

    .page-08wim__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: rgba(0, 0, 0, 0.85); /* Darker, slightly transparent background */
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
    }

    .page-08wim__button {
      background-color: #ffd700; /* Gold */
      color: #1a2a6c; /* Dark blue */
      padding: 12px 25px;
      border: none;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      display: inline-block;
      min-width: 120px;
    }

    .page-08wim__button:hover {
      background-color: #ffc107;
      transform: translateY(-2px);
    }

    .page-08wim__game-categories {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      margin-top: -30px; /* Overlap with hero for visual flow */
      position: relative;
      z-index: 2;
    }

    .page-08wim__section-title {
      font-size: 2em;
      color: #1a2a6c;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-08wim__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background-color: #b21f1f;
      border-radius: 2px;
    }

    .page-08wim__category-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-content: center;
    }

    .page-08wim__category-item {
      text-align: center;
      background-color: #f0f0f0;
      padding: 15px;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: default; /* No link */
    }

    .page-08wim__category-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    }

    .page-08wim__category-image {
      width: 100%;
      max-width: 250px;
      height: auto;
      border-radius: 8px;
      margin-bottom: 10px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-08wim__category-name {
      font-weight: bold;
      color: #1a2a6c;
      font-size: 1.1em;
    }

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

    .page-08wim__promotion-card {
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-08wim__promotion-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .page-08wim__promotion-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-08wim__promotion-content {
      padding: 20px;
    }

    .page-08wim__promotion-title {
      font-size: 1.4em;
      color: #b21f1f;
      margin-bottom: 10px;
    }

    .page-08wim__promotion-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 15px;
    }

    .page-08wim__info-block {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      padding: 30px;
      margin-bottom: 30px;
    }

    .page-08wim__info-text {
      font-size: 1.1em;
      color: #444;
      margin-bottom: 20px;
    }

    .page-08wim__providers-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      list-style: none;
      padding: 0;
    }

    .page-08wim__provider-item {
      background-color: #eee;
      padding: 10px 20px;
      border-radius: 5px;
      font-weight: bold;
      color: #1a2a6c;
      box-sizing: border-box;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
      word-break: break-word !important;
    }

    .page-08wim__benefits-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      list-style: none;
      padding: 0;
    }

    .page-08wim__benefit-item {
      background-color: #e6f7ff; /* Light blue */
      padding: 20px;
      border-left: 5px solid #1a2a6c;
      border-radius: 8px;
      font-size: 1.1em;
      color: #1a2a6c;
      font-weight: bold;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      box-sizing: border-box;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
      word-break: break-word !important;
    }

    .page-08wim__faq-container {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      padding: 20px;
    }

    .page-08wim__faq-item {
      margin-bottom: 15px;
      border-bottom: 1px solid #eee;
      padding-bottom: 15px;
    }

    .page-08wim__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .page-08wim__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
      padding: 10px 0;
      color: #1a2a6c;
      font-size: 1.2em;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-08wim__faq-question:hover {
      color: #b21f1f;
    }

    .page-08wim__faq-question h3 {
      margin: 0;
      font-size: 1em;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-08wim__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-08wim__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: #555;
      font-size: 0.95em;
    }

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

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

    .page-08wim__cta-section {
      text-align: center;
      padding: 50px 15px;
      background-color: #1a2a6c;
      color: #fff;
      border-radius: 10px;
    }

    .page-08wim__cta-title {
      font-size: 2.2em;
      margin-bottom: 20px;
      color: #ffd700;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-08wim__main-heading {
        font-size: 2em;
      }

      .page-08wim__sub-heading {
        font-size: 1em;
      }

      .page-08wim__section {
        padding: 30px 10px;
      }

      .page-08wim__section-title {
        font-size: 1.8em;
      }

      .page-08wim__category-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }

      .page-08wim__category-item {
        padding: 10px;
      }

      .page-08wim__category-image {
        max-width: 150px;
      }

      .page-08wim__category-name {
        font-size: 1em;
      }

      .page-08wim__promotions-grid {
        grid-template-columns: 1fr;
      }

      .page-08wim__promotion-image {
        height: 180px;
      }

      .page-08wim__promotion-title {
        font-size: 1.2em;
      }

      .page-08wim__info-block, .page-08wim__faq-container {
        padding: 20px;
      }

      .page-08wim__providers-list, .page-08wim__benefits-list {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .page-08wim__provider-item, .page-08wim__benefit-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-08wim__faq-question {
        font-size: 1.1em;
      }

      .page-08wim__faq-answer {
        padding: 15px 10px !important;
      }

      .page-08wim__cta-title {
        font-size: 1.8em;
      }

      .page-08wim__button {
        padding: 10px 20px;
        font-size: 1em;
        min-width: 100px;
      }

      /* Ensure all images are responsive */
      .page-08wim img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-08wim img:not(.page-08wim__hero-image) {
        width: 100% !important;
      }

      .page-08wim__hero-image {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-08wim__floating-buttons {
        padding: 8px 0;
      }
    }

    @media (max-width: 480px) {
      .page-08wim__floating-buttons {
        flex-direction: column;
        gap: 8px;
        padding: 10px 15px;
      }
      .page-08wim__button {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
      }
      .page-08wim {
        padding-bottom: 120px; /* More space for stacked buttons */
      }
    }
  </n>
  <link href="style/shared.css" rel="stylesheet">
  <link href="style/08wim.css" rel="stylesheet">
  <link rel="icon" href="/favicon.ico" type="image/x-icon">
</head>
<body>
  {{HEADER_PLACEHOLDER}}
  <main class="page-content page-08wim">
    <section class="page-08wim__hero-section">
      <div class="page-08wim__hero-content">
        <h1 class="page-08wim__main-heading">08wim - Trang Chủ Chính Thức 08win</h1>
        <p class="page-08wim__sub-heading">Cá Cược Trực Tuyến Hàng Đầu &amp; Khuyến Mãi Hấp Dẫn 2026</p>
        <img src="[GALLERY:hero:1200x675:08wim,betting,casino,promotions]" alt="Hình ảnh quảng bá 08wim với các trò chơi cá cược và khuyến mãi 2026" class="page-08wim__hero-image">
      </div>
    </section>

    <div class="page-08wim__floating-buttons">
      <a href="https://ads.win2026vn.com/redirect?plink_id=pl_1772764845703_pqu5xuc0q" target="_blank" rel="noopener" class="page-08wim__button">Đăng Ký Ngay</a>
      <a href="https://ads.win2026vn.com/redirect?plink_id=pl_1772764845703_pqu5xuc0q" target="_blank" rel="noopener" class="page-08wim__button">Đăng Nhập</a>
    </div>

    <section class="page-08wim__section page-08wim__game-categories">
      <h2 class="page-08wim__section-title">Khám Phá Các Trò Chơi Hấp Dẫn Tại 08wim</h2>
      <div class="page-08wim__category-grid">
        <div class="page-08wim__category-item">
          <img src="[GALLERY:game:400x300:sports,betting,08wim]" alt="Cá cược Thể Thao 08wim" class="page-08wim__category-image">
          <span class="page-08wim__category-name">Thể Thao</span>
        </div>
        <div class="page-08wim__category-item">
          <img src="[GALLERY:game:400x300:fishing,game,08wim]" alt="Trò chơi Bắn Cá 08wim" class="page-08wim__category-image">
          <span class="page-08wim__category-name">Bắn Cá</span>
        </div>
        <div class="page-08wim__category-item">
          <img src="[GALLERY:game:400x300:casino,live,08wim]" alt="Sòng bạc Casino trực tuyến 08wim" class="page-08wim__category-image">
          <span class="page-08wim__category-name">Casino</span>
        </div>
        <div class="page-08wim__category-item">
          <img src="[GALLERY:game:400x300:slots,jackpot,08wim]" alt="Trò chơi Nổ Hũ 08wim" class="page-08wim__category-image">
          <span class="page-08wim__category-name">Nổ Hũ</span>
        </div>
        <div class="page-08wim__category-item">
          <img src="[GALLERY:game:400x300:cockfighting,betting,08wim]" alt="Cá cược Đá Gà 08wim" class="page-08wim__category-image">
          <span class="page-08wim__category-name">Đá Gà</span>
        </div>
        <div class="page-08wim__category-item">
          <img src="[GALLERY:game:400x300:news,updates,08wim]" alt="Tin Tức mới nhất 08wim" class="page-08wim__category-image">
          <span class="page-08wim__category-name">Tin Tức</span>
        </div>
      </div>
    </section>

    <section class="page-08wim__section">
      <h2 class="page-08wim__section-title">Ưu Đãi Đặc Biệt &amp; Khuyến Mãi Hàng Đầu 2026 tại 08wim</h2>
      <div class="page-08wim__promotions-grid">
        <div class="page-08wim__promotion-card">
          <img src="[GALLERY:promotion:800x450:welcome_bonus,08wim,2026]" alt="Khuyến mãi chào mừng thành viên mới 08wim" class="page-08wim__promotion-image">
          <div class="page-08wim__promotion-content">
            <h3 class="page-08wim__promotion-title">Thưởng Chào Mừng Thành Viên Mới 08wim</h3>
            <p class="page-08wim__promotion-description">Nhận ngay tiền thưởng hấp dẫn khi đăng ký và nạp tiền lần đầu tại 08wim trong năm 2026. Cơ hội vàng để khởi đầu!</p>
          </div>
        </div>
        <div class="page-08wim__promotion-card">
          <img src="[GALLERY:promotion:800x450:cashback,daily,08wim,2026]" alt="Hoàn trả hàng ngày tại 08wim" class="page-08wim__promotion-image">
          <div class="page-08wim__promotion-content">
            <h3 class="page-08wim__promotion-title">Hoàn Trả Hàng Ngày Không Giới Hạn</h3>
            <p class="page-08wim__promotion-description">Tham gia cá cược tại 08wim và nhận hoàn trả tự động mỗi ngày, áp dụng cho tất cả các trò chơi. Không cần đăng ký!</p>
          </div>
        </div>
        <div class="page-08wim__promotion-card">
          <img src="[GALLERY:promotion:800x450:reload_bonus,weekly,08wim,2026]" alt="Thưởng nạp lại hàng tuần 08wim" class="page-08wim__promotion-image">
          <div class="page-08wim__promotion-content">
            <h3 class="page-08wim__promotion-title">Thưởng Nạp Lại Hàng Tuần Cực Cao</h3>
            <p class="page-08wim__promotion-description">Mỗi tuần, hãy nạp tiền vào tài khoản 08wim của bạn và nhận thêm phần trăm tiền thưởng nạp lại. Đừng bỏ lỡ!</p>
          </div>
        </div>
      </div>
    </section>

    <section class="page-08wim__section">
      <h2 class="page-08wim__section-title">Về 08wim - Nền Tảng Giải Trí Trực Tuyến Uy Tín</h2>
      <div class="page-08wim__info-block">
        <p class="page-08wim__info-text">08wim là điểm đến hàng đầu cho những người đam mê cá cược trực tuyến tại Việt Nam. Chúng tôi tự hào mang đến một môi trường giải trí an toàn, công bằng và minh bạch với hàng ngàn trò chơi đa dạng từ các nhà cung cấp uy tín nhất thế giới. Với giao diện thân thiện, dễ sử dụng trên cả thiết bị di động và máy tính, 08wim cam kết mang lại trải nghiệm tuyệt vời nhất cho mọi thành viên.</p>
        <p class="page-08wim__info-text">Chúng tôi hỗ trợ nhiều phương thức thanh toán tiện lợi và nhanh chóng như ZaloPay, MoMo, Visa, PayPal, AstorPay, đảm bảo mọi giao dịch của bạn diễn ra suôn sẻ. Các trò chơi tại 08wim được cung cấp bởi các đối tác hàng đầu như Mega Win Gaming (MW), PG Soft (PG), PS Gaming (PS), AG Gaming (AG), Jili Games (JILI), JDB Gaming (JDB), VA Gaming (VA), đảm bảo chất lượng và sự đa dạng.</p>
        <img src="[GALLERY:about:800x450:08wim,trust,security,platform]" alt="Nền tảng 08wim uy tín và bảo mật" class="page-08wim__hero-image">
      </div>
    </section>

    <section class="page-08wim__section">
      <h2 class="page-08wim__section-title">Tại Sao Chọn 08wim?</h2>
      <ul class="page-08wim__benefits-list">
        <li class="page-08wim__benefit-item">Đa dạng trò chơi cá cược: Thể Thao, Casino, Bắn Cá, Nổ Hũ, Đá Gà.</li>
        <li class="page-08wim__benefit-item">Giao dịch nhanh chóng, an toàn với nhiều phương thức thanh toán.</li>
        <li class="page-08wim__benefit-item">Hỗ trợ khách hàng 24/7 chuyên nghiệp và tận tâm.</li>
        <li class="page-08wim__benefit-item">Hệ thống bảo mật tối tân, bảo vệ thông tin người dùng tuyệt đối.</li>
        <li class="page-08wim__benefit-item">Nhiều chương trình khuyến mãi 08wim hấp dẫn cập nhật liên tục 2026.</li>
        <li class="page-08wim__benefit-item">Giao diện thân thiện, tối ưu cho trải nghiệm trên di động.</li>
      </ul>
    </section>

    <section class="page-08wim__section">
      <h2 class="page-08wim__section-title">Câu Hỏi Thường Gặp Về 08wim</h2>
      <div class="page-08wim__faq-container">
        <div class="page-08wim__faq-item">
          <div class="page-08wim__faq-question">
            <h3>08wim là gì?</h3>
            <span class="page-08wim__faq-toggle">+</span>
          </div>
          <div class="page-08wim__faq-answer">
            <p>08wim là một nền tảng cá cược trực tuyến hàng đầu tại Việt Nam, cung cấp đa dạng các trò chơi như cá cược thể thao, casino trực tuyến, bắn cá, nổ hũ và đá gà. Chúng tôi cam kết mang đến trải nghiệm giải trí an toàn, công bằng và hấp dẫn.</p>
          </div>
        </div>

        <div class="page-08wim__faq-item">
          <div class="page-08wim__faq-question">
            <h3>Làm thế nào để đăng ký tài khoản 08wim?</h3>
            <span class="page-08wim__faq-toggle">+</span>
          </div>
          <div class="page-08wim__faq-answer">
            <p>Việc đăng ký tài khoản tại 08wim rất đơn giản. Bạn chỉ cần nhấp vào nút "Đăng Ký Ngay" trên trang chủ, điền đầy đủ thông tin cá nhân theo yêu cầu và làm theo hướng dẫn. Quá trình này chỉ mất vài phút.</p>
          </div>
        </div>

        <div class="page-08wim__faq-item">
          <div class="page-08wim__faq-question">
            <h3>08wim có những khuyến mãi nào?</h3>
            <span class="page-08wim__faq-toggle">+</span>
          </div>
          <div class="page-08wim__faq-answer">
            <p>08wim thường xuyên có các chương trình khuyến mãi hấp dẫn dành cho cả thành viên mới và thành viên hiện tại, bao gồm thưởng chào mừng, hoàn trả hàng ngày, thưởng nạp lại và nhiều sự kiện đặc biệt khác. Bạn có thể xem chi tiết tại mục "Khuyến Mãi" trên trang web.</p>
          </div>
        </div>

        <div class="page-08wim__faq-item">
          <div class="page-08wim__faq-question">
            <h3>Tôi có thể nạp/rút tiền tại 08wim bằng cách nào?</h3>
            <span class="page-08wim__faq-toggle">+</span>
          </div>
          <div class="page-08wim__faq-answer">
            <p>Chúng tôi hỗ trợ nhiều phương thức nạp và rút tiền tiện lợi như chuyển khoản ngân hàng, ví điện tử (ZaloPay, MoMo), thẻ tín dụng/ghi nợ (Visa) và các cổng thanh toán quốc tế (PayPal, AstorPay). Tất cả giao dịch đều được xử lý nhanh chóng và an toàn.</p>
          </div>
        </div>

        <div class="page-08wim__faq-item">
          <div class="page-08wim__faq-question">
            <h3>Làm thế nào để liên hệ hỗ trợ khách hàng của 08wim?</h3>
            <span class="page-08wim__faq-toggle">+</span>
          </div>
          <div class="page-08wim__faq-answer">
            <p>Bạn có thể liên hệ đội ngũ hỗ trợ khách hàng của 08wim 24/7 thông qua chat trực tuyến trên trang web, email hoặc các kênh mạng xã hội chính thức của chúng tôi. Chúng tôi luôn sẵn lòng giải đáp mọi thắc mắc của bạn.</p>
          </div>
        </div>
      </div>
    </section>

    <section class="page-08wim__section page-08wim__cta-section">
      <h2 class="page-08wim__cta-title">Tham Gia 08wim Ngay Hôm Nay!</h2>
      <p class="page-08wim__sub-heading">Đừng bỏ lỡ cơ hội trải nghiệm thế giới cá cược đỉnh cao tại 08wim.</p>
      <a href="https://ads.win2026vn.com/redirect?plink_id=pl_1772764845703_pqu5xuc0q" target="_blank" rel="noopener" class="page-08wim__button">Bắt Đầu Ngay</a>
    </section>
  </main>
  {{FOOTER_PLACEHOLDER}}
  <script src="script/08wim.js"></script>
</body>
</html>