
    :root {
      --primary-color: #e44d26; /* Màu đỏ cam chủ đạo */
      --secondary-color: #333; /* Màu chữ chính */
      --accent-color: #5cb85c; /* Màu xanh lá cho điểm nhấn/thành công */
      --background-color: #f5f5f5; /* Màu nền nhẹ */
      --light-text-color: #f0f0f0; /* Màu chữ sáng */
      --dark-text-color: #333; /* Màu chữ tối */
      --border-color: #ddd; /* Màu viền */
      --card-background: #fff; /* Màu nền thẻ */
    }

    /* Phong cách cơ bản cho trang */
    .page-18-win {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--dark-text-color);
      background-color: var(--background-color);
      padding-bottom: 80px; /* Khoảng trống cho nút nổi */
    }

    /* Xử lý khoảng cách với header cố định */
    .page-18-win__hero-section {
      padding-top: 10px; /* Khoảng đệm trên nhỏ mang tính trang trí */
    }
    .page-18-win__main-content {
      padding: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Tiêu đề thương hiệu căn giữa */
    .page-18-win__brand-header {
      text-align: center;
      padding: 20px 0;
      background: linear-gradient(90deg, #f7971e, #ffc900); /* Gradient vàng/cam */
      color: var(--light-text-color);
      margin-bottom: 20px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    .page-18-win__brand-header h1 {
      margin: 0;
      font-size: 2.5em;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #fff; /* Màu trắng để tương phản */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      padding: 0 15px; /* Đảm bảo có padding trên màn hình nhỏ */
    }
    .page-18-win__brand-header p {
      margin: 5px 0 0;
      font-size: 1.1em;
      color: #eee;
      padding: 0 15px;
    }

    /* Phần Hero */
    .page-18-win__hero-section {
      background: var(--secondary-color);
      color: var(--light-text-color);
      text-align: center;
      padding: 40px 20px;
      position: relative;
      overflow: hidden;
      margin-bottom: 30px;
    }
    .page-18-win__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5); /* Lớp phủ để dễ đọc văn bản */
      z-index: 1;
    }
    .page-18-win__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }
    .page-18-win__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
    }
    .page-18-win__hero-content h2 {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #fff;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }
    .page-18-win__hero-content p {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #eee;
    }
    .page-18-win__cta-button {
      display: inline-block;
      background-color: var(--primary-color);
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none; /* Đảm bảo trông như một nút */
      font-size: 1em;
    }
    .page-18-win__cta-button:hover {
      background-color: #c0392b; /* Đỏ sẫm hơn */
    }

    /* Nút Đăng Ký/Đăng Nhập nổi */
    .page-18-win__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: rgba(0, 0, 0, 0.8);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
      z-index: 1000;
    }
    .page-18-win__floating-button {
      flex: 1;
      margin: 0 5px;
      background-color: var(--primary-color);
      color: #fff;
      padding: 12px 10px;
      border-radius: 8px;
      text-align: center;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }
    .page-18-win__floating-button--register {
      background-color: var(--accent-color); /* Màu xanh lá cho đăng ký */
    }
    .page-18-win__floating-button--login {
      background-color: var(--primary-color); /* Màu đỏ cho đăng nhập */
    }
    .page-18-win__floating-button:hover {
      transform: translateY(-2px);
    }
    .page-18-win__floating-button--register:hover {
      background-color: #4CAF50; /* Xanh đậm hơn */
    }
    .page-18-win__floating-button--login:hover {
      background-color: #c0392b; /* Đỏ đậm hơn */
    }

    /* Các phần */
    .page-18-win__section {
      padding: 40px 20px;
      margin-bottom: 30px;
      background-color: var(--card-background);
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      text-align: center;
    }
    .page-18-win__section-title {
      font-size: 2.2em;
      color: var(--primary-color);
      margin-bottom: 25px;
      text-align: center;
      position: relative;
      padding-bottom: 10px;
    }
    .page-18-win__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;
      width: 80px;
      height: 4px;
      background-color: var(--primary-color);
      border-radius: 2px;
    }
    .page-18-win__section-description {
      font-size: 1.1em;
      color: var(--secondary-color);
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Lưới sản phẩm */
    .page-18-win__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      justify-content: center;
      margin-top: 30px;
    }
    .page-18-win__product-card {
      background-color: #f9f9f9;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center; /* Căn giữa nội dung theo chiều dọc */
      box-sizing: border-box; /* Quan trọng cho tính toán chiều rộng responsive */
    }
    .page-18-win__product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }
    .page-18-win__product-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    .page-18-win__product-image {
      width: 100%;
      max-width: 100%; /* Đảm bảo hình ảnh responsive */
      height: 250px; /* Chiều cao cố định để nhất quán */
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }
    .page-18-win__product-card:hover .page-18-win__product-image {
      transform: scale(1.05);
    }
    .page-18-win__product-info {
      padding: 20px;
      flex-grow: 1; /* Cho phép phần thông tin mở rộng */
    }
    .page-18-win__product-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }
    .page-18-win__product-description {
      font-size: 0.95em;
      color: var(--secondary-color);
      margin-bottom: 15px;
      flex-grow: 1;
    }
    .page-18-win__product-button {
      display: inline-block;
      background-color: var(--accent-color);
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
      font-size: 0.9em;
    }
    .page-18-win__product-button:hover {
      background-color: #4CAF50;
    }

    /* Phần Khuyến mãi */
    .page-18-win__promotion-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      list-style: none;
      padding: 0;
      margin: 0;
      justify-content: center;
    }
    .page-18-win__promotion-item {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      padding: 25px;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }
    .page-18-win__promotion-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }
    .page-18-win__promotion-item h3 {
      color: var(--primary-color);
      font-size: 1.6em;
      margin-top: 0;
      margin-bottom: 10px;
    }
    .page-18-win__promotion-item p {
      color: var(--secondary-color);
      font-size: 1em;
      line-height: 1.7;
      margin-bottom: 15px;
      flex-grow: 1;
    }
    .page-18-win__promotion-validity {
      font-size: 0.9em;
      color: #777;
      font-style: italic;
    }

    /* Phương thức thanh toán & Nhà cung cấp trò chơi */
    .page-18-win__partners-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-items: center;
      margin-top: 30px;
    }
    .page-18-win__partner-item {
      background-color: #fff;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      text-align: center;
      transition: transform 0.2s ease;
      box-sizing: border-box;
    }
    .page-18-win__partner-item:hover {
      transform: translateY(-3px);
    }
    .page-18-win__partner-logo {
      max-width: 100%;
      height: auto;
      max-height: 80px; /* Giới hạn chiều cao logo */
      object-fit: contain;
      display: block;
      margin: 0 auto;
    }
    .page-18-win__partner-name {
      margin-top: 10px;
      font-size: 0.9em;
      color: var(--secondary-color);
      font-weight: bold;
    }

    /* Phần Câu hỏi thường gặp (FAQ) */
    .page-18-win__faq-container {
      max-width: 900px;
      margin: 0 auto;
      text-align: left;
    }
    .page-18-win__faq-item {
      background-color: #fff;
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    .page-18-win__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #f0f0f0;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      color: var(--secondary-color);
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }
    .page-18-win__faq-question:hover {
      background-color: #e0e0e0;
    }
    .page-18-win__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none; /* Ngăn h3 chặn sự kiện click */
      color: var(--dark-text-color); /* Đảm bảo độ tương phản tốt */
    }
    .page-18-win__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--primary-color);
      pointer-events: none; /* Ngăn nút toggle chặn sự kiện click */
      transition: transform 0.3s ease;
    }
    .page-18-win__faq-item.active .page-18-win__faq-toggle {
      transform: rotate(45deg); /* Xoay '+' thành 'x' hoặc hiệu ứng tương tự */
    }
    .page-18-win__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.3s ease;
      color: var(--secondary-color);
    }
    .page-18-win__faq-item.active .page-18-win__faq-answer {
      max-height: 2000px !important; /* Đủ lớn để chứa mọi nội dung */
      padding: 20px 20px !important;
      opacity: 1;
    }
    .page-18-win__faq-answer p {
      margin: 0;
      padding-bottom: 10px; /* Thêm một ít khoảng trống dưới đoạn văn trong câu trả lời */
    }

    /* Phần Kêu gọi hành động */
    .page-18-win__cta-section {
      background: linear-gradient(135deg, var(--primary-color), #f7971e);
      color: var(--light-text-color);
      padding: 50px 20px;
      text-align: center;
      border-radius: 10px;
      margin-top: 40px;
    }
    .page-18-win__cta-section h2 {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: #fff;
    }
    .page-18-win__cta-section p {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Điều chỉnh Responsive */
    @media (max-width: 768px) {
      .page-18-win__brand-header h1 {
        font-size: 2em;
      }
      .page-18-win__hero-content h2 {
        font-size: 2em;
      }
      .page-18-win__hero-content p {
        font-size: 1em;
      }
      .page-18-win__section-title {
        font-size: 1.8em;
      }
      .page-18-win__section-description {
        font-size: 0.95em;
      }
      .page-18-win__product-grid,
      .page-18-win__promotion-list {
        grid-template-columns: 1fr; /* Xếp chồng thẻ trên di động */
      }
      .page-18-win__product-card,
      .page-18-win__promotion-item,
      .page-18-win__partner-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Điều chỉnh padding cho màn hình nhỏ hơn */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-18-win__product-image-wrapper,
      .page-18-win__product-image,
      .page-18-win__partner-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-18-win__partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-18-win__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }
      .page-18-win__faq-question h3 {
        font-size: 1em;
      }
      .page-18-win__faq-answer {
        padding: 0 15px;
      }
      .page-18-win__faq-item.active .page-18-win__faq-answer {
        padding: 15px 15px !important;
      }
      .page-18-win__cta-section h2 {
        font-size: 1.8em;
      }
      .page-18-win__cta-section p {
        font-size: 1em;
      }
      .page-18-win__floating-button {
        padding: 10px 8px;
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-18-win__brand-header h1 {
        font-size: 1.8em;
      }
      .page-18-win__hero-content h2 {
        font-size: 1.8em;
      }
      .page-18-win__section-title {
        font-size: 1.5em;
      }
      .page-18-win__floating-buttons {
        padding: 8px 0;
      }
      .page-18-win__floating-button {
        font-size: 0.9em;
        padding: 8px 5px;
      }
    }
  