
    .page-f168okvip {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    .page-f168okvip__hero-section {
      background-color: #1a1a1a;
      color: #fff;
      padding: 10px 20px 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .page-f168okvip__hero-content {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .page-f168okvip__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #ffcc00;
      line-height: 1.2;
    }

    .page-f168okvip__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-f168okvip__hero-image-wrapper {
      margin-top: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }

    .page-f168okvip__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      min-width: 200px;
      min-height: 200px;
    }

    .page-f168okvip__keyword {
      color: #ffcc00;
      font-weight: bold;
    }

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

    .page-f168okvip__register-btn,
    .page-f168okvip__login-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      text-align: center;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      border: none;
    }

    .page-f168okvip__register-btn {
      background-color: #ffcc00;
      color: #1a1a1a;
    }

    .page-f168okvip__register-btn:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

    .page-f168okvip__login-btn {
      background-color: #007bff;
      color: #fff;
    }

    .page-f168okvip__login-btn:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

    .page-f168okvip__about-section,
    .page-f168okvip__game-categories-section,
    .page-f168okvip__promotions-section,
    .page-f168okvip__payment-section,
    .page-f168okvip__providers-section,
    .page-f168okvip__faq-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      margin-bottom: 30px;
    }

    .page-f168okvip__section-title {
      font-size: 2.2em;
      color: #1a1a1a;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
    }

    .page-f168okvip__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: #ffcc00;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-f168okvip__about-content {
      display: flex;
      gap: 40px;
      align-items: center;
    }

    .page-f168okvip__about-text {
      flex: 1;
    }

    .page-f168okvip__about-text p {
      margin-bottom: 20px;
      font-size: 1.1em;
    }

    .page-f168okvip__about-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-f168okvip__about-list-item {
      background-color: #f0f0f0;
      padding: 15px 20px;
      margin-bottom: 10px;
      border-left: 5px solid #ffcc00;
      border-radius: 5px;
      font-size: 1em;
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-f168okvip__about-image-wrapper {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-f168okvip__about-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      min-width: 200px;
      min-height: 200px;
      object-fit: cover;
    }

    .page-f168okvip__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-content: center;
    }

    .page-f168okvip__game-item {
      background-color: #f9f9f9;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      text-align: center;
      padding: 25px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-f168okvip__game-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.12);
    }

    .page-f168okvip__game-image {
      max-width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 15px;
      min-width: 200px;
      min-height: 200px;
    }

    .page-f168okvip__game-title {
      font-size: 1.5em;
      color: #1a1a1a;
      margin-bottom: 10px;
    }

    .page-f168okvip__game-description {
      font-size: 0.95em;
      color: #555;
    }

    .page-f168okvip__promo-content {
      display: flex;
      gap: 40px;
      align-items: center;
      flex-wrap: wrap;
    }

    .page-f168okvip__promo-image {
      flex: 1;
      min-width: 300px;
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      object-fit: cover;
      min-height: 200px;
    }

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

    .page-f168okvip__promo-text p {
      font-size: 1.1em;
      margin-bottom: 25px;
    }

    .page-f168okvip__promo-button-wrapper {
      text-align: center;
    }

    .page-f168okvip__promo-button {
      display: inline-block;
      background-color: #ffcc00;
      color: #1a1a1a;
      padding: 15px 35px;
      border-radius: 30px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-f168okvip__promo-button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

    .page-f168okvip__payment-intro,
    .page-f168okvip__providers-intro {
      text-align: center;
      font-size: 1.1em;
      margin-bottom: 30px;
      color: #555;
    }

    .page-f168okvip__payment-grid,
    .page-f168okvip__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 25px;
      justify-content: center;
      text-align: center;
    }

    .page-f168okvip__payment-item,
    .page-f168okvip__provider-item {
      background-color: #f0f0f0;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s ease;
      box-sizing: border-box;
    }

    .page-f168okvip__payment-item:hover,
    .page-f168okvip__provider-item:hover {
      transform: translateY(-3px);
    }

    .page-f168okvip__payment-logo,
    .page-f168okvip__provider-logo {
      max-width: 100%;
      height: 80px;
      object-fit: contain;
      margin-bottom: 10px;
      min-width: 200px;
      min-height: 200px;
    }

    .page-f168okvip__payment-name,
    .page-f168okvip__provider-name {
      font-weight: bold;
      color: #333;
      font-size: 1em;
    }

    .page-f168okvip__faq-container {
      margin-top: 30px;
    }

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

    .page-f168okvip__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      font-size: 1.2em;
      font-weight: bold;
      color: #1a1a1a;
      cursor: pointer;
      user-select: none;
      background-color: #fff;
      border-bottom: 1px solid #eee;
    }

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

    .page-f168okvip__faq-title {
      margin: 0;
      pointer-events: none; /* Prevents text selection interfering with click */
      color: #1a1a1a;
    }

    .page-f168okvip__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents icon interfering with click */
      color: #ffcc00;
    }

    .page-f168okvip__faq-item.active .page-f168okvip__faq-toggle {
      transform: rotate(45deg);
    }

    .page-f168okvip__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.4s ease;
      background-color: #fefefe;
      border-top: 1px solid #eee;
      color: #555;
    }

    .page-f168okvip__faq-item.active .page-f168okvip__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px !important;
      opacity: 1;
    }

    .page-f168okvip__faq-answer p {
      margin: 0;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-f168okvip__hero-section {
        padding: 10px 15px 40px;
      }

      .page-f168okvip__hero-title {
        font-size: 2em;
      }

      .page-f168okvip__hero-description {
        font-size: 1em;
      }

      .page-f168okvip__floating-buttons {
        flex-direction: row;
        bottom: 10px;
        right: 10px;
        left: 10px;
        gap: 8px;
        justify-content: center;
      }

      .page-f168okvip__register-btn,
      .page-f168okvip__login-btn {
        flex: 1;
        padding: 10px 15px;
        font-size: 1em;
      }

      .page-f168okvip__about-section,
      .page-f168okvip__game-categories-section,
      .page-f168okvip__promotions-section,
      .page-f168okvip__payment-section,
      .page-f168okvip__providers-section,
      .page-f168okvip__faq-section {
        padding: 40px 15px;
        margin-bottom: 20px;
      }

      .page-f168okvip__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      .page-f168okvip__about-content {
        flex-direction: column;
        gap: 30px;
      }

      .page-f168okvip__about-text p {
        font-size: 1em;
      }

      .page-f168okvip__about-list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        font-size: 0.95em;
      }

      .page-f168okvip__about-image {
        max-width: 100% !important;
        height: auto !important;
        min-width: 200px !important;
        min-height: 200px !important;
        box-sizing: border-box !important;
      }

      .page-f168okvip__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-f168okvip__game-item {
        padding: 20px;
      }

      .page-f168okvip__game-image {
        height: 180px;
        min-width: 200px !important;
        min-height: 180px !important;
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-f168okvip__promo-content {
        flex-direction: column;
        gap: 30px;
      }

      .page-f168okvip__promo-image {
        min-width: unset;
        max-width: 100% !important;
        height: auto !important;
        min-height: 200px !important;
        box-sizing: border-box !important;
      }

      .page-f168okvip__promo-text p {
        font-size: 1em;
      }

      .page-f168okvip__promo-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-f168okvip__payment-grid,
      .page-f168okvip__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
      }

      .page-f168okvip__payment-logo,
      .page-f168okvip__provider-logo {
        height: 60px;
        min-width: 120px !important;
        min-height: 120px !important;
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-f168okvip__payment-name,
      .page-f168okvip__provider-name {
        font-size: 0.9em;
      }

      .page-f168okvip__faq-question {
        padding: 15px;
        font-size: 1.1em;
      }

      .page-f168okvip__faq-answer {
        padding: 0 15px;
      }

      .page-f168okvip__faq-item.active .page-f168okvip__faq-answer {
        padding: 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-f168okvip__hero-title {
        font-size: 1.6em;
      }

      .page-f168okvip__section-title {
        font-size: 1.5em;
      }

      .page-f168okvip__payment-grid,
      .page-f168okvip__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }

      .page-f168okvip__payment-logo,
      .page-f168okvip__provider-logo {
        min-width: 100px !important;
        min-height: 100px !important;
      }
    }
  