
    /* Tổng quan */
    .page-60win {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f8f8f8;
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    /* Tiêu đề thương hiệu */
    .page-60win__brand-title {
      text-align: center;
      font-size: 2.8em;
      color: #e44d26; /* Màu cam nổi bật */
      margin: 20px 0;
      padding: 10px 0;
      background: linear-gradient(90deg, #ff7e5f, #feb47b);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
      font-weight: bold;
      letter-spacing: 1.5px;
    }

    @media (max-width: 768px) {
      .page-60win__brand-title {
        font-size: 2.2em;
        margin: 15px 0;
      }
    }

    /* Phần Hero */
    .page-60win__hero-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      background-color: #0a192f;
      color: #ffffff;
      padding: 60px 20px;
      text-align: center;
      box-sizing: border-box;
    }

    .page-60win__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 15px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }

    .page-60win__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 30px auto 0 auto;
      text-align: center;
    }

    .page-60win__hero-heading {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: #ffffff;
      line-height: 1.2;
      text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    }

    .page-60win__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #e0e0e0;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-60win__hero-button {
      display: inline-block;
      padding: 15px 35px;
      background-color: #e44d26;
      color: #ffffff;
      text-decoration: none;
      border-radius: 8px;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-60win__hero-button:hover {
      background-color: #ff6f40;
      transform: translateY(-3px);
    }

    @media (max-width: 768px) {
      .page-60win__hero-section {
        padding: 40px 15px;
      }
      .page-60win__hero-heading {
        font-size: 2.5em;
      }
      .page-60win__hero-description {
        font-size: 1.1em;
      }
      .page-60win__hero-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
    }

    /* Nút nổi Đăng ký/Đăng nhập */
    .page-60win__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-60win__floating-button {
      padding: 12px 25px;
      background-color: #e44d26;
      color: #ffffff;
      border: none;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      text-align: center;
      min-width: 120px;
    }

    .page-60win__floating-button:hover {
      background-color: #ff6f40;
      transform: translateY(-3px);
    }

    @media (max-width: 768px) {
      .page-60win__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
      }
      .page-60win__floating-button {
        padding: 10px 20px;
        font-size: 1em;
        min-width: 100px;
      }
    }

    /* Phần chung cho các section */
    .page-60win__section {
      padding: 50px 20px;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-60win__section:nth-of-type(odd) {
      background-color: #ffffff;
    }

    .page-60win__section-heading {
      text-align: center;
      font-size: 2.5em;
      color: #e44d26;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-60win__section-heading::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #e44d26;
      border-radius: 2px;
    }

    @media (max-width: 768px) {
      .page-60win__section {
        padding: 30px 15px;
      }
      .page-60win__section-heading {
        font-size: 2em;
        margin-bottom: 30px;
      }
    }

    /* Phần sản phẩm */
    .page-60win__products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .page-60win__product-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 12px 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;
      height: 100%;
    }

    .page-60win__product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-60win__product-image-container {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #f0f0f0;
      border-bottom: 1px solid #eee;
    }

    .page-60win__product-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover; /* Ensures image covers the area without distortion */
      width: 100%; /* Ensure it takes full width of its container */
      min-height: 200px; /* Ensure min height for image */
    }

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

    .page-60win__product-title {
      font-size: 1.6em;
      color: #e44d26;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-60win__product-description {
      font-size: 1em;
      color: #555;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    /* Phần khuyến mãi */
    .page-60win__promo-card {
      background-color: #fef3e9;
      border-radius: 10px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      margin-bottom: 30px;
    }

    .page-60win__promo-title {
      font-size: 2em;
      color: #e44d26;
      margin-bottom: 15px;
    }

    .page-60win__promo-description {
      font-size: 1.1em;
      color: #555;
      margin-bottom: 25px;
    }

    .page-60win__promo-button {
      display: inline-block;
      padding: 12px 30px;
      background-color: #e44d26;
      color: #ffffff;
      text-decoration: none;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-60win__promo-button:hover {
      background-color: #ff6f40;
      transform: translateY(-3px);
    }

    /* Phần tin tức */
    .page-60win__news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-60win__news-item {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-60win__news-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    }

    .page-60win__news-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .page-60win__news-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .page-60win__news-date {
      font-size: 0.9em;
      color: #888;
      margin-bottom: 10px;
    }

    .page-60win__news-title {
      font-size: 1.4em;
      color: #333;
      margin-bottom: 10px;
      font-weight: bold;
      flex-grow: 1;
    }

    .page-60win__news-excerpt {
      font-size: 1em;
      color: #666;
    }

    /* Phần giới thiệu */
    .page-60win__about-content {
      display: flex;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .page-60win__about-text {
      flex: 1;
      min-width: 300px;
    }

    .page-60win__about-text p {
      margin-bottom: 15px;
      color: #444;
    }

    .page-60win__about-image-container {
      flex: 1;
      min-width: 300px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-60win__about-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    }

    @media (max-width: 768px) {
      .page-60win__about-content {
        flex-direction: column;
        gap: 20px;
      }
      .page-60win__about-image-container {
        order: -1; /* Image appears first on mobile */
      }
    }

    /* Phần FAQ */
    .page-60win__faq-list {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-60win__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

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

    .page-60win__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-60win__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
      color: #e44d26;
    }

    .page-60win__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent */
      transition: transform 0.3s ease;
      color: #e44d26;
    }

    .page-60win__faq-item.active .page-60win__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
    }

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

    .page-60win__faq-item.active .page-60win__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-60win__faq-answer p {
      margin-bottom: 10px;
    }

    @media (max-width: 768px) {
      .page-60win__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-60win__faq-question h3 {
        font-size: 1.1em;
      }
      .page-60win__faq-toggle {
        font-size: 1.5em;
        margin-left: 10px;
      }
      .page-60win__faq-answer {
        padding: 0 20px;
      }
      .page-60win__faq-item.active .page-60win__faq-answer {
        padding: 15px 20px !important;
      }
    }

    /* Đảm bảo responsive cho các list items */
    .page-60win__products-grid > *,
    .page-60win__news-grid > * {
      box-sizing: border-box;
    }

    @media (max-width: 768px) {
      .page-60win__products-grid,
      .page-60win__news-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
      }

      .page-60win__products-grid > *,
      .page-60win__news-grid > * {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for smaller screens */
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-60win__product-image-container,
      .page-60win__news-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
    }
  