
    /* CSS Styles for f168 page */
    :root {
      --page-f168-primary-color: #e44d26; /* A vibrant color for CTAs and highlights */
      --page-f168-secondary-color: #333;
      --page-f168-accent-color: #ffc107; /* Gold/yellow for bonuses */
      --page-f168-background-light: #f8f9fa;
      --page-f168-background-dark: #212529;
      --page-f168-text-color-light: #f8f9fa;
      --page-f168-text-color-dark: #333;
      --page-f168-border-color: #dee2e6;
    }

    .page-f168 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-f168-text-color-dark);
      background-color: var(--page-f168-background-light);
      padding: 20px 0;
    }

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

    .page-f168-hero {
      background: linear-gradient(135deg, #212529, #343a40);
      color: var(--page-f168-text-color-light);
      padding: 60px 20px;
      text-align: center;
      border-radius: 8px;
      margin-bottom: 40px;
      position: relative;
      overflow: hidden;
    }

    .page-f168-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('[GALLERY:pattern:abstract,geometric,dark]') no-repeat center center/cover;
      opacity: 0.1;
      z-index: 0;
    }

    .page-f168-hero-content {
      position: relative;
      z-index: 1;
    }

    .page-f168-hero h1 {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--page-f168-accent-color);
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-f168-hero p {
      font-size: 1.2em;
      max-width: 800px;
      margin: 0 auto 30px;
    }

    .page-f168-btn {
      display: inline-block;
      background-color: var(--page-f168-primary-color);
      color: var(--page-f168-text-color-light);
      padding: 15px 30px;
      border-radius: 50px;
      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-btn:hover {
      background-color: #c9401f;
      transform: translateY(-2px);
    }

    .page-f168-section {
      background-color: #fff;
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }

    .page-f168-section h2 {
      font-size: 2em;
      color: var(--page-f168-primary-color);
      margin-bottom: 25px;
      text-align: center;
      position: relative;
    }

    .page-f168-section h2::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: var(--page-f168-accent-color);
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-f168-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-f168-card {
      background-color: var(--page-f168-background-light);
      border: 1px solid var(--page-f168-border-color);
      border-radius: 8px;
      padding: 25px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .page-f168-card img {
      max-width: 80px;
      height: auto;
      margin-bottom: 15px;
    }

    .page-f168-card h3 {
      font-size: 1.4em;
      color: var(--page-f168-secondary-color);
      margin-bottom: 10px;
    }

    .page-f168-card p {
      font-size: 0.95em;
      color: #555;
    }

    .page-f168-review-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-bottom: 30px;
    }

    .page-f168-review-item img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .page-f168-review-item h3 {
      font-size: 1.6em;
      color: var(--page-f168-primary-color);
      margin-bottom: 10px;
    }

    .page-f168-review-item p {
      color: #444;
      margin-bottom: 15px;
    }

    .page-f168-list {
      list-style: none;
      padding: 0;
      text-align: left;
    }

    .page-f168-list li {
      background-color: var(--page-f168-background-light);
      border-left: 5px solid var(--page-f168-primary-color);
      margin-bottom: 10px;
      padding: 15px 20px;
      border-radius: 5px;
      display: flex;
      align-items: center;
      box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    }

    .page-f168-list li::before {
      content: '✓';
      color: var(--page-f168-primary-color);
      font-weight: bold;
      margin-right: 10px;
      font-size: 1.2em;
    }

    .page-f168-game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-f168-game-card {
      background-color: var(--page-f168-background-dark);
      color: var(--page-f168-text-color-light);
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-f168-game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

    .page-f168-game-card img {
      width: 100%;
      height: 100px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
    }

    .page-f168-game-card h3 {
      font-size: 1.1em;
      padding: 10px 5px;
      margin: 0;
    }

    .page-f168-game-card a {
      display: block;
      color: var(--page-f168-text-color-light);
      text-decoration: none;
      font-weight: bold;
      padding: 5px;
      background-color: var(--page-f168-primary-color);
      transition: background-color 0.3s ease;
    }

    .page-f168-game-card a:hover {
      background-color: #c9401f;
    }

    .page-f168-cta-banner {
      background-color: var(--page-f168-primary-color);
      color: var(--page-f168-text-color-light);
      padding: 40px 20px;
      text-align: center;
      border-radius: 8px;
      margin-top: 40px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .page-f168-cta-banner h2 {
      color: var(--page-f168-accent-color);
      font-size: 2.2em;
      margin-bottom: 15px;
    }

    .page-f168-cta-banner p {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Floating CTA Button */
    .page-f168-floating-cta {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      animation: page-f168-bounce 2s infinite ease-in-out;
    }

    @keyframes page-f168-bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    .page-f168-floating-cta .page-f168-btn {
      padding: 12px 25px;
      font-size: 1em;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-f168-hero h1 {
        font-size: 2em;
      }

      .page-f168-hero p {
        font-size: 1em;
      }

      .page-f168-section h2 {
        font-size: 1.8em;
      }

      .page-f168-grid {
        grid-template-columns: 1fr;
      }

      .page-f168-cta-banner h2 {
        font-size: 1.8em;
      }

      .page-f168-floating-cta {
        bottom: 15px;
        right: 15px;
      }

      .page-f168-floating-cta .page-f168-btn {
        padding: 10px 20px;
        font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
      .page-f168-hero {
        padding: 40px 15px;
      }
      .page-f168-section {
        padding: 30px 15px;
      }
    }
  