
    /* Tổng thể */
    .page-cwin05-ng-nh-p {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      padding-top: 10px; /* Nhẹ nhàng đẩy xuống dưới header cố định */
    }

    /* Các phần chung */
    .page-cwin05-ng-nh-p__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-cwin05-ng-nh-p__section-title {
      text-align: center;
      color: #c0392b; /* Màu đỏ đậm */
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
      line-height: 1.2;
    }

    .page-cwin05-ng-nh-p__section-subtitle {
      text-align: center;
      color: #555;
      font-size: 1.2em;
      margin-bottom: 40px;
    }

    /* Hero Section */
    .page-cwin05-ng-nh-p__hero-section {
      position: relative;
      overflow: hidden;
      color: #ffffff;
      text-align: center;
      padding: 80px 20px;
      background: linear-gradient(135deg, #e74c3c, #c0392b); /* Đỏ gradient */
      border-radius: 8px;
      margin-bottom: 20px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-cwin05-ng-nh-p__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0.3; /* Làm mờ ảnh nền */
    }

    .page-cwin05-ng-nh-p__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-cwin05-ng-nh-p__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-cwin05-ng-nh-p__hero-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }

    .page-cwin05-ng-nh-p__hero-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .page-cwin05-ng-nh-p__button {
      display: inline-block;
      padding: 15px 30px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      border-radius: 50px;
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none;
      box-sizing: border-box;
      max-width: 100%;
      text-align: center;
    }

    .page-cwin05-ng-nh-p__button--primary {
      background-color: #f39c12; /* Màu vàng cam */
      color: #ffffff;
    }

    .page-cwin05-ng-nh-p__button--primary:hover {
      background-color: #e67e22; /* Màu cam đậm hơn */
      transform: translateY(-3px);
    }

    .page-cwin05-ng-nh-p__button--secondary {
      background-color: #2ecc71; /* Màu xanh lá */
      color: #ffffff;
    }

    .page-cwin05-ng-nh-p__button--secondary:hover {
      background-color: #27ae60; /* Màu xanh lá đậm hơn */
      transform: translateY(-3px);
    }

    /* Game Categories Section */
    .page-cwin05-ng-nh-p__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-cwin05-ng-nh-p__category-card {
      background-color: #fcfcfc;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
    }

    .page-cwin05-ng-nh-p__category-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }

    .page-cwin05-ng-nh-p__category-image-wrapper {
      width: 100%;
      height: 200px; /* Đảm bảo hình ảnh có kích thước đủ lớn */
      overflow: hidden;
      background-color: #eee;
    }

    .page-cwin05-ng-nh-p__category-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-cwin05-ng-nh-p__category-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-cwin05-ng-nh-p__category-title {
      font-size: 1.5em;
      color: #c0392b;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-cwin05-ng-nh-p__category-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    /* Promotions Section */
    .page-cwin05-ng-nh-p__promotions-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-cwin05-ng-nh-p__promotion-item {
      background-color: #fcfcfc;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
    }

    .page-cwin05-ng-nh-p__promotion-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }

    .page-cwin05-ng-nh-p__promotion-image-wrapper {
      width: 100%;
      height: 220px;
      overflow: hidden;
      background-color: #eee;
    }

    .page-cwin05-ng-nh-p__promotion-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-cwin05-ng-nh-p__promotion-content {
      padding: 20px;
      flex-grow: 1;
    }

    .page-cwin05-ng-nh-p__promotion-title {
      font-size: 1.4em;
      color: #c0392b;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-cwin05-ng-nh-p__promotion-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
    }

    .page-cwin05-ng-nh-p__promotion-button {
      background-color: #f39c12;
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      display: inline-block; /* Để button không chiếm toàn bộ chiều rộng */
      border: none;
      cursor: pointer;
    }

    .page-cwin05-ng-nh-p__promotion-button:hover {
      background-color: #e67e22;
    }

    /* Payment and Providers Section */
    .page-cwin05-ng-nh-p__info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-cwin05-ng-nh-p__info-card {
      background-color: #fcfcfc;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      padding: 30px;
      text-align: center;
      box-sizing: border-box;
    }

    .page-cwin05-ng-nh-p__info-title {
      font-size: 1.8em;
      color: #c0392b;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-cwin05-ng-nh-p__info-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
    }

    .page-cwin05-ng-nh-p__info-list-item {
      background-color: #ecf0f1;
      color: #333;
      padding: 10px 15px;
      border-radius: 20px;
      font-size: 0.95em;
      font-weight: bold;
      box-sizing: border-box;
      width: auto; /* Allow items to size naturally */
      max-width: 100%;
      word-wrap: break-word; /* Ensure long names break */
      overflow-wrap: break-word;
      text-align: center;
    }

    /* FAQ Section */
    .page-cwin05-ng-nh-p__faq-section {
      padding: 40px 20px;
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-cwin05-ng-nh-p__faq-title {
      text-align: center;
      color: #c0392b;
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-cwin05-ng-nh-p__faq-item {
      margin-bottom: 15px;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      background-color: #fcfcfc;
    }

    .page-cwin05-ng-nh-p__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #f9f9f9;
      cursor: pointer;
      font-size: 1.1em;
      font-weight: bold;
      color: #333;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-cwin05-ng-nh-p__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #333;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-cwin05-ng-nh-p__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-cwin05-ng-nh-p__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #c0392b;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-cwin05-ng-nh-p__faq-item.active .page-cwin05-ng-nh-p__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or similar */
    }

    .page-cwin05-ng-nh-p__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      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;
    }

    .page-cwin05-ng-nh-p__faq-item.active .page-cwin05-ng-nh-p__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to show all content */
      padding: 20px 20px !important;
      opacity: 1;
    }

    /* Floating Register/Login Buttons */
    .page-cwin05-ng-nh-p__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
      border-radius: 50px;
      background-color: rgba(0, 0, 0, 0.7); /* Nền hơi trong suốt */
      padding: 10px 20px;
    }

    .page-cwin05-ng-nh-p__floating-button {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px 25px;
      font-size: 1em;
      font-weight: bold;
      text-decoration: none;
      border-radius: 30px;
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none;
      color: #ffffff;
      box-sizing: border-box;
    }

    .page-cwin05-ng-nh-p__floating-button--register {
      background-color: #f39c12; /* Vàng cam */
    }

    .page-cwin05-ng-nh-p__floating-button--register:hover {
      background-color: #e67e22;
      transform: translateY(-2px);
    }

    .page-cwin05-ng-nh-p__floating-button--login {
      background-color: #2ecc71; /* Xanh lá */
    }

    .page-cwin05-ng-nh-p__floating-button--login:hover {
      background-color: #27ae60;
      transform: translateY(-2px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-cwin05-ng-nh-p__section {
        padding: 30px 15px;
        margin-bottom: 15px;
      }

      .page-cwin05-ng-nh-p__section-title {
        font-size: 2em;
        margin-bottom: 20px;
      }

      .page-cwin05-ng-nh-p__section-subtitle {
        font-size: 1em;
        margin-bottom: 30px;
      }

      .page-cwin05-ng-nh-p__hero-section {
        padding: 60px 15px;
        margin-bottom: 15px;
      }

      .page-cwin05-ng-nh-p__hero-title {
        font-size: 2.5em;
      }

      .page-cwin05-ng-nh-p__hero-description {
        font-size: 1.1em;
        margin-bottom: 30px;
      }

      .page-cwin05-ng-nh-p__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-cwin05-ng-nh-p__button {
        width: 100%;
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-cwin05-ng-nh-p__game-categories,
      .page-cwin05-ng-nh-p__promotions-list,
      .page-cwin05-ng-nh-p__info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      /* List items specific responsive rules */
      .page-cwin05-ng-nh-p__info-list {
        flex-direction: column;
        gap: 10px;
        padding: 0;
        margin: 0;
      }

      .page-cwin05-ng-nh-p__info-list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 10px 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        text-align: center;
      }

      .page-cwin05-ng-nh-p__category-image-wrapper,
      .page-cwin05-ng-nh-p__promotion-image-wrapper {
        height: 180px;
      }

      .page-cwin05-ng-nh-p__category-title,
      .page-cwin05-ng-nh-p__promotion-title {
        font-size: 1.3em;
      }

      .page-cwin05-ng-nh-p__info-title {
        font-size: 1.5em;
      }

      .page-cwin05-ng-nh-p__faq-section {
        padding: 30px 15px;
      }

      .page-cwin05-ng-nh-p__faq-title {
        font-size: 2em;
      }

      .page-cwin05-ng-nh-p__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-cwin05-ng-nh-p__faq-question h3 {
        font-size: 1em;
      }

      .page-cwin05-ng-nh-p__faq-answer {
        padding: 15px 15px;
      }

      .page-cwin05-ng-nh-p__faq-item.active .page-cwin05-ng-nh-p__faq-answer {
        padding: 15px 15px !important;
      }

      .page-cwin05-ng-nh-p__floating-buttons {
        gap: 10px;
        bottom: 15px;
        padding: 8px 15px;
        width: calc(100% - 30px); /* Adjust width to fit mobile screen with padding */
        max-width: 400px; /* Limit width even if screen is very wide */
        box-sizing: border-box;
      }

      .page-cwin05-ng-nh-p__floating-button {
        padding: 10px 20px;
        font-size: 0.9em;
        flex-grow: 1;
      }
    }

    /* Ensure all images are responsive */
    .page-cwin05-ng-nh-p img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
    }

    .page-cwin05-ng-nh-p__category-image-wrapper img,
    .page-cwin05-ng-nh-p__promotion-image-wrapper img {
      max-width: 100% !important;
      height: 100% !important; /* Ensure height fills container if object-fit is cover */
      object-fit: cover !important;
      box-sizing: border-box !important;
    }

    /* Container for images (e.g., card image wrappers) */
    .page-cwin05-ng-nh-p__category-image-wrapper,
    .page-cwin05-ng-nh-p__promotion-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    @media (max-width: 768px) {
      .page-cwin05-ng-nh-p__category-image-wrapper,
      .page-cwin05-ng-nh-p__promotion-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
      .page-cwin05-ng-nh-p img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }
  