
    :root {
      --primary-color: #e04040; /* Đỏ rực */
      --secondary-color: #f7b731; /* Vàng cam */
      --background-dark: #1a1a1a; /* Nền tối */
      --text-light: #ffffff; /* Chữ sáng */
      --text-dark: #333333; /* Chữ tối */
      --border-color: #333333; /* Màu viền */
      --gradient-start: #ff5f6d;
      --gradient-end: #ffc371;
    }

    .page-68win-tv-online {
      font-family: 'Arial', sans-serif;
      color: var(--text-light);
      background-color: var(--background-dark);
      line-height: 1.6;
      padding-top: 10px; /* Nhẹ nhàng để không bị che bởi header cố định */
    }

    .page-68win-tv-online__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-68win-tv-online__section--dark {
      background-color: #222222;
    }

    .page-68win-tv-online__hero-section {
      position: relative;
      overflow: hidden;
      padding: 60px 20px;
      background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
      min-height: 400px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .page-68win-tv-online__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0.3;
    }

    .page-68win-tv-online__hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      color: var(--text-light);
    }

    .page-68win-tv-online__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      font-weight: bold;
      color: var(--text-light);
    }

    .page-68win-tv-online__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
      color: var(--text-light);
    }

    .page-68win-tv-online__button {
      display: inline-block;
      padding: 12px 30px;
      background-color: var(--primary-color);
      color: var(--text-light);
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-68win-tv-online__button:hover {
      background-color: #c03030;
      transform: translateY(-2px);
    }

    .page-68win-tv-online__title {
      font-size: 2.5em;
      margin-bottom: 30px;
      color: var(--secondary-color);
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }

    .page-68win-tv-online__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #cccccc;
    }

    .page-68win-tv-online__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-68win-tv-online__product-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding-bottom: 20px;
    }

    .page-68win-tv-online__product-card:hover {
      transform: translateY(-5px);
    }

    .page-68win-tv-online__product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%; /* Ensure image is responsive */
      height: auto;
      box-sizing: border-box;
    }
    .page-68win-tv-online__product-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-68win-tv-online__product-title {
      font-size: 1.5em;
      margin: 20px 0 10px;
      color: var(--secondary-color);
    }

    .page-68win-tv-online__product-description {
      font-size: 0.95em;
      color: #b0b0b0;
      padding: 0 15px;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-68win-tv-online__promotion-section {
      background: url('[GALLERY:pattern:1920x400:abstract,geometric,pattern]') no-repeat center center;
      background-size: cover;
      background-attachment: fixed;
      padding: 80px 20px;
      color: var(--text-light);
      text-align: center;
      position: relative;
    }

    .page-68win-tv-online__promotion-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      z-index: 0;
    }

    .page-68win-tv-online__promotion-content {
      position: relative;
      z-index: 1;
    }

    .page-68win-tv-online__promotion-title {
      font-size: 3em;
      color: var(--secondary-color);
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-68win-tv-online__promotion-text {
      font-size: 1.2em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #e0e0e0;
    }

    .page-68win-tv-online__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-68win-tv-online__floating-button {
      background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
      color: var(--text-light);
      border: none;
      border-radius: 50px;
      padding: 15px 25px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      text-decoration: none; /* For the <a> tag */
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-68win-tv-online__floating-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    }

    .page-68win-tv-online__floating-button i {
      margin-right: 8px;
    }

    .page-68win-tv-online__faq-section {
      background-color: var(--background-dark);
      padding: 60px 20px;
    }

    .page-68win-tv-online__faq-title {
      font-size: 2.5em;
      color: var(--secondary-color);
      margin-bottom: 40px;
      text-align: center;
    }

    .page-68win-tv-online__faq-list {
      max-width: 900px;
      margin: 0 auto;
      list-style: none;
      padding: 0;
    }

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

    .page-68win-tv-online__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      cursor: pointer;
      background-color: #3a3a3a;
      border-bottom: 1px solid var(--border-color);
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-68win-tv-online__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-68win-tv-online__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--text-light);
      pointer-events: none; /* Allow click on parent div */
    }

    .page-68win-tv-online__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--secondary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Allow click on parent div */
    }

    .page-68win-tv-online__faq-item.active .page-68win-tv-online__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
    }

    .page-68win-tv-online__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #2a2a2a;
      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;
      text-align: left;
      font-size: 1em;
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-68win-tv-online__hero-title {
        font-size: 2.5em;
      }

      .page-68win-tv-online__hero-subtitle {
        font-size: 1.2em;
      }

      .page-68win-tv-online__title,
      .page-68win-tv-online__promotion-title,
      .page-68win-tv-online__faq-title {
        font-size: 2em;
      }

      .page-68win-tv-online__section {
        padding: 30px 15px;
      }

      .page-68win-tv-online__product-grid {
        grid-template-columns: 1fr;
      }

      .page-68win-tv-online__product-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-68win-tv-online__product-image-wrapper {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }

      .page-68win-tv-online__floating-buttons {
        flex-direction: row;
        width: 100%;
        bottom: 0;
        right: 0;
        left: 0;
        background-color: #1a1a1a;
        padding: 10px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
        justify-content: space-around;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
      }

      .page-68win-tv-online__floating-button {
        padding: 10px 15px;
        font-size: 0.9em;
        flex: 1;
        margin: 0 5px;
      }

      .page-68win-tv-online__floating-button i {
        margin-right: 5px;
      }

      .page-68win-tv-online__faq-question {
        padding: 15px 20px;
      }

      .page-68win-tv-online__faq-question h3 {
        font-size: 1.1em;
      }

      .page-68win-tv-online__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-68win-tv-online__hero-title {
        font-size: 2em;
      }
      .page-68win-tv-online__hero-subtitle {
        font-size: 1em;
      }
      .page-68win-tv-online__button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-68win-tv-online__floating-buttons {
        gap: 5px;
      }
      .page-68win-tv-online__floating-button {
        padding: 8px 10px;
        font-size: 0.85em;
      }
    }
  