
    /* Tổng quan */
    .page-link {
      font-family: Arial, sans-serif;
      background-color: #1a1a1a; /* Nền đen */
      color: #ffffff; /* Chữ trắng */
      line-height: 1.6;
      padding-bottom: 80px; /* Đảm bảo không bị footer che */
    }

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

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

    .page-link__section-title {
      color: #ffd700; /* Vàng */
      font-size: 2.5em;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-link__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: #ffd700;
    }

    .page-link__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #e0e0e0;
    }

    /* Hero Section */
    .page-link__hero-section {
      background-color: #000;
      padding-top: 10px; /* Đảm bảo không bị header cố định che */
      padding-bottom: 40px;
      text-align: center;
    }

    .page-link__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto 20px auto;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }
    
    .page-link__hero-content {
      padding: 20px 15px;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-link__hero-title {
      color: #ffd700;
      font-size: 2.8em;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-link__hero-description {
      font-size: 1.2em;
      color: #ffffff;
      margin-bottom: 30px;
    }

    .page-link__cta-button {
      display: inline-block;
      background-color: #ff4500; /* Màu cam nổi bật */
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

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

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

    .page-link__game-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .page-link__game-card:hover {
      transform: translateY(-5px);
      background-color: #3a3a3a;
    }

    .page-link__game-icon {
      width: 100%;
      max-width: 250px; /* Minimum size requirement */
      height: auto;
      margin-bottom: 15px;
      border-radius: 8px;
    }

    .page-link__game-title {
      color: #ffd700;
      font-size: 1.2em;
      font-weight: bold;
    }

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

    .page-link__provider-logo-wrapper {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, background-color 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100px; /* Ensure logos have enough space */
    }

    .page-link__provider-logo-wrapper:hover {
      transform: scale(1.05);
      background-color: #3a3a3a;
    }

    .page-link__provider-logo {
      width: 100%;
      max-width: 200px; /* Minimum size requirement */
      height: auto;
      display: block;
    }

    /* Hướng dẫn chi tiết */
    .page-link__guide-step {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 25px;
      margin-bottom: 20px;
      text-align: left;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .page-link__guide-step h3 {
      color: #ffd700;
      font-size: 1.5em;
      margin-bottom: 10px;
    }

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

    /* Khuyến mãi */
    .page-link__promo-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 30px;
      margin-top: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      text-align: center;
    }

    .page-link__promo-card h3 {
      color: #ff4500;
      font-size: 2em;
      margin-bottom: 15px;
    }

    .page-link__promo-card p {
      color: #ffffff;
      font-size: 1.1em;
      margin-bottom: 25px;
    }

    /* FAQ Section */
    .page-link__faq-section {
      background-color: #1a1a1a;
      padding: 40px 0;
    }

    .page-link__faq-list {
      margin-top: 30px;
      text-align: left;
    }

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

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

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

    .page-link__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      color: #ffd700;
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-link__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-link__faq-item.active .page-link__faq-toggle {
      transform: rotate(45deg); /* Visually indicate open state */
    }

    .page-link__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      color: #e0e0e0;
      background-color: #2a2a2a;
      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; /* Sufficiently large to contain content */
      padding: 20px !important;
      opacity: 1;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .page-link__hero-title {
        font-size: 2em;
      }

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

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

      .page-link__game-grid,
      .page-link__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }

      .page-link__game-card,
      .page-link__provider-logo-wrapper {
        padding: 15px;
      }

      .page-link__game-title {
        font-size: 1em;
      }

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

      .page-link__promo-card h3 {
        font-size: 1.5em;
      }

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

      .page-link__faq-question h3 {
        font-size: 1.1em;
      }

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

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

      /* Force image responsive styles on mobile */
      .page-link img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-link__container {
        padding: 0 10px;
      }
    }

    @media (max-width: 480px) {
      .page-link__hero-title {
        font-size: 1.8em;
      }
      .page-link__cta-button {
        font-size: 1em;
        padding: 12px 25px;
      }
    }
  