
    :root {
      --page-okvip-primary-color: #e44d26; /* Cam đậm */
      --page-okvip-secondary-color: #f7a000; /* Vàng cam */
      --page-okvip-dark-bg: #1a1a1a; /* Nền tối */
      --page-okvip-light-bg: #2a2a2a; /* Nền sáng hơn */
      --page-okvip-text-color: #f0f0f0; /* Chữ sáng */
      --page-okvip-accent-color: #4CAF50; /* Xanh lá nhấn */
      --page-okvip-border-color: #3a3a3a;
      --page-okvip-hover-color: #ff6600;
    }

    .page-okvip {
      font-family: 'Arial', sans-serif;
      color: var(--page-okvip-text-color);
      background-color: var(--page-okvip-dark-bg);
      line-height: 1.6;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 80px; /* Tạo không gian cho nút nổi */
    }

    .page-okvip__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      width: 100%;
      box-sizing: border-box;
    }

    /* Khoảng cách cho thanh điều hướng cố định */
    .page-okvip__hero-section {
      padding-top: 120px; /* Khoảng cách cho desktop */
      width: 100%;
      background-color: var(--page-okvip-light-bg);
    }

    @media (max-width: 768px) {
      .page-okvip__hero-section {
        padding-top: 100px; /* Khoảng cách cho mobile */
      }
    }

    .page-okvip__section {
      padding: 40px 0;
      width: 100%;
      background-color: var(--page-okvip-light-bg);
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .page-okvip__section--dark {
      background-color: var(--page-okvip-dark-bg);
    }

    .page-okvip__section-title {
      text-align: center;
      color: var(--page-okvip-primary-color);
      font-size: 2.5em;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-okvip__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;
      width: 80px;
      height: 4px;
      background-color: var(--page-okvip-secondary-color);
      border-radius: 2px;
    }

    .page-okvip__text-center {
      text-align: center;
    }

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

    .page-okvip__button:hover {
      background-color: var(--page-okvip-hover-color);
      transform: translateY(-2px);
    }

    /* Phần Hero */
    .page-okvip__hero-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 40px 20px;
    }

    .page-okvip__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 20px;
    }

    .page-okvip__hero-image {
      width: 100%;
      height: auto;
      border-radius: 10px;
      object-fit: cover;
      max-width: 100%; /* Quan trọng cho ảnh responsive */
    }

    .page-okvip__hero-title {
      color: var(--page-okvip-secondary-color);
      font-size: 3.5em;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-okvip__hero-subtitle {
      color: var(--page-okvip-text-color);
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
    }

    /* Nút nổi */
    .page-okvip__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--page-okvip-accent-color);
      color: white;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.2s ease;
      white-space: nowrap;
    }

    .page-okvip__floating-button:hover {
      background-color: #5cb85c;
      transform: translateX(-50%) translateY(-3px);
    }

    /* Lưới danh mục trò chơi */
    .page-okvip__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      justify-content: center;
      margin-top: 30px;
    }

    .page-okvip__game-item {
      background-color: var(--page-okvip-dark-bg);
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-okvip__game-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-okvip__game-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        height: 200px; /* Chiều cao cố định cho hình ảnh nhất quán */
    }

    .page-okvip__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      max-width: 100%; /* Quan trọng cho ảnh responsive */
    }

    .page-okvip__game-title {
      padding: 15px;
      font-size: 1.3em;
      color: var(--page-okvip-secondary-color);
      flex-grow: 1; /* Tiêu đề chiếm không gian còn lại */
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-okvip__game-title a {
      color: var(--page-okvip-secondary-color);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-okvip__game-title a:hover {
      color: var(--page-okvip-primary-color);
    }

    /* Khuyến mãi */
    .page-okvip__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-okvip__promo-card {
      background-color: var(--page-okvip-dark-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

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

    .page-okvip__promo-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        height: 220px; /* Chiều cao cố định cho hình ảnh khuyến mãi */
    }

    .page-okvip__promo-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      max-width: 100%; /* Quan trọng cho ảnh responsive */
    }

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

    .page-okvip__promo-title {
      font-size: 1.5em;
      color: var(--page-okvip-primary-color);
      margin-bottom: 10px;
    }

    .page-okvip__promo-description {
      font-size: 0.95em;
      color: var(--page-okvip-text-color);
      margin-bottom: 15px;
    }

    /* Phần Tính năng */
    .page-okvip__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-okvip__feature-item {
      background-color: var(--page-okvip-dark-bg);
      padding: 25px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-okvip__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-okvip__feature-icon-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100px; /* Chiều cao cố định cho biểu tượng tính năng */
    }

    .page-okvip__feature-icon {
      width: 80px; /* Sẽ sử dụng hình ảnh lớn hơn cho các biểu tượng này */
      height: 80px;
      object-fit: contain;
      max-width: 100%; /* Quan trọng cho ảnh responsive */
      border-radius: 50%;
      background-color: var(--page-okvip-primary-color);
      padding: 10px;
    }

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

    .page-okvip__feature-description {
      font-size: 0.95em;
      color: var(--page-okvip-text-color);
    }

    /* Nhà cung cấp trò chơi */
    .page-okvip__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
    }

    .page-okvip__provider-item {
      background-color: var(--page-okvip-dark-bg);
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease;
    }

    .page-okvip__provider-item:hover {
      transform: translateY(-3px);
    }

    .page-okvip__provider-logo-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        height: 80px; /* Chiều cao cố định cho logo */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .page-okvip__provider-logo {
      width: 100%;
      height: 100%;
      object-fit: contain;
      max-width: 100%; /* Quan trọng cho ảnh responsive */
    }

    /* Phần Câu hỏi thường gặp */
    .page-okvip__faq-section {
      background-color: var(--page-okvip-light-bg);
      padding: 40px 0;
      width: 100%;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .page-okvip__faq-item {
      margin-bottom: 15px;
      border: 1px solid var(--page-okvip-border-color);
      border-radius: 8px;
      overflow: hidden;
    }

    .page-okvip__faq-question {
      background-color: var(--page-okvip-dark-bg);
      padding: 18px 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 1.15em;
      font-weight: bold;
      color: var(--page-okvip-secondary-color);
      transition: background-color 0.3s ease;
    }

    .page-okvip__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-okvip__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Ngăn h3 chặn sự kiện click */
    }

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

    .page-okvip__faq-item.active .page-okvip__faq-toggle {
      transform: rotate(45deg); /* Dấu cộng thành dấu nhân */
    }

    .page-okvip__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      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: var(--page-okvip-light-bg);
      color: var(--page-okvip-text-color);
      font-size: 0.95em;
    }

    .page-okvip__faq-item.active .page-okvip__faq-answer {
      max-height: 2000px !important; /* Đủ lớn để hiển thị tất cả nội dung */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Điều chỉnh responsive */
    @media (max-width: 1024px) {
      .page-okvip__hero-title {
        font-size: 3em;
      }
      .page-okvip__hero-subtitle {
        font-size: 1.3em;
      }
      .page-okvip__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-okvip__container {
        padding: 15px;
      }
      .page-okvip__hero-title {
        font-size: 2.5em;
      }
      .page-okvip__hero-subtitle {
        font-size: 1.1em;
      }
      .page-okvip__section-title {
        font-size: 1.8em;
      }
      .page-okvip__button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-okvip__floating-button {
        width: calc(100% - 40px);
        bottom: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
      .page-okvip__game-grid, .page-okvip__promo-grid, .page-okvip__features-grid, .page-okvip__providers-grid {
        grid-template-columns: 1fr;
      }
      .page-okvip__game-item, .page-okvip__promo-card, .page-okvip__feature-item {
        margin: 0 auto;
        max-width: 400px;
      }
      .page-okvip__faq-question {
        font-size: 1em;
        padding: 15px;
      }
      .page-okvip__faq-answer {
        padding: 15px !important;
      }
      /* Buộc các kiểu ảnh responsive với !important */
      .page-okvip__hero-image,
      .page-okvip__game-image,
      .page-okvip__promo-image,
      .page-okvip__feature-icon,
      .page-okvip__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-okvip__hero-image-wrapper,
      .page-okvip__game-image-wrapper,
      .page-okvip__promo-image-wrapper,
      .page-okvip__feature-icon-wrapper,
      .page-okvip__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      .page-okvip__game-image-wrapper, .page-okvip__promo-image-wrapper {
        height: auto; /* Cho phép chiều cao tự điều chỉnh trên di động */
      }
      .page-okvip__feature-icon-wrapper {
        height: auto;
      }
    }

    @media (max-width: 480px) {
      .page-okvip__hero-title {
        font-size: 2em;
      }
      .page-okvip__hero-subtitle {
        font-size: 0.9em;
      }
      .page-okvip__section-title {
        font-size: 1.5em;
      }
      .page-okvip__floating-button {
        font-size: 0.9em;
        padding: 10px 15px;
      }
    }

  