
    :root {
      --page-f168__primary-color: #f3b40f; /* Gold/Yellow */
      --page-f168__secondary-color: #1a1a1a; /* Dark background */
      --page-f168__text-color: #ffffff; /* White text */
      --page-f168__light-text-color: #cccccc; /* Light grey text */
      --page-f168__accent-color: #e53935; /* Red for emphasis */
      --page-f168__border-color: #333333; /* Dark border */
    }

    .page-f168 {
      font-family: 'Arial', sans-serif;
      background-color: var(--page-f168__secondary-color);
      color: var(--page-f168__text-color);
      line-height: 1.6;
      overflow-x: hidden;
    }

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

    .page-f168__hero-section {
      position: relative;
      text-align: center;
      padding: 10px 0 50px; /* Add padding-top for fixed header, 10px for mobile and desktop */
      background-color: #000;
      overflow: hidden;
    }

    .page-f168__hero-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin: 0 auto;
    }

    .page-f168__hero-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      max-height: 500px; /* Limit height for aesthetic */
    }

    .page-f168__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px;
      margin-top: -100px; /* Pull content up over image */
      background: linear-gradient(to top, var(--page-f168__secondary-color) 0%, rgba(0,0,0,0) 100%);
    }

    .page-f168__hero-title {
      font-size: 2.8em;
      color: var(--page-f168__primary-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-f168__hero-description {
      font-size: 1.2em;
      color: var(--page-f168__text-color);
      max-width: 800px;
      margin: 0 auto 30px;
    }

    .page-f168__button {
      display: inline-block;
      background-color: var(--page-f168__primary-color);
      color: var(--page-f168__secondary-color);
      padding: 15px 30px;
      border-radius: 8px;
      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-f168__button:hover {
      background-color: #ffc107; /* Slightly lighter gold */
      transform: translateY(-2px);
    }

    .page-f168__section-title {
      font-size: 2.2em;
      color: var(--page-f168__primary-color);
      text-align: center;
      margin-bottom: 40px;
      padding-top: 40px;
      position: relative;
    }

    .page-f168__section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background-color: var(--page-f168__primary-color);
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-f168__text-content {
      margin-bottom: 40px;
      padding: 0 20px;
    }

    .page-f168__text-content p {
      margin-bottom: 15px;
      color: var(--page-f168__light-text-color);
    }

    .page-f168__text-content strong {
      color: var(--page-f168__text-color);
    }

    .page-f168__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      padding: 0 20px;
      margin-bottom: 50px;
    }

    .page-f168__game-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--page-f168__border-color);
    }

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

    .page-f168__game-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Fixed height for consistency */
    }

    .page-f168__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-f168__game-info {
      padding: 20px;
      text-align: center;
    }

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

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

    .page-f168__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-f168__accent-color);
      color: var(--page-f168__text-color);
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap; /* Prevent text wrapping */
    }

    .page-f168__floating-button:hover {
      background-color: #d32f2f; /* Slightly darker red */
      transform: translateY(-3px);
    }

    .page-f168__promo-list {
      list-style: none;
      padding: 0 20px;
      margin-bottom: 50px;
    }

    .page-f168__promo-item {
      background-color: #2a2a2a;
      border: 1px solid var(--page-f168__border-color);
      border-radius: 8px;
      padding: 20px;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 20px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    }

    .page-f168__promo-item-icon-container {
      width: 80px;
      height: 80px;
      flex-shrink: 0;
      border-radius: 50%;
      background-color: var(--page-f168__primary-color);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-f168__promo-item-icon {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-f168__promo-item-content {
      flex-grow: 1;
    }

    .page-f168__promo-title {
      font-size: 1.4em;
      color: var(--page-f168__primary-color);
      margin-bottom: 5px;
    }

    .page-f168__promo-description {
      font-size: 1em;
      color: var(--page-f168__light-text-color);
    }

    .page-f168__steps-list {
      list-style: none;
      padding: 0 20px;
      margin-bottom: 50px;
    }

    .page-f168__step-item {
      background-color: #2a2a2a;
      border: 1px solid var(--page-f168__border-color);
      border-radius: 8px;
      padding: 20px;
      margin-bottom: 20px;
      display: flex;
      align-items: flex-start;
      gap: 15px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    }

    .page-f168__step-number {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-f168__primary-color);
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid var(--page-f168__primary-color);
      border-radius: 50%;
    }

    .page-f168__step-content {
      flex-grow: 1;
    }

    .page-f168__step-title {
      font-size: 1.3em;
      color: var(--page-f168__primary-color);
      margin-top: 0;
      margin-bottom: 5px;
    }

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

    .page-f168__faq-section {
      padding: 0 20px 50px;
    }

    .page-f168__faq-item {
      background-color: #2a2a2a;
      border: 1px solid var(--page-f168__border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .page-f168__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #333;
      color: var(--page-f168__text-color);
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-f168__faq-question:hover {
      background-color: #444;
    }

    .page-f168__faq-question h3 {
      margin: 0;
      color: var(--page-f168__primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-f168__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      color: var(--page-f168__primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-f168__faq-item.active .page-f168__faq-toggle {
      transform: rotate(45deg); /* Plus to X (minus) */
    }

    .page-f168__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      color: var(--page-f168__light-text-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-f168__faq-item.active .page-f168__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-f168__conclusion-section {
      text-align: center;
      padding: 50px 20px;
      background-color: #111;
    }

    .page-f168__conclusion-title {
      font-size: 2em;
      color: var(--page-f168__primary-color);
      margin-bottom: 20px;
    }

    .page-f168__conclusion-text {
      font-size: 1.1em;
      color: var(--page-f168__light-text-color);
      margin-bottom: 30px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

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

      .page-f168__hero-section {
        padding: 10px 0 30px; /* Adjust padding-top for mobile fixed header */
      }

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

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

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

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

      .page-f168__game-card {
        margin: 0 10px;
      }

      .page-f168__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-f168__promo-item {
        flex-direction: column;
        text-align: center;
      }

      .page-f168__promo-item-icon-container {
        margin-bottom: 10px;
      }

      .page-f168__step-item {
        flex-direction: column;
        text-align: center;
      }

      .page-f168__step-number {
        margin: 0 auto 10px;
      }

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

      .page-f168__faq-question h3 {
        font-size: 1em;
      }

      .page-f168__faq-answer {
        padding: 15px 15px;
      }

      .page-f168__conclusion-title {
        font-size: 1.6em;
      }

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

      /* Image responsive important rules */
      .page-f168__hero-image,
      .page-f168__game-image,
      .page-f168__promo-item-icon {
          max-width: 100% !important;
          height: auto !important;
      }

      .page-f168__hero-image-container,
      .page-f168__game-image-container,
      .page-f168__promo-item-icon-container {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
    }
  