
    /* Reset và cơ bản */
    .page-8daynet {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f9fa;
      padding-bottom: 80px; /* Để chừa chỗ cho nút nổi */
    }

    /* Hero Section */
    .page-8daynet__hero-section {
      position: relative;
      width: 100%;
      min-height: 300px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
      padding-top: 10px; /* Essential for fixed header */
      box-sizing: border-box;
      overflow: hidden; /* Ensure image doesn't overflow */
    }

    .page-8daynet__hero-banner {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .page-8daynet__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 2;
    }

    .page-8daynet__hero-content {
      position: relative;
      z-index: 3;
      padding: 20px;
      max-width: 900px;
    }

    .page-8daynet__hero-title {
      font-size: 2.5em;
      margin-bottom: 10px;
      font-weight: bold;
      color: #ffd700; /* Gold */
    }

    .page-8daynet__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 20px;
      color: #eee;
    }

    /* Floating Promo Button */
    .page-8daynet__promo-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #ff4500; /* OrangeRed */
      color: #fff;
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-align: center;
      text-decoration: none;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: transform 0.3s ease, background-color 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: pulse 2s infinite;
      cursor: pointer; /* Ensure it looks clickable */
    }

    .page-8daynet__promo-button:hover {
      background-color: #e63900; /* Darker OrangeRed */
      transform: scale(1.05);
    }

    @keyframes pulse {
      0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.7);
      }
      70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 69, 0, 0);
      }
      100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 69, 0, 0);
      }
    }

    /* General Section Styling */
    .page-8daynet__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      margin-bottom: 30px;
    }

    .page-8daynet__section-title {
      font-size: 2em;
      color: #2c3e50; /* Dark Blue */
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-8daynet__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background-color: #ff4500; /* OrangeRed */
      border-radius: 2px;
    }

    /* Content Area */
    .page-8daynet__content-text {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: justify;
    }

    /* Game Categories */
    .page-8daynet__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      justify-content: center;
      padding: 20px 0;
    }

    .page-8daynet__game-card {
      background-color: #fefefe;
      border-radius: 12px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 20px;
    }

    .page-8daynet__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

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

    .page-8daynet__game-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover; /* Ensures image covers the area */
    }

    .page-8daynet__game-title {
      font-size: 1.5em;
      color: #007bff; /* Blue */
      margin: 15px 0 10px;
      padding: 0 15px;
    }

    .page-8daynet__game-description {
      font-size: 0.95em;
      color: #555;
      padding: 0 15px;
      margin-bottom: 15px;
      text-align: justify;
    }

    /* Promotion Section */
    .page-8daynet__promotion-card {
      background-color: #fff3cd; /* Light yellow */
      border: 1px solid #ffeeba;
      border-radius: 8px;
      padding: 25px;
      margin-bottom: 20px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .page-8daynet__promotion-card h3 {
      color: #856404; /* Dark yellow */
      font-size: 1.8em;
      margin-bottom: 15px;
    }

    .page-8daynet__promotion-card p {
      color: #856404;
      font-size: 1.1em;
      margin-bottom: 20px;
    }

    .page-8daynet__promotion-button {
      background-color: #28a745; /* Green */
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      display: inline-block;
      cursor: pointer;
    }

    .page-8daynet__promotion-button:hover {
      background-color: #218838; /* Darker green */
    }

    /* Guide Section */
    .page-8daynet__guide-steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 30px;
    }

    .page-8daynet__guide-step {
      background-color: #eaf6ff; /* Light blue */
      border-radius: 10px;
      padding: 25px;
      flex: 1 1 calc(33% - 30px); /* 3 items per row on desktop */
      min-width: 280px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-8daynet__guide-step:hover {
      transform: translateY(-5px);
    }

    .page-8daynet__guide-step-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #007bff; /* Blue */
      color: #fff;
      border-radius: 50%;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-8daynet__guide-step h3 {
      font-size: 1.4em;
      color: #0056b3; /* Darker blue */
      margin-bottom: 10px;
    }

    .page-8daynet__guide-step p {
      font-size: 1em;
      color: #444;
    }

    /* FAQ Section */
    .page-8daynet__faq-section {
      background-color: #f0f8ff; /* AliceBlue */
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      padding: 40px 20px;
      max-width: 900px;
      margin: 30px auto;
    }

    .page-8daynet__faq-item {
      background-color: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-8daynet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #f5f5f5;
      border-bottom: 1px solid #e0e0e0;
      transition: background-color 0.3s ease;
    }

    .page-8daynet__faq-question:hover {
      background-color: #e9ecef;
    }

    .page-8daynet__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #333;
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
      text-align: left;
    }

    .page-8daynet__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #007bff;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle from blocking click */
      transition: transform 0.3s ease;
    }

    .page-8daynet__faq-item.active .page-8daynet__faq-toggle {
      transform: rotate(45deg); /* Plus to X / Minus */
      color: #ff4500;
    }

    .page-8daynet__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;
      background-color: #ffffff;
      color: #555;
      text-align: justify;
    }

    .page-8daynet__faq-item.active .page-8daynet__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px !important;
      opacity: 1;
    }

    .page-8daynet__faq-answer p {
      margin-bottom: 0;
    }


    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-8daynet__hero-section {
        min-height: 250px;
        padding-top: 10px; /* Mobile fixed header padding */
      }

      .page-8daynet__hero-title {
        font-size: 1.8em;
      }

      .page-8daynet__hero-subtitle {
        font-size: 1em;
      }

      .page-8daynet__promo-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-8daynet__section {
        padding: 25px 15px;
        margin-bottom: 20px;
      }

      .page-8daynet__section-title {
        font-size: 1.6em;
        margin-bottom: 20px;
      }

      .page-8daynet__content-text {
        font-size: 1em;
      }

      .page-8daynet__game-categories {
        grid-template-columns: 1fr; /* Single column on mobile */
      }

      .page-8daynet__game-image-wrapper {
        height: 180px;
      }

      .page-8daynet__game-title {
        font-size: 1.3em;
      }

      .page-8daynet__guide-step {
        flex: 1 1 100%; /* Single item per row on mobile */
      }

      .page-8daynet__faq-question {
        padding: 12px 15px;
      }

      .page-8daynet__faq-question h3 {
        font-size: 1em;
      }

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

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

      /* Image responsive styles */
      .page-8daynet img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-8daynet__game-image-wrapper,
      .page-8daynet__hero-section {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-8daynet__hero-title {
        font-size: 1.5em;
      }
      .page-8daynet__hero-subtitle {
        font-size: 0.9em;
      }
      .page-8daynet__promo-button {
        bottom: 10px;
        right: 10px;
        padding: 10px 15px;
        font-size: 0.9em;
      }
      .page-8daynet__section-title {
        font-size: 1.4em;
      }
    }
  