
    /* Tổng quan */
    .page-68win12 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #FFFFFF;
      background-color: #1a1a2e;
      line-height: 1.6;
      box-sizing: border-box;
      padding-bottom: 80px; /* Khoảng cách cho nút CTA nổi */
    }

    .page-68win12__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-68win12__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-68win12__section:nth-child(even) {
      background-color: #242940;
    }

    .page-68win12__heading-primary {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: #FFD700;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-68win12__heading-secondary {
      font-size: 2em;
      margin-bottom: 15px;
      color: #FFD700;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-68win12__heading-tertiary {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: #FFD700;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-68win12__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #E0E0E0;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-68win12__button {
      display: inline-block;
      background-color: #DC143C;
      color: #FFFFFF;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
      font-size: 1.1em;
    }

    .page-68win12__button:hover {
      background-color: #C11133;
    }

    /* Hero Section */
    .page-68win12__hero-section {
      position: relative;
      padding-top: 10px; /* Dành chỗ cho header cố định */
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
      text-align: center;
    }

    .page-68win12__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      max-width: 100%; /* Đảm bảo hình ảnh không vượt quá chiều rộng */
      height: auto; /* Giữ tỷ lệ khung hình */
    }

    .page-68win12__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.5); /* Lớp phủ để văn bản dễ đọc hơn */
      border-radius: 10px;
      max-width: 90%;
    }

    /* Floating CTA Button */
    .page-68win12__floating-cta {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: #FFD700; /* Màu vàng nổi bật */
      padding: 15px 20px;
      text-align: center;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      box-sizing: border-box;
    }

    .page-68win12__floating-cta-link {
      display: block;
      background-color: #DC143C;
      color: #FFFFFF;
      padding: 12px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-68win12__floating-cta-link:hover {
      background-color: #C11133;
    }

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

    .page-68win12__game-card {
      background-color: #2a2f4a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      text-align: left;
      transition: transform 0.3s ease;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
    }

    .page-68win12__game-card:hover {
      transform: translateY(-5px);
    }

    .page-68win12__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%;
      height: auto;
    }

    .page-68win12__game-card-content {
      padding: 20px;
      flex-grow: 1;
    }

    .page-68win12__game-card-title {
      margin-top: 0;
      color: #FFD700;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }