
    /* CSS cho trang 79win */
    :root {
      --page-79win-primary-color: #e44d26; /* Màu cam đỏ */
      --page-79win-secondary-color: #ff9900; /* Màu cam sáng */
      --page-79win-dark-background: #1a1a1a; /* Nền tối */
      --page-79win-light-text: #ffffff; /* Chữ trắng */
      --page-79win-gray-text: #cccccc; /* Chữ xám nhạt */
      --page-79win-accent-color: #00bfff; /* Màu xanh nổi bật */
      --page-79win-button-hover: #ff6600; /* Màu hover nút */
    }

    .page-79win {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: var(--page-79win-dark-background);
      color: var(--page-79win-light-text);
      line-height: 1.6;
      padding-bottom: 80px; /* Đệm dưới cho nút nổi */
    }

    .page-79win__section {
      padding: 40px 20px;
      text-align: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-79win__section--hero {
      position: relative;
      overflow: hidden;
      padding: 0; /* Loại bỏ padding để banner chiếm toàn bộ chiều rộng */
      min-height: 300px; /* Chiều cao tối thiểu cho banner */
      display: flex;
      flex-direction: column;
      justify-content: flex-start; /* Đảm bảo nội dung banner ở trên */
      align-items: center;
      color: var(--page-79win-light-text);
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
      padding-top: 160px; /* Vùng an toàn cho banner */
    }

    .page-79win__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      filter: brightness(0.7);
    }

    .page-79win__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
      text-align: center;
      max-width: 90%;
      margin: 0 auto;
    }

    .page-79win__hero-title {
      font-size: 2.8em;
      margin-bottom: 10px;
      color: var(--page-79win-primary-color);
      font-weight: 700;
    }

    .page-79win__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 20px;
      color: var(--page-79win-light-text);
    }

    .page-79win__button {
      display: inline-block;
      background-color: var(--page-79win-primary-color);
      color: var(--page-79win-light-text);
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-79win__button:hover {
      background-color: var(--page-79win-button-hover);
      transform: translateY(-2px);
    }

    .page-79win__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-79win-secondary-color);
      color: var(--page-79win-light-text);
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      animation: page-79win-pulse 2s infinite;
      font-size: 1.2em;
      text-align: center;
    }

    .page-79win__floating-button:hover {
      background-color: var(--page-79win-primary-color);
      transform: scale(1.05);
      animation: none;
    }

    @keyframes page-79win-pulse {
      0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 153, 0, 0.7);
      }
      70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 153, 0, 0);
      }
      100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 153, 0, 0);
      }
    }

    .page-79win__section-title {
      font-size: 2.2em;
      margin-bottom: 30px;
      color: var(--page-79win-primary-color);
      font-weight: 700;
      position: relative;
      display: inline-block;
    }

    .page-79win__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -10px;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background-color: var(--page-79win-secondary-color);
      border-radius: 2px;
    }

    .page-79win__text-content {
      font-size: 1.1em;
      color: var(--page-79win-gray-text);
      margin-bottom: 20px;
      text-align: left;
    }

    .page-79win__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-79win__game-card {
      background-color: #2a2a2a;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none;
      color: var(--page-79win-light-text);
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 15px;
    }

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

    .page-79win__game-card img {
      width: 100%;
      height: 120px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 10px;
    }
    
    .page-79win__game-card-gamelogo img {
      width: 80px;
      height: 80px;
      object-fit: contain; /* Dùng contain cho logo nhà cung cấp */
      border-radius: 0;
      margin-bottom: 10px;
      background-color: #fff; /* Nền trắng cho logo */
      padding: 5px;
      border-radius: 50%;
    }

    .page-79win__game-card h3 {
      font-size: 1.2em;
      color: var(--page-79win-secondary-color);
      margin: 10px 0 5px;
      font-weight: 600;
    }

    .page-79win__game-card p {
      font-size: 0.9em;
      color: var(--page-79win-gray-text);
      text-align: center;
    }

    .page-79win__feature-list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      text-align: left;
    }

    .page-79win__feature-item {
      background-color: #2a2a2a;
      padding: 25px;
      border-radius: 15px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: flex-start;
      gap: 15px;
      transition: transform 0.3s ease;
    }

    .page-79win__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-79win__feature-icon {
      font-size: 2em;
      color: var(--page-79win-secondary-color);
      line-height: 1;
    }

    .page-79win__feature-content h4 {
      font-size: 1.3em;
      color: var(--page-79win-primary-color);
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-79win__feature-content p {
      font-size: 1em;
      color: var(--page-79win-gray-text);
    }

    .page-79win__cta-section {
      background: linear-gradient(45deg, #1a1a1a, #333333);
      padding: 50px 20px;
      border-radius: 20px;
      margin-top: 40px;
    }

    .page-79win__cta-section p {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: var(--page-79win-light-text);
    }

    .page-79win__faq-list {
      list-style: none;
      padding: 0;
      text-align: left;
      margin-top: 30px;
    }

    .page-79win__faq-item {
      background-color: #2a2a2a;
      margin-bottom: 15px;
      border-radius: 10px;
      overflow: hidden;
    }

    .page-79win__faq-question {
      display: block;
      padding: 15px 20px;
      background-color: #333333;
      color: var(--page-79win-light-text);
      font-weight: bold;
      cursor: pointer;
      position: relative;
      transition: background-color 0.3s ease;
      text-align: left;
    }

    .page-79win__faq-question:hover {
      background-color: #444444;
    }

    .page-79win__faq-question::after {
      content: '+';
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.5em;
      transition: transform 0.3s ease;
    }

    .page-79win__faq-question.active::after {
      content: '-';
      transform: translateY(-50%) rotate(180deg);
    }

    .page-79win__faq-answer {
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease-out, padding 0.5s ease-out;
      color: var(--page-79win-gray-text);
      text-align: left;
    }

    .page-79win__faq-answer.active {
      max-height: 200px; /* Adjust as needed */
      padding: 15px 20px;
    }

    .page-79win__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 15px;
      margin-top: 30px;
    }

    .page-79win__provider-item {
      background-color: #2a2a2a;
      padding: 10px;
      border-radius: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      min-height: 80px;
    }

    .page-79win__provider-item:hover {
      transform: scale(1.05);
      box-shadow: 0 0 15px rgba(var(--page-79win-secondary-color), 0.5);
    }

    .page-79win__provider-item img {
      max-width: 90%;
      max-height: 60px;
      object-fit: contain;
      filter: grayscale(10%);
      transition: filter 0.3s ease;
    }

    .page-79win__provider-item:hover img {
      filter: grayscale(0%);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-79win__hero-title {
        font-size: 2.2em;
      }
      .page-79win__hero-subtitle {
        font-size: 1.1em;
      }
      .page-79win__section-title {
        font-size: 1.8em;
      }
      .page-79win__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-79win__feature-list {
        grid-template-columns: 1fr;
      }
      .page-79win__floating-button {
        padding: 12px 20px;
        font-size: 1em;
        bottom: 15px;
        right: 15px;
      }
      .page-79win__hero-content {
        padding: 15px;
      }
      .page-79win__section--hero {
        padding-top: 140px; /* Giữ vùng an toàn trên mobile */
      }
    }

    @media (max-width: 480px) {
      .page-79win__hero-title {
        font-size: 1.8em;
      }
      .page-79win__hero-subtitle {
        font-size: 1em;
      }
      .page-79win__game-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .page-79win__game-card img {
        height: 100px;
      }
      .page-79win__game-card-gamelogo img {
        width: 60px;
        height: 60px;
      }
    }
  