
    .page-99ok-vin {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f9fa;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-99ok-vin__hero-section {
      position: relative;
      background-color: #0d47a1; /* Dark blue */
      color: #fff;
      padding: 10px 20px 60px 20px;
      text-align: center;
      overflow: hidden;
      padding-top: calc(10px + var(--header-offset, 0px)); /* Account for potential body padding-top, add a small decorative top padding */
    }

    .page-99ok-vin__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-99ok-vin__hero-content {
      position: relative;
      z-index: 1;
      max-width: 960px;
      margin: 0 auto;
    }

    .page-99ok-vin__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      font-weight: bold;
      color: #ffe000; /* Gold/yellow for emphasis */
    }

    .page-99ok-vin__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #fff;
    }

    .page-99ok-vin__cta-group {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .page-99ok-vin__button {
      display: inline-block;
      padding: 12px 25px;
      background-color: #ffe000;
      color: #0d47a1;
      text-decoration: none;
      border-radius: 30px;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      text-align: center;
    }

    .page-99ok-vin__button:hover {
      background-color: #ffc107;
      transform: translateY(-2px);
    }

    .page-99ok-vin__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-bottom: 1px solid #eee;
    }

    .page-99ok-vin__section:last-of-type {
      border-bottom: none;
    }

    .page-99ok-vin__section-title {
      font-size: 2.2em;
      color: #0d47a1;
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .page-99ok-vin__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: justify;
      color: #555;
    }

    .page-99ok-vin__features-grid,
    .page-99ok-vin__game-grid,
    .page-99ok-vin__provider-grid,
    .page-99ok-vin__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-99ok-vin__feature-item,
    .page-99ok-vin__game-card,
    .page-99ok-vin__provider-card,
    .page-99ok-vin__payment-card {
      background-color: #fefefe;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 25px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
      min-height: 250px;
    }

    .page-99ok-vin__feature-item:hover,
    .page-99ok-vin__game-card:hover,
    .page-99ok-vin__provider-card:hover,
    .page-99ok-vin__payment-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-99ok-vin__feature-icon,
    .page-99ok-vin__game-image,
    .page-99ok-vin__provider-logo,
    .page-99ok-vin__payment-logo {
      max-width: 100%;
      height: auto;
      margin-bottom: 15px;
      border-radius: 8px;
      object-fit: contain;
      max-height: 150px; /* Ensure images don't grow too large */
      width: auto;
    }

    .page-99ok-vin__feature-icon {
        width: 80px;
        height: 80px;
        object-fit: contain;
        margin-bottom: 20px;
    }

    .page-99ok-vin__game-image,
    .page-99ok-vin__provider-logo,
    .page-99ok-vin__payment-logo {
        width: 150px;
        height: auto;
        object-fit: contain;
    }

    .page-99ok-vin__feature-title,
    .page-99ok-vin__game-title,
    .page-99ok-vin__provider-name,
    .page-99ok-vin__payment-name {
      font-size: 1.3em;
      color: #0d47a1;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-99ok-vin__feature-description,
    .page-99ok-vin__game-description {
      font-size: 0.95em;
      color: #666;
    }

    .page-99ok-vin__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      background-color: rgba(13, 71, 161, 0.9);
      padding: 10px 20px;
      border-radius: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-99ok-vin__floating-button {
      padding: 10px 20px;
      background-color: #ffe000;
      color: #0d47a1;
      text-decoration: none;
      border-radius: 25px;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      font-size: 1em;
      white-space: nowrap;
    }

    .page-99ok-vin__floating-button:hover {
      background-color: #ffc107;
      transform: translateY(-2px);
    }

    .page-99ok-vin__promotions-list {
      list-style: none;
      padding: 0;
      margin: 30px 0;
    }

    .page-99ok-vin__promotion-item {
      background-color: #e3f2fd;
      border-left: 5px solid #0d47a1;
      margin-bottom: 15px;
      padding: 20px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 20px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-99ok-vin__promotion-image {
      flex-shrink: 0;
      width: 120px;
      height: 90px;
      object-fit: cover;
      border-radius: 5px;
    }

    .page-99ok-vin__promotion-content h3 {
      color: #0d47a1;
      margin-top: 0;
      margin-bottom: 10px;
      font-size: 1.5em;
    }

    .page-99ok-vin__promotion-content p {
      margin-bottom: 0;
      color: #555;
    }

    .page-99ok-vin__faq-container {
      max-width: 800px;
      margin: 40px auto;
      padding: 0 20px;
    }

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

    .page-99ok-vin__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #e3f2fd;
      color: #0d47a1;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-99ok-vin__faq-question:hover {
      background-color: #cfe8ff;
    }

    .page-99ok-vin__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #0d47a1;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-99ok-vin__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle from blocking click event */
      transition: transform 0.3s ease;
    }

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

    .page-99ok-vin__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;
      color: #444;
      background-color: #fefefe;
    }

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

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-99ok-vin__hero-section {
        padding: 10px 15px 40px 15px;
        padding-top: calc(10px + var(--header-offset, 0px));
      }

      .page-99ok-vin__hero-title {
        font-size: 2em;
      }

      .page-99ok-vin__hero-subtitle {
        font-size: 1em;
      }

      .page-99ok-vin__cta-group {
        flex-direction: column;
        gap: 10px;
      }

      .page-99ok-vin__button {
        width: 100%;
        padding: 10px 15px;
        font-size: 1em;
      }

      .page-99ok-vin__section {
        padding: 30px 15px;
      }

      .page-99ok-vin__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
      }

      .page-99ok-vin__text-content {
        font-size: 1em;
      }

      .page-99ok-vin__features-grid,
      .page-99ok-vin__game-grid,
      .page-99ok-vin__provider-grid,
      .page-99ok-vin__payment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-99ok-vin__feature-item,
      .page-99ok-vin__game-card,
      .page-99ok-vin__provider-card,
      .page-99ok-vin__payment-card {
        padding: 20px;
        min-height: auto;
      }

      .page-99ok-vin__feature-title,
      .page-99ok-vin__game-title,
      .page-99ok-vin__provider-name,
      .page-99ok-vin__payment-name {
        font-size: 1.2em;
      }

      .page-99ok-vin__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px);
        bottom: 15px;
        padding: 8px 15px;
        gap: 10px;
      }

      .page-99ok-vin__floating-button {
        flex: 1;
        font-size: 0.9em;
        padding: 8px 10px;
      }

      .page-99ok-vin__promotions-list {
        margin-top: 20px;
      }

      .page-99ok-vin__promotion-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        gap: 15px;
      }

      .page-99ok-vin__promotion-image {
        width: 100%;
        height: 150px;
      }

      .page-99ok-vin__promotion-content h3 {
        font-size: 1.3em;
      }

      .page-99ok-vin__faq-container {
        margin: 30px auto;
        padding: 0 15px;
      }

      .page-99ok-vin__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-99ok-vin__faq-question h3 {
        font-size: 1em;
      }

      .page-99ok-vin__faq-toggle {
        font-size: 1.3em;
      }

      .page-99ok-vin__faq-answer {
        padding: 15px 15px !important;
      }

      /* List item specific adjustments */
      .page-99ok-vin__features-grid > *,
      .page-99ok-vin__game-grid > *,
      .page-99ok-vin__provider-grid > *,
      .page-99ok-vin__payment-grid > *,
      .page-99ok-vin__promotions-list > * {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
          word-wrap: break-word !important;
          overflow-wrap: break-word !important;
          word-break: break-word !important;
      }
      .page-99ok-vin__features-grid,
      .page-99ok-vin__game-grid,
      .page-99ok-vin__provider-grid,
      .page-99ok-vin__payment-grid,
      .page-99ok-vin__promotions-list {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          padding: 0 !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
      }
    }
  