
    :root {
      --primary-color: #e44d26; /* Cam đậm */
      --secondary-color: #f7931e; /* Cam sáng */
      --dark-background: #1a1a1a; /* Nền tối */
      --medium-dark-background: #2a2a2a; /* Nền tối vừa */
      --light-text: #ffffff; /* Chữ sáng */
      --gray-text: #cccccc; /* Chữ xám */
      --border-color: #333333; /* Màu viền */
      --button-hover: #ff6f00; /* Màu nút hover */
      --header-offset: 122px; /* Giá trị mặc định, giả định được thiết lập bởi shared.css */
    }

    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--light-text);
      background-color: var(--dark-background);
      margin: 0;
      padding-top: var(--header-offset); /* Đảm bảo nội dung nằm dưới header cố định */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    .page-g-678 {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
      color: var(--light-text);
    }

    /* Điều chỉnh khoảng cách cho thanh điều hướng cố định */
    /* padding-top của body xử lý phần bù chính. Phần hero/đầu tiên sẽ có padding trang trí. */
    .page-g-678__hero-section {
      padding-top: 10px; /* Padding trang trí */
    }

    /* Phong cách chung cho các phần */
    .page-g-678__section {
      padding: 40px 0;
      text-align: center;
      margin-bottom: 20px;
      border-bottom: 1px solid var(--border-color);
    }

    .page-g-678__section:last-of-type {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-g-678__heading {
      color: var(--secondary-color);
      font-size: 2.5em;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-g-678__subheading {
      color: var(--primary-color);
      font-size: 1.8em;
      margin-bottom: 15px;
    }

    .page-g-678__paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--gray-text);
    }

    /* Phần Hero */
    .page-g-678__hero-section {
      position: relative;
      background-color: #000;
      padding: 60px 0;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
      text-align: center;
    }

    .page-g-678__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
      z-index: 1;
      max-width: 100%;
    }

    .page-g-678__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 0 20px;
    }

    .page-g-678__hero-title {
      font-size: 3.5em;
      color: var(--primary-color);
      margin-bottom: 15px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-g-678__hero-description {
      font-size: 1.3em;
      color: var(--light-text);
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-g-678__cta-button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--light-text);
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-g-678__cta-button:hover {
      background-color: var(--button-hover);
    }

    /* Các nút Đăng Ký/Đăng Nhập nổi */
    .page-g-678__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-g-678__floating-button {
      background-color: var(--primary-color);
      color: var(--light-text);
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      text-align: center;
      min-width: 120px;
    }

    .page-g-678__floating-button:hover {
      background-color: var(--button-hover);
      transform: translateY(-2px);
    }

    /* Phần Hiển Thị Sản Phẩm */
    .page-g-678__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
      max-width: 100%;
      justify-content: center; /* Căn giữa các mục trong lưới */
    }

    .page-g-678__product-card {
      background-color: var(--medium-dark-background);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
      box-sizing: border-box;
    }

    .page-g-678__product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-g-678__product-image-wrapper {
      width: 100%;
      height: 200px; /* Chiều cao cố định để nhất quán */
      overflow: hidden;
      margin-bottom: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #333; /* Nền giữ chỗ */
    }

    .page-g-678__product-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      max-width: 100%;
      transition: transform 0.3s ease;
    }

    .page-g-678__product-card:hover .page-g-678__product-image {
      transform: scale(1.05);
    }

    .page-g-678__product-title {
      font-size: 1.5em;
      color: var(--secondary-color);
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-g-678__product-description {
      font-size: 0.95em;
      color: var(--gray-text);
      padding: 0 15px;
      margin-bottom: 15px;
    }

    /* Phần Khuyến Mãi */
    .page-g-678__promotion-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
      max-width: 100%;
      justify-content: center;
    }

    .page-g-678__promotion-card {
      background-color: var(--medium-dark-background);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      padding: 25px;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-g-678__promotion-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-g-678__promotion-title {
      font-size: 1.6em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-g-678__promotion-description {
      font-size: 1em;
      color: var(--gray-text);
      margin-bottom: 20px;
      flex-grow: 1;
    }

    /* Phần Tính Năng */
    .page-g-678__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 30px;
      max-width: 100%;
      justify-content: center;
    }

    .page-g-678__feature-item {
      background-color: var(--medium-dark-background);
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-g-678__feature-item:hover {
      background-color: #3a3a3a;
    }

    .page-g-678__feature-icon {
      width: 200px; /* Kích thước tối thiểu theo yêu cầu */
      height: 200px;
      object-fit: contain; /* Đảm bảo hình ảnh hiển thị đầy đủ */
      margin-bottom: 20px;
      max-width: 100%;
      height: auto;
    }

    .page-g-678__feature-title {
      font-size: 1.4em;
      color: var(--secondary-color);
      margin-bottom: 10px;
    }

    .page-g-678__feature-description {
      font-size: 1em;
      color: var(--gray-text);
    }

    /* Phần Câu Hỏi Thường Gặp (FAQ) */
    .page-g-678__faq-section {
      text-align: left;
    }

    .page-g-678__faq-container {
      margin-top: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-g-678__faq-item {
      background-color: var(--medium-dark-background);
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-g-678__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #333;
      cursor: pointer;
      color: var(--light-text);
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-g-678__faq-question:hover {
      background-color: #444;
    }

    .page-g-678__faq-question h3 {
      margin: 0;
      color: var(--light-text);
      font-size: 1.2em;
      pointer-events: none; /* Ngăn h3 chặn sự kiện click */
    }

    .page-g-678__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn biểu tượng toggle chặn sự kiện click */
    }

    .page-g-678__faq-item.active .page-g-678__faq-toggle {
      transform: rotate(45deg); /* Thay đổi + thành X */
    }

    .page-g-678__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: var(--medium-dark-background);
      color: var(--gray-text);
      font-size: 1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    /* Phần Kêu Gọi Hành Động */
    .page-g-678__cta-section {
      background-color: #222;
      padding: 60px 0;
      border-radius: 12px;
    }

    /* Thiết Kế Đáp Ứng */
    @media (max-width: 1024px) {
      .page-g-678__hero-title {
        font-size: 3em;
      }
      .page-g-678__hero-description {
        font-size: 1.2em;
      }
      .page-g-678__heading {
        font-size: 2.2em;
      }
    }

    @media (max-width: 768px) {
      .page-g-678 {
        padding: 0 10px;
      }

      .page-g-678__hero-section {
        padding: 40px 0;
        min-height: 300px;
      }

      .page-g-678__hero-title {
        font-size: 2.5em;
      }

      .page-g-678__hero-description {
        font-size: 1em;
      }

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

      .page-g-678__heading {
        font-size: 2em;
      }

      .page-g-678__subheading {
        font-size: 1.5em;
      }

      /* Nút nổi */
      .page-g-678__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Sắp xếp ngang trên di động */
        gap: 8px;
      }
      .page-g-678__floating-button {
        padding: 10px 20px;
        font-size: 0.9em;
        min-width: 90px;
      }

      /* Lưới sản phẩm */
      .page-g-678__product-grid {
        grid-template-columns: 1fr; /* Một cột */
      }
      .page-g-678__product-card {
        margin-left: auto;
        margin-right: auto;
        max-width: 350px; /* Giới hạn chiều rộng cho các mục một cột */
      }

      /* Lưới khuyến mãi */
      .page-g-678__promotion-grid {
        grid-template-columns: 1fr;
      }
      .page-g-678__promotion-card {
        margin-left: auto;
        margin-right: auto;
        max-width: 350px;
      }

      /* Lưới tính năng */
      .page-g-678__feature-grid {
        grid-template-columns: 1fr;
      }
      .page-g-678__feature-item {
        margin-left: auto;
        margin-right: auto;
        max-width: 350px;
      }

      /* Đáp ứng cho mục FAQ */
      .page-g-678__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-g-678__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-g-678__faq-question h3 {
        font-size: 1.1em;
      }
      .page-g-678__faq-answer {
        padding: 15px 20px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-g-678__faq-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      /* Đảm bảo tất cả hình ảnh đáp ứng trên di động */
      .page-g-678 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-g-678__product-image-wrapper,
      .page-g-678__feature-icon {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      .page-g-678__feature-icon {
        width: 200px !important; /* Duy trì kích thước tối thiểu, nhưng cho phép chia tỷ lệ */
        height: auto !important;
        margin-left: auto;
        margin-right: auto;
      }
    }

    @media (max-width: 480px) {
      .page-g-678__hero-title {
        font-size: 2em;
      }
      .page-g-678__heading {
        font-size: 1.8em;
      }
      .page-g-678__floating-buttons {
        bottom: 10px;
        right: 10px;
        flex-direction: column; /* Xếp chồng dọc nếu màn hình rất hẹp */
      }
      .page-g-678__floating-button {
        min-width: unset; /* Bỏ min-width cho màn hình rất nhỏ */
        width: 100px; /* Chiều rộng cố định cho màn hình nhỏ */
        margin-left: auto;
        margin-right: auto;
      }
    }
  