
    /* Base Styles */
    .page-f168snet {
      font-family: Arial, sans-serif;
      color: #fff; /* White text */
      background-color: #000; /* Black background */
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: 10px; /* Small top padding for hero section, body already has header-offset */
    }

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

    .page-f168snet__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-f168snet__section--dark {
      background-color: #0d0d0d;
    }

    .page-f168snet__heading {
      color: #ffcc00; /* Yellow for headings */
      margin-bottom: 20px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-f168snet__subheading {
      color: #fff;
      margin-bottom: 30px;
      font-size: 1.5em;
      font-weight: normal;
    }

    .page-f168snet__text {
      color: #fff;
      margin-bottom: 15px;
    }

    /* Hero Section */
    .page-f168snet__hero-section {
      position: relative;
      padding: 10px 0 60px; /* Adjusted padding-top as body has offset */
      text-align: center;
      background-color: #000;
    }

    .page-f168snet__hero-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
      object-fit: cover;
      box-sizing: border-box;
    }
    .page-f168snet__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 30px;
    }

    .page-f168snet__hero-content {
      position: relative;
      z-index: 1;
      padding: 0 15px;
    }

    .page-f168snet__hero-title {
      font-size: 3em;
      color: #ffcc00;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .page-f168snet__hero-subtitle {
      font-size: 1.3em;
      color: #fff;
      margin-bottom: 40px;
    }

    .page-f168snet__button {
      display: inline-block;
      background-color: #ffcc00;
      color: #000;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-f168snet__button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    /* Floating Login Button */
    .page-f168snet__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #ff0000; /* Red for urgency */
      color: #fff;
      padding: 15px 25px;
      border-radius: 50px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      font-weight: bold;
      font-size: 1em;
      cursor: pointer;
      border: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-f168snet__floating-button:hover {
      background-color: #cc0000;
      transform: scale(1.05);
    }

    /* Game Categories */
    .page-f168snet__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-f168snet__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-f168snet__game-card:hover {
      transform: translateY(-5px);
      background-color: #2a2a2a;
    }

    .page-f168snet__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
    }
    .page-f168snet__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 15px;
      box-sizing: border-box;
    }

    .page-f168snet__game-card-title {
      font-size: 1.4em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-f168snet__game-card-description {
      color: #ccc;
      font-size: 0.95em;
    }

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

    .page-f168snet__provider-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-f168snet__provider-item:hover {
      transform: translateY(-3px);
    }
    .page-f168snet__provider-logo-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }
    .page-f168snet__provider-logo {
      max-width: 100%;
      height: 100px; /* Fixed height for logos */
      object-fit: contain;
      box-sizing: border-box;
    }

    /* Promotions Section */
    .page-f168snet__promo-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 30px;
      margin-bottom: 30px;
      text-align: left;
      display: flex;
      align-items: center;
      gap: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-f168snet__promo-image-wrapper {
      flex-shrink: 0;
      width: 250px;
      height: 150px;
      overflow: hidden;
      border-radius: 8px;
      box-sizing: border-box;
    }
    .page-f168snet__promo-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      box-sizing: border-box;
    }

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

    .page-f168snet__promo-title {
      font-size: 1.8em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-f168snet__promo-description {
      color: #ccc;
      margin-bottom: 20px;
    }

    /* Why Choose Us Section */
    .page-f168snet__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-f168snet__feature-item {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 25px;
      text-align: left;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-f168snet__feature-icon-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 15px;
    }
    .page-f168snet__feature-icon {
      width: 200px; /* Smallest allowed image size */
      height: 200px;
      object-fit: contain;
      margin-bottom: 15px;
      box-sizing: border-box;
    }

    .page-f168snet__feature-title {
      font-size: 1.3em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-f168snet__feature-description {
      color: #ccc;
    }

    /* FAQ Section */
    .page-f168snet__faq-list {
      margin-top: 40px;
      text-align: left;
    }

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

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

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

    .page-f168snet__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from intercepting click */
    }

    .page-f168snet__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      pointer-events: none; /* Prevent toggle icon from intercepting click */
      transition: transform 0.3s ease;
    }

    .page-f168snet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding */
      color: #ccc;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      box-sizing: border-box;
    }

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

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

    /* Call to Action Section */
    .page-f168snet__cta-section {
      background-color: #1a1a1a;
      padding: 80px 0;
      margin-top: 60px;
    }

    .page-f168snet__cta-title {
      font-size: 2.2em;
      color: #ffcc00;
      margin-bottom: 20px;
    }

    .page-f168snet__cta-description {
      font-size: 1.1em;
      color: #fff;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-f168snet__hero-title {
        font-size: 2.5em;
      }
      .page-f168snet__heading {
        font-size: 2em;
      }
      .page-f168snet__promo-card {
        flex-direction: column;
        text-align: center;
      }
      .page-f168snet__promo-image-wrapper {
        width: 100%;
        height: 200px;
      }
    }

    @media (max-width: 768px) {
      .page-f168snet__section {
        padding: 40px 0;
      }
      .page-f168snet__hero-title {
        font-size: 2em;
      }
      .page-f168snet__hero-subtitle {
        font-size: 1.1em;
      }
      .page-f168snet__heading {
        font-size: 1.8em;
      }
      .page-f168snet__subheading {
        font-size: 1.3em;
      }
      .page-f168snet__game-categories,
      .page-f168snet__providers-grid,
      .page-f168snet__features-grid {
        grid-template-columns: 1fr;
      }

      /* List item responsive requirements */
      .page-f168snet__game-card,
      .page-f168snet__provider-item,
      .page-f168snet__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important;
      }
      .page-f168snet__game-card-description,
      .page-f168snet__promo-description,
      .page-f168snet__feature-description,
      .page-f168snet__faq-answer p,
      .page-f168snet__cta-description {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-f168snet__container {
        padding: 0 10px;
      }

      /* Image responsive */
      .page-f168snet__hero-image,
      .page-f168snet__game-card-image,
      .page-f168snet__provider-logo,
      .page-f168snet__promo-image,
      .page-f168snet__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-f168snet__hero-image-wrapper,
      .page-f168snet__game-card-image-wrapper,
      .page-f168snet__provider-logo-wrapper,
      .page-f168snet__promo-image-wrapper,
      .page-f168snet__feature-icon-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

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

    @media (max-width: 480px) {
      .page-f168snet__hero-title {
        font-size: 1.8em;
      }
      .page-f168snet__heading {
        font-size: 1.5em;
      }
      .page-f168snet__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-f168snet__promo-title {
        font-size: 1.5em;
      }
      .page-f168snet__faq-question h3 {
        font-size: 1em;
      }
      .page-f168snet__faq-answer {
        padding: 0 15px; /* Adjust for smaller screens */
      }
      .page-f168snet__faq-item.active .page-f168snet__faq-answer {
        padding: 15px !important;
      }
    }
  