
    /* Tổng quan */
    .page-link {
      font-family: 'Arial', sans-serif;
      background-color: #000000;
      color: #FFFFFF;
      line-height: 1.6;
      padding-bottom: 80px; /* Đảm bảo đủ không gian cho footer */
    }

    .page-link__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

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

    .page-link__section-title {
      font-size: 2.5em;
      color: #FFD700;
      margin-bottom: 30px;
      text-transform: uppercase;
    }

    .page-link__section-subtitle {
      font-size: 1.2em;
      color: #FFFFFF;
      margin-bottom: 40px;
    }

    /* Hero Section */
    .page-link__hero-section {
      padding-top: 10px; /* An toàn cho thanh điều hướng cố định */
      position: relative;
      overflow: hidden;
      background-color: #000000;
      padding-bottom: 30px;
    }

    .page-link__hero-image {
      width: 100%;
      height: auto;
      display: block;
      margin: 0 auto 20px auto;
      border-radius: 8px;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-link__hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 0 15px;
    }

    .page-link__hero-title {
      font-size: 2.8em;
      color: #FFD700;
      margin-bottom: 15px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-link__hero-description {
      font-size: 1.2em;
      color: #FFFFFF;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-link__cta-button {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 15px 30px;
      font-size: 1.2em;
      font-weight: bold;
      border-radius: 50px;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-link__cta-button:hover {
      background-color: #e6c200;
      transform: translateY(-3px);
    }

    /* Floating Login Button */
    .page-link__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      background-color: #FFD700;
      border-radius: 50px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      animation: page-link__pulse 2s infinite;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 10px 20px;
      max-width: calc(100% - 40px);
      box-sizing: border-box;
    }

    .page-link__floating-button a {
      color: #000000;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      display: block;
      max-width: 100%;
    }

    @keyframes page-link__pulse {
      0% { transform: translateX(-50%) scale(1); }
      50% { transform: translateX(-50%) scale(1.05); }
      100% { transform: translateX(-50%) scale(1); }
    }

    /* Game Categories */
    .page-link__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-link__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

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

    .page-link__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-link__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-link__game-card-title {
      font-size: 1.5em;
      color: #FFD700;
      margin-bottom: 10px;
    }

    .page-link__game-card-description {
      font-size: 0.95em;
      color: #CCCCCC;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-link__game-card-button {
      background-color: #FFD700;
      color: #000000;
      padding: 10px 20px;
      border-radius: 25px;
      font-weight: bold;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
      display: inline-block;
      width: fit-content;
      margin: 0 auto;
    }

    .page-link__game-card-button:hover {
      background-color: #e6c200;
    }

    /* Game Providers */
    .page-link__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-link__provider-logo {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

    .page-link__provider-logo:hover {
      transform: translateY(-3px);
    }

    .page-link__provider-logo img {
      max-width: 100%;
      max-height: 70px;
      height: auto;
      object-fit: contain;
      display: block;
      box-sizing: border-box;
    }

    /* Guide Section */
    .page-link__guide-steps {
      display: flex;
      flex-direction: column;
      gap: 30px;
      margin-top: 40px;
    }

    .page-link__guide-step {
      display: flex;
      align-items: center;
      text-align: left;
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-link__guide-step-number {
      font-size: 2.5em;
      font-weight: bold;
      color: #FFD700;
      margin-right: 20px;
      flex-shrink: 0;
    }

    .page-link__guide-step-content h3 {
      font-size: 1.8em;
      color: #FFD700;
      margin-bottom: 10px;
    }

    .page-link__guide-step-content p {
      color: #CCCCCC;
      font-size: 1em;
    }

    .page-link__guide-app-button {
      margin-top: 30px;
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 15px 30px;
      font-size: 1.2em;
      font-weight: bold;
      border-radius: 50px;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-link__guide-app-button:hover {
      background-color: #e6c200;
      transform: translateY(-3px);
    }

    /* Promotions */
    .page-link__promotions-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-link__promotion-item {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      text-align: left;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

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

    .page-link__promotion-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

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

    .page-link__promotion-title {
      font-size: 1.5em;
      color: #FFD700;
      margin-bottom: 10px;
    }

    .page-link__promotion-description {
      font-size: 0.95em;
      color: #CCCCCC;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-link__promotion-button {
      background-color: #FFD700;
      color: #000000;
      padding: 10px 20px;
      border-radius: 25px;
      font-weight: bold;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
      display: inline-block;
      width: fit-content;
      margin-top: auto;
    }

    .page-link__promotion-button:hover {
      background-color: #e6c200;
    }

    /* News Section */
    .page-link__news-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-link__news-item {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      text-align: left;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

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

    .page-link__news-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

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

    .page-link__news-title {
      font-size: 1.5em;
      color: #FFD700;
      margin-bottom: 10px;
    }

    .page-link__news-excerpt {
      font-size: 0.95em;
      color: #CCCCCC;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-link__news-button {
      background-color: #FFD700;
      color: #000000;
      padding: 10px 20px;
      border-radius: 25px;
      font-weight: bold;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
      display: inline-block;
      width: fit-content;
      margin-top: auto;
    }

    .page-link__news-button:hover {
      background-color: #e6c200;
    }

    /* FAQ Section */
    .page-link__faq-list {
      margin-top: 40px;
      text-align: left;
    }

    .page-link__faq-item {
      background-color: #1a1a1a;
      border-radius: 10px;
      margin-bottom: 15px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-link__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      cursor: pointer;
      user-select: none;
      color: #FFD700;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border-radius: 10px;
    }

    .page-link__faq-question:hover {
      background-color: #2a2a2a;
    }

    .page-link__faq-question h3 {
      margin: 0;
      color: #FFD700;
      pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
      flex-grow: 1;
    }

    .page-link__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      pointer-events: none; /* Ngăn chặn icon chặn sự kiện click */
      transition: transform 0.3s ease;
    }

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

    .page-link__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      color: #CCCCCC;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    .page-link__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
    }

    /* Social Media */
    .page-link__social-icons {
      display: flex;
      justify-content: center;
      gap: 25px;
      margin-top: 40px;
      flex-wrap: wrap;
    }

    .page-link__social-icon-wrapper {
      background-color: #1a1a1a;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .page-link__social-icon-wrapper:hover {
      transform: translateY(-5px);
      background-color: #FFD700;
    }

    .page-link__social-icon-wrapper:hover img {
      filter: brightness(0); /* Đảm bảo icon đen trên nền vàng */
    }

    .page-link__social-icon {
      width: 36px;
      height: 36px;
      object-fit: contain;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .page-link__hero-section {
        padding-top: 10px; /* An toàn cho thanh điều hướng cố định trên di động */
      }

      .page-link__section-title {
        font-size: 2em;
      }

      .page-link__hero-title {
        font-size: 2em;
      }

      .page-link__hero-description {
        font-size: 1em;
      }

      .page-link__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-link__floating-button {
        bottom: 15px;
        padding: 8px 15px;
        max-width: calc(100% - 30px);
      }

      .page-link__floating-button a {
        font-size: 0.95em;
      }

      .page-link__games-grid,
      .page-link__promotions-list,
      .page-link__news-list {
        grid-template-columns: 1fr;
      }

      .page-link__guide-step {
        flex-direction: column;
        text-align: center;
      }

      .page-link__guide-step-number {
        margin-right: 0;
        margin-bottom: 15px;
      }

      .page-link__guide-step-content h3 {
        font-size: 1.5em;
      }

      .page-link__guide-step-content p {
        font-size: 0.9em;
      }

      .page-link__faq-question {
        font-size: 1.1em;
        padding: 15px;
      }

      .page-link__faq-answer {
        padding: 15px !important;
      }

      .page-link__social-icon-wrapper {
        width: 50px;
        height: 50px;
      }

      .page-link__social-icon {
        width: 30px;
        height: 30px;
      }
      
      /* List item responsive requirements */
      .page-link__games-grid > *,
      .page-link__promotions-list > *,
      .page-link__news-list > *,
      .page-link__providers-grid > * {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-link__games-grid,
      .page-link__promotions-list,
      .page-link__news-list,
      .page-link__providers-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      
      .page-link__game-card-description,
      .page-link__promotion-description,
      .page-link__news-excerpt,
      .page-link__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }
  