
    /* Global styles for page-net container */
    .page-net {
      font-family: 'Arial', sans-serif;
      background-color: #000; /* Nền đen */
      color: #fff; /* Chữ trắng */
      line-height: 1.6;
      overflow-x: hidden;
      max-width: 100vw;
      box-sizing: border-box;
    }

    /* General section padding */
    .page-net__section {
      padding: 40px 15px;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    /* Headings */
    .page-net h1, .page-net h2, .page-net h3 {
      color: #FFD700; /* Vàng cho tiêu đề */
      text-align: center;
      margin-bottom: 25px;
      font-weight: bold;
    }
    .page-net h1 {
      font-size: 2.5em;
      line-height: 1.2;
    }
    .page-net h2 {
      font-size: 2em;
    }
    .page-net h3 {
      font-size: 1.5em;
      color: #fff; /* Trắng cho tiêu đề phụ như câu hỏi FAQ */
    }

    /* Paragraphs */
    .page-net p {
      margin-bottom: 15px;
      color: #E0E0E0; /* Xám nhạt cho đoạn văn */
    }

    /* Buttons */
    .page-net__button {
      display: inline-block;
      background-color: #FFD700; /* Nút vàng */
      color: #000; /* Chữ đen trên nút */
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
      text-align: center;
    }
    .page-net__button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }
    .page-net__button--primary {
      display: block;
      width: fit-content;
      margin: 20px auto;
      font-size: 1.1em;
    }

    /* Image styles */
    .page-net img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
    .page-net img:hover {
      transform: scale(1.02);
    }

    /* Hero Section */
    .page-net__hero-section {
      position: relative;
      text-align: center;
      padding-top: 160px; /* Vùng an toàn cho header cố định */
      padding-bottom: 50px;
      background-color: #000;
    }
    .page-net__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      min-width: 320px; /* Kích thước tối thiểu cho ảnh hero */
      min-height: 200px; /* Kích thước tối thiểu cho ảnh hero */
      display: block;
      margin: 0 auto;
      border-radius: 0; /* Ảnh hero thường không có bo góc */
    }
    .page-net__hero-content {
      position: relative;
      z-index: 10;
      max-width: 800px;
      margin: 20px auto 0 auto;
      padding: 0 15px;
    }
    .page-net__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      line-height: 1.2;
      color: #FFD700;
    }
    .page-net__hero-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      color: #E0E0E0;
    }

    /* Game Categories */
    .page-net__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }
    .page-net__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      padding-bottom: 20px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }
    .page-net__game-card:hover {
      transform: translateY(-5px);
    }
    .page-net__game-card-image-wrapper {
      width: 100%;
      height: 200px; /* Chiều cao cố định cho ảnh thẻ game */
      overflow: hidden;
      margin-bottom: 15px;
    }
    .page-net__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .page-net__game-card-title {
      font-size: 1.3em;
      color: #FFD700;
      margin-bottom: 10px;
      padding: 0 15px;
    }
    .page-net__game-card-description {
      font-size: 0.95em;
      color: #bbb;
      padding: 0 15px;
    }

    /* Game Providers */
    .page-net__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }
    .page-net__provider-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }
    .page-net__provider-item:hover {
      transform: translateY(-3px);
    }
    .page-net__provider-logo {
      width: 100%;
      max-width: 150px; /* Chiều rộng tối đa cho logo */
      height: auto;
      max-height: 80px; /* Chiều cao tối đa cho logo */
      object-fit: contain; /* Đảm bảo logo vừa vặn mà không bị cắt */
      margin-bottom: 10px;
    }
    .page-net__provider-name {
      font-size: 1em;
      color: #FFD700;
      font-weight: bold;
    }

    /* Promotions */
    .page-net__promo-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      margin-top: 30px;
    }
    .page-net__promo-item {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    .page-net__promo-title {
      font-size: 1.4em;
      color: #FFD700;
      margin-bottom: 10px;
      text-align: left;
    }
    .page-net__promo-description {
      color: #E0E0E0;
      margin-bottom: 15px;
    }
    .page-net__promo-image-wrapper {
        width: 100%;
        height: 250px;
        margin-bottom: 20px;
        border-radius: 8px;
        overflow: hidden;
    }
    .page-net__promo-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Guides Section */
    .page-net__guide-step {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 20px;
      margin-bottom: 20px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    }
    .page-net__guide-step h3 {
      color: #FFD700;
      margin-top: 0;
      text-align: left;
    }
    .page-net__guide-step p {
      color: #E0E0E0;
    }

    /* FAQ Section */
    .page-net__faq-container {
      margin-top: 30px;
    }
    .page-net__faq-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    }
    .page-net__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #222;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }
    .page-net__faq-question:hover {
      background-color: #333;
    }
    .page-net__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #FFD700;
      pointer-events: none; /* Ngăn chặn văn bản chặn sự kiện click */
      text-align: left;
    }
    .page-net__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #FFD700;
      pointer-events: none; /* Ngăn chặn biểu tượng chặn sự kiện click */
      transition: transform 0.3s ease;
    }
    .page-net__faq-item.active .page-net__faq-toggle {
      transform: rotate(45deg); /* Xoay '+' thành 'x' hoặc dùng '-' trực tiếp */
    }
    .page-net__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Padding ban đầu */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #E0E0E0;
    }
    .page-net__faq-item.active .page-net__faq-answer {
      max-height: 2000px !important; /* Bắt buộc dùng !important */
      padding: 20px !important; /* Bắt buộc dùng !important */
      opacity: 1;
    }

    /* Floating Login Button */
    .page-net__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #FFD700;
      color: #000;
      padding: 15px 25px;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      text-decoration: none;
      text-align: center;
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap; /* Ngăn chặn xuống dòng */
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .page-net__floating-button:hover {
      background-color: #e6c200;
      transform: translateY(-3px);
    }

    /* Social Media */
    .page-net__social-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }
    .page-net__social-link-wrapper {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      width: 120px; /* Chiều rộng cố định cho các mục mạng xã hội */
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .page-net__social-link-wrapper:hover {
      transform: translateY(-3px);
    }
    .page-net__social-icon {
      width: 60px; /* Kích thước icon mạng xã hội */
      height: 60px;
      object-fit: contain;
      margin-bottom: 10px;
    }
    .page-net__social-name {
      color: #FFD700;
      font-weight: bold;
      font-size: 0.9em;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-net__section {
        padding: 30px 10px;
      }
      .page-net h1 {
        font-size: 2em;
      }
      .page-net h2 {
        font-size: 1.7em;
      }
      .page-net h3 {
        font-size: 1.3em;
      }
      .page-net__hero-section {
        padding-top: 160px; /* Giữ padding cho di động */
        padding-bottom: 30px;
      }
      .page-net__hero-title {
        font-size: 2.2em;
      }
      .page-net__hero-description {
        font-size: 1em;
      }
      .page-net__game-grid {
        grid-template-columns: 1fr;
      }
      .page-net__provider-item {
        padding: 10px;
      }
      .page-net__promo-item {
        padding: 20px;
      }
      .page-net__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
      .page-net__faq-question {
        padding: 12px 15px;
      }
      .page-net__faq-question h3 {
        font-size: 1em;
      }
      .page-net__faq-answer {
        padding: 0 15px;
      }
      .page-net__faq-item.active .page-net__faq-answer {
        padding: 15px !important;
      }
      /* Buộc các kiểu ảnh responsive trên di động */
      .page-net img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-net__hero-image {
        min-width: unset; /* Cho phép chiều rộng nhỏ hơn nếu container cho phép */
        min-height: unset;
      }
      .page-net__game-card-image-wrapper {
        height: 180px;
      }
      .page-net__promo-image-wrapper {
        height: 200px;
      }
    }
  