
    /* Base styles for the page */
    .page-999okvip {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-bottom: 80px; /* Space for fixed footer/floating elements */
    }

    .page-999okvip__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-999okvip__section {
      padding: 40px 0;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .page-999okvip__section--dark {
        background-color: #1a1a1a;
        color: #f8f8f8;
    }
    .page-999okvip__section--dark h2,
    .page-999okvip__section--dark h3,
    .page-999okvip__section--dark h4 {
        color: #fff;
    }
    .page-999okvip__section--dark a {
        color: #ffcc00; /* Yellow for links */
    }

    .page-999okvip__title {
      text-align: center;
      color: #0056b3;
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-999okvip__subtitle {
      text-align: center;
      color: #0056b3;
      margin-bottom: 25px;
      font-size: 2em;
      font-weight: bold;
    }

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

    .page-999okvip__button {
      display: inline-block;
      background-color: #007bff;
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      text-align: center;
      border: none;
      cursor: pointer;
    }

    .page-999okvip__button:hover {
      background-color: #0056b3;
    }

    .page-999okvip__button--primary {
        background-color: #ff4500; /* Orange-red for primary actions */
    }
    .page-999okvip__button--primary:hover {
        background-color: #cc3700;
    }

    /* Hero Section */
    .page-999okvip__hero-section {
      position: relative;
      background-color: #000; /* Dark background for the banner */
      color: #fff;
      text-align: center;
      padding: 10px 0 40px; /* Added padding-top for fixed header */
      overflow: hidden;
      border-radius: 0 0 10px 10px;
    }

    .page-999okvip__hero-banner {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto; /* Center the image */
        border-radius: 8px;
        object-fit: cover; /* Ensures the image covers the area without distortion */
        min-height: 200px; /* Minimum height for hero banner */
    }

    .page-999okvip__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px 15px;
    }

    .page-999okvip__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      line-height: 1.2;
      color: #ffcc00; /* Yellow for hero title */
    }

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

    /* Floating Login Button */
    .page-999okvip__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      background-color: #ff4500; /* Orange-red */
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
      white-space: nowrap;
      display: block; /* Ensure it takes full width on small screens */
      width: calc(100% - 40px); /* Adjust width for mobile padding */
      max-width: 350px; /* Max width for larger screens */
    }

    .page-999okvip__floating-button:hover {
      background-color: #cc3700;
      transform: translateX(-50%) scale(1.05);
    }

    /* Info Cards */
    .page-999okvip__info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-999okvip__info-card {
      background-color: #f0f8ff; /* Light blue background */
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-999okvip__info-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    }

    .page-999okvip__info-card-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
      object-fit: contain;
      max-width: 100%;
      height: auto;
    }

    .page-999okvip__info-card-title {
      font-size: 1.4em;
      color: #0056b3;
      margin-bottom: 10px;
    }

    .page-999okvip__info-card-text {
      font-size: 0.95em;
      color: #555;
    }

    /* Game Categories */
    .page-999okvip__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-999okvip__game-card {
      background-color: #fff;
      border: 1px solid #eee;
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      transition: transform 0.3s ease;
    }

    .page-999okvip__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .page-999okvip__game-card-image {
      width: 100%;
      height: 150px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      max-width: 100%;
    }

    .page-999okvip__game-card-content {
      padding: 15px;
    }

    .page-999okvip__game-card-title {
      font-size: 1.1em;
      color: #0056b3;
      margin-bottom: 5px;
      font-weight: bold;
    }

    .page-999okvip__game-card-description {
      font-size: 0.85em;
      color: #666;
    }

    /* Promotions Section */
    .page-999okvip__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-999okvip__promo-card {
      background-color: #fdfae6; /* Light yellow for promos */
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
    }

    .page-999okvip__promo-card-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 5px;
        margin-bottom: 15px;
        max-width: 100%;
        height: auto;
    }

    .page-999okvip__promo-card-title {
      font-size: 1.5em;
      color: #e67e22; /* Orange for promo title */
      margin-bottom: 10px;
    }

    .page-999okvip__promo-card-description {
      font-size: 1em;
      color: #444;
      margin-bottom: 20px;
    }

    /* How-to Section (Steps) */
    .page-999okvip__steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-999okvip__step-item {
      text-align: center;
      background-color: #eaf7ff; /* Lighter blue */
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-999okvip__step-number {
      background-color: #007bff;
      color: #fff;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.8em;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .page-999okvip__step-title {
      font-size: 1.3em;
      color: #0056b3;
      margin-bottom: 10px;
    }

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

    /* FAQ Section */
    .page-999okvip__faq-list {
      margin-top: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-999okvip__faq-item {
      background-color: #f9f9f9;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-999okvip__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #007bff;
      color: #fff;
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-999okvip__faq-question:hover {
      background-color: #0056b3;
    }

    .page-999okvip__faq-question h3 {
        margin: 0;
        color: #fff;
        font-size: 1.1em; /* Adjust font size to match parent */
        pointer-events: none; /* Prevent h3 from interfering with click event */
    }

    .page-999okvip__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from interfering with click event */
    }

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

    .page-999okvip__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding for collapsed state */
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #333;
      background-color: #f0f8ff; /* Light background for answer */
    }

    .page-999okvip__faq-item.active .page-999okvip__faq-answer {
      max-height: 2000px !important; /* Sufficiently large for content */
      padding: 20px !important; /* Padding for expanded state */
      opacity: 1;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-999okvip__hero-section {
        padding-top: 10px; /* Ensure content is not hidden by fixed header on mobile */
      }
      .page-999okvip__title {
        font-size: 2em;
      }
      .page-999okvip__subtitle {
        font-size: 1.6em;
      }
      .page-999okvip__hero-title {
        font-size: 2em;
      }
      .page-999okvip__hero-description {
        font-size: 1em;
      }
      .page-999okvip__info-grid,
      .page-999okvip__game-grid,
      .page-999okvip__promo-grid,
      .page-999okvip__steps-grid {
        grid-template-columns: 1fr;
      }
      .page-999okvip__floating-button {
        width: calc(100% - 30px); /* Adjust width for mobile padding */
        font-size: 1em;
        padding: 12px 20px;
        bottom: 15px;
      }
      .page-999okvip__section {
        padding: 25px 0;
      }
      .page-999okvip__game-card-image {
        height: 120px;
      }
      .page-999okvip__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }
      .page-999okvip__faq-question h3 {
        font-size: 1em;
      }
      .page-999okvip__faq-answer {
        padding: 0 15px;
      }
      .page-999okvip__faq-item.active .page-999okvip__faq-answer {
        padding: 15px !important;
      }
      /* Image responsiveness for mobile */
      .page-999okvip img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-999okvip .page-999okvip__game-card-image,
      .page-999okvip .page-999okvip__promo-card-image,
      .page-999okvip .page-999okvip__hero-banner {
          width: 100% !important;
          max-width: 100% !important;
          height: auto !important;
          object-fit: cover !important;
      }
      .page-999okvip .page-999okvip__info-card-icon {
          width: 60px !important;
          height: 60px !important;
          object-fit: contain !important;
      }
    }

    /* General image container styling for responsiveness */
    .page-999okvip__image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    .page-999okvip__image-wrapper img {
        max-width: 100%;
        height: auto;
        display: block;
    }
  