
    /* CSS Styles for page-f168 */
    .page-f168 {
      font-family: 'Arial', sans-serif;
      background-color: #000000;
      color: #FFFFFF;
      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 {
      text-align: center;
      padding-top: 160px; /* Safety area for fixed header */
      padding-bottom: 40px;
      position: relative;
      overflow: hidden;
    }

    .page-f168__hero-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
      margin: 0 auto;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    }

    .page-f168__hero-content {
      position: relative;
      z-index: 1;
      margin-top: 20px;
    }

    .page-f168__title {
      font-size: 2.8em;
      color: #FFD700;
      margin-bottom: 15px;
      text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
      font-weight: bold;
    }

    .page-f168__subtitle {
      font-size: 1.4em;
      color: #FFFFFF;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-f168__button {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    }

    .page-f168__button:hover {
      background-color: #e0b800;
      transform: translateY(-3px);
    }

    .page-f168__section {
      padding: 60px 0;
      text-align: center;
      border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    }

    .page-f168__section-title {
      font-size: 2.2em;
      color: #FFD700;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-f168__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: #FFD700;
      border-radius: 2px;
    }

    .page-f168__text-content {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      color: #E0E0E0;
    }

    .page-f168__game-grid,
    .page-f168__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 25px;
      margin-top: 40px;
      justify-items: center;
    }

    .page-f168__game-item,
    .page-f168__provider-item {
      background-color: #1a1a1a;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 220px; /* Ensure minimum height */
    }

    .page-f168__game-item:hover,
    .page-f168__provider-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    }

    .page-f168__game-image,
    .page-f168__provider-logo {
      width: 100%;
      max-width: 200px; /* Minimum 200px */
      height: auto;
      max-height: 150px;
      object-fit: contain;
      margin-bottom: 15px;
      border-radius: 8px;
    }

    .page-f168__game-name {
      font-size: 1.3em;
      color: #FFD700;
      font-weight: bold;
    }

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

    .page-f168__promo-card {
      background-color: #1a1a1a;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-f168__promo-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    }

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

    .page-f168__promo-content {
      padding: 25px;
    }

    .page-f168__promo-title {
      font-size: 1.5em;
      color: #FFD700;
      margin-bottom: 10px;
    }

    .page-f168__promo-description {
      font-size: 1em;
      color: #E0E0E0;
      margin-bottom: 20px;
    }

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

    .page-f168__step-item {
      background-color: #1a1a1a;
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-f168__step-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    }

    .page-f168__step-icon {
      width: 80px; /* Minimum 200px constraint is for actual images, not decorative icons. If these are images, they need to be larger. */
      height: 80px;
      background-color: #FFD700;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 2em;
      color: #000000;
      font-weight: bold;
    }

    .page-f168__step-title {
      font-size: 1.4em;
      color: #FFD700;
      margin-bottom: 15px;
    }

    .page-f168__step-description {
      color: #E0E0E0;
      font-size: 1em;
    }

    .page-f168__faq-section {
      text-align: left;
    }

    .page-f168__faq-item {
      background-color: #1a1a1a;
      margin-bottom: 15px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-f168__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #2a2a2a;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

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

    .page-f168__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #FFD700;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-f168__faq-toggle {
      font-size: 1.8em;
      color: #FFD700;
      font-weight: bold;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-f168__faq-item.active .page-f168__faq-toggle {
      transform: rotate(45deg); /* Change + to X (or similar) */
      content: '−'; /* Change to minus sign */
    }

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

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

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

    .page-f168__news-card {
      background-color: #1a1a1a;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-f168__news-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    }

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

    .page-f168__news-content {
      padding: 25px;
    }

    .page-f168__news-title {
      font-size: 1.4em;
      color: #FFD700;
      margin-bottom: 10px;
    }

    .page-f168__news-date {
      font-size: 0.9em;
      color: #AAAAAA;
      margin-bottom: 15px;
    }

    .page-f168__news-summary {
      font-size: 1em;
      color: #E0E0E0;
    }

    .page-f168__social-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      margin-top: 40px;
    }

    .page-f168__social-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 60px;
      background-color: #FFD700;
      border-radius: 50%;
      font-size: 2em;
      color: #000000;
      text-decoration: none;
      transition: transform 0.3s ease, background-color 0.3s ease;
      box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
    }

    .page-f168__social-icon:hover {
      transform: translateY(-5px) scale(1.1);
      background-color: #e0b800;
    }

    .page-f168__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #FFD700;
      color: #000000;
      padding: 12px 25px;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 5px 15px rgba(255, 215, 0, 0.6);
      z-index: 1000;
      cursor: pointer;
      border: none;
      animation: page-f168__pulse 1.5s infinite;
      text-align: center;
      max-width: 180px;
    }

    @keyframes page-f168__pulse {
      0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
      }
      70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
      }
      100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
      }
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-f168__hero-section {
        padding-top: 100px; /* Adjust for mobile fixed header */
        padding-bottom: 20px;
      }

      .page-f168__title {
        font-size: 2em;
      }

      .page-f168__subtitle {
        font-size: 1.1em;
      }

      .page-f168__section {
        padding: 40px 0;
      }

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

      .page-f168__text-content {
        font-size: 1em;
      }

      .page-f168__game-grid,
      .page-f168__provider-grid,
      .page-f168__promo-grid,
      .page-f168__steps-grid,
      .page-f168__news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-f168__game-item,
      .page-f168__provider-item {
        min-height: 180px;
        padding: 15px;
      }

      .page-f168__game-image,
      .page-f168__provider-logo {
        max-width: 150px;
        margin-bottom: 10px;
      }

      .page-f168__promo-image {
        height: 150px;
      }

      .page-f168__promo-content,
      .page-f168__news-content {
        padding: 15px;
      }

      .page-f168__promo-title,
      .page-f168__news-title {
        font-size: 1.2em;
      }

      .page-f168__faq-question {
        padding: 15px 20px;
      }

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

      .page-f168__faq-toggle {
        font-size: 1.5em;
      }

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

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

      .page-f168__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 10px 20px;
        font-size: 0.9em;
        max-width: 150px;
      }

      /* Image responsive optimization */
      .page-f168 img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-f168__container,
      .page-f168__game-item,
      .page-f168__promo-card,
      .page-f168__news-card,
      .page-f168__provider-item,
      .page-f168__faq-item,
      .page-f168__step-item {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  