
    /* CSS cho trang code 58win */
    .page-code58win {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0; /* Màu chữ sáng */
      background-color: #1a1a1a; /* Nền tối */
      line-height: 1.6;
      padding-bottom: 80px; /* Khoảng cách cho nút nổi */
    }

    .page-code58win__hero-section {
      position: relative;
      text-align: center;
      padding: 10px 0 40px; /* Padding top để tránh header cố định */
      background-color: #0d0d0d;
      overflow: hidden;
    }
    
    .page-code58win__hero-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
    }

    .page-code58win__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-code58win__hero-title {
      font-size: 2.5em;
      color: #ffcc00; /* Màu vàng nổi bật */
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-code58win__hero-description {
      font-size: 1.1em;
      color: #e0e0e0;
      margin-bottom: 30px;
    }

    .page-code58win__cta-button {
      display: inline-block;
      background-color: #ffcc00;
      color: #1a1a1a;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-code58win__cta-button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

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

    .page-code58win__section-title {
      font-size: 2em;
      color: #ffcc00;
      margin-bottom: 30px;
      text-align: center;
    }

    .page-code58win__content-text {
      font-size: 1em;
      margin-bottom: 20px;
      text-align: justify;
    }

    .page-code58win__list {
      list-style: none;
      padding: 0;
      margin-bottom: 30px;
      text-align: left;
    }

    .page-code58win__list-item {
      background-color: #2a2a2a;
      margin-bottom: 10px;
      padding: 15px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      font-size: 1em;
      color: #e0e0e0;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-code58win__list-item::before {
      content: "✅";
      margin-right: 10px;
      font-size: 1.2em;
    }

    .page-code58win__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-code58win__game-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

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

    .page-code58win__game-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #1a1a1a;
    }

    .page-code58win__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Ensures image covers the area without distortion */
      display: block;
    }

    .page-code58win__game-card-content {
      padding: 20px;
    }

    .page-code58win__game-card-title {
      font-size: 1.3em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-code58win__game-card-description {
      font-size: 0.9em;
      color: #cccccc;
    }

    .page-code58win__faq-section {
      padding: 40px 20px;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .page-code58win__faq-title {
      font-size: 2em;
      color: #ffcc00;
      margin-bottom: 30px;
    }

    .page-code58win__faq-item {
      background-color: #2a2a2a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      text-align: left;
    }

    .page-code58win__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      background-color: #3a3a3a;
      color: #ffcc00;
      cursor: pointer;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-code58win__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-code58win__faq-question h3 {
      margin: 0;
      color: #ffcc00;
      font-size: 1.1em;
      pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
    }

    .page-code58win__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #ffcc00;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn chặn toggle chặn sự kiện click */
    }

    .page-code58win__faq-item.active .page-code58win__faq-toggle {
      transform: rotate(45deg); /* Biểu tượng '-' */
    }

    .page-code58win__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      color: #e0e0e0;
      font-size: 0.95em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-code58win__faq-item.active .page-code58win__faq-answer {
      max-height: 2000px !important; /* Đủ lớn để chứa mọi nội dung */
      padding: 20px 20px !important;
      opacity: 1;
    }

    .page-code58win__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #ff0000; /* Màu đỏ nổi bật cho ưu đãi */
      color: #ffffff;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      white-space: nowrap; /* Ngăn chặn xuống dòng */
    }

    .page-code58win__floating-button:hover {
      background-color: #cc0000;
      transform: translateX(-50%) translateY(-3px);
    }

    .page-code58win__link-section {
        padding: 20px;
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
        background-color: #2a2a2a;
        border-radius: 8px;
        margin-top: 40px;
    }

    .page-code58win__link-text {
        color: #e0e0e0;
        margin-bottom: 15px;
    }

    .page-code58win__brand-link {
        color: #ffcc00;
        text-decoration: none;
        font-weight: bold;
        transition: color 0.3s ease;
    }

    .page-code58win__brand-link:hover {
        color: #e6b800;
        text-decoration: underline;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-code58win__hero-section {
        padding-top: 10px; /* Điều chỉnh padding cho di động */
      }
      .page-code58win__hero-title {
        font-size: 1.8em;
      }
      .page-code58win__hero-description {
        font-size: 1em;
      }
      .page-code58win__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-code58win__section-title,
      .page-code58win__faq-title {
        font-size: 1.6em;
      }
      .page-code58win__section,
      .page-code58win__faq-section {
        padding: 30px 15px;
      }
      .page-code58win__game-grid {
        grid-template-columns: 1fr;
      }
      .page-code58win__floating-button {
        font-size: 1em;
        padding: 12px 20px;
        width: calc(100% - 40px);
        max-width: 300px;
      }
      .page-code58win__game-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-code58win__hero-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-code58win__game-image-wrapper {
        height: 180px;
      }
      .page-code58win__faq-question h3 {
        font-size: 1em;
      }
      .page-code58win__faq-answer {
        padding: 0 15px;
      }
      .page-code58win__faq-item.active .page-code58win__faq-answer {
        padding: 15px 15px !important;
      }
    }
  