
    :root {
      --primary-color: #FFD700; /* Gold */
      --secondary-color: #007BFF; /* Blue */
      --dark-bg: #1a1a2e; /* Dark background */
      --dark-text: #e0e0e0; /* Light text on dark */
      --accent-color: #FF4500; /* OrangeRed */
      --border-radius-small: 8px;
      --border-radius-medium: 12px;
      --spacing-unit: 16px;
      --header-offset-fallback: 122px; /* Fallback for body padding-top if not set by shared.css */
    }

    body {
      font-family: 'Arial', sans-serif;
      margin: 0;
      padding: 0;
      background-color: #121212; /* Overall darker background */
      color: var(--dark-text);
      line-height: 1.6;
    }

    .page-f168s-com {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--spacing-unit);
      box-sizing: border-box;
      /* Fallback for body padding-top if not set by shared.css.
         If shared.css applies padding-top to body, this will be overridden or act as additional top padding. */
      padding-top: var(--header-offset-fallback);
    }

    /* Hero Section */
    .page-f168s-com__hero-section {
      position: relative;
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:betting,casino,mobile,f168s]') center center / cover no-repeat;
      color: white;
      text-align: center;
      padding: calc(var(--spacing-unit) * 4) var(--spacing-unit) calc(var(--spacing-unit) * 6);
      border-radius: var(--border-radius-medium);
      margin-bottom: calc(var(--spacing-unit) * 2);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
      overflow: hidden;
      padding-top: 10px; /* Small decorative top padding, assuming body padding handles main offset */
    }

    .page-f168s-com__hero-title {
      font-size: 3.5em;
      margin-bottom: var(--spacing-unit);
      color: var(--primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      line-height: 1.1;
      font-weight: bold;
    }

    .page-f168s-com__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: calc(var(--spacing-unit) * 2);
      max-width: 800px;
      color: var(--dark-text);
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .page-f168s-com__hero-cta-button {
      background-color: var(--accent-color);
      color: white;
      padding: var(--spacing-unit) calc(var(--spacing-unit) * 2);
      border: none;
      border-radius: var(--border-radius-small);
      font-size: 1.2em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease;
      text-decoration: none;
      display: inline-block;
      margin-top: var(--spacing-unit);
    }

    .page-f168s-com__hero-cta-button:hover {
      background-color: #e63900;
    }

    /* Floating Register/Login Buttons */
    .page-f168s-com__floating-buttons {
      position: fixed;
      bottom: calc(var(--spacing-unit) * 2);
      right: var(--spacing-unit);
      display: flex;
      flex-direction: column;
      gap: calc(var(--spacing-unit) / 2);
      z-index: 1000;
    }

    .page-f168s-com__floating-button {
      background-color: var(--secondary-color);
      color: white;
      padding: var(--spacing-unit) var(--spacing-unit);
      border: none;
      border-radius: var(--border-radius-small);
      font-size: 1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      width: 100px;
      text-align: center;
      text-decoration: none;
      display: block;
    }

    .page-f168s-com__floating-button--register {
      background-color: var(--primary-color);
      color: #333;
    }

    .page-f168s-com__floating-button--register:hover {
      background-color: #e6c200;
    }

    .page-f168s-com__floating-button--login {
      background-color: var(--secondary-color);
    }

    .page-f168s-com__floating-button--login:hover {
      background-color: #0056b3;
    }

    /* Section General Styles */
    .page-f168s-com__section {
      background-color: #1e1e2f;
      padding: calc(var(--spacing-unit) * 3) var(--spacing-unit);
      margin-bottom: calc(var(--spacing-unit) * 2);
      border-radius: var(--border-radius-medium);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-f168s-com__section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: calc(var(--spacing-unit) * 2);
      font-weight: bold;
    }

    .page-f168s-com__section-subtitle {
      font-size: 1.2em;
      color: var(--dark-text);
      text-align: center;
      margin-bottom: calc(var(--spacing-unit) * 3);
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Product Display */
    .page-f168s-com__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: var(--spacing-unit);
      justify-content: center;
    }

    .page-f168s-com__product-card {
      background-color: #2a2a3e;
      border-radius: var(--border-radius-small);
      overflow: hidden;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }

    .page-f168s-com__product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .page-f168s-com__product-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #3a3a4e;
    }

    .page-f168s-com__product-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
      object-fit: cover;
    }

    .page-f168s-com__product-content {
      padding: var(--spacing-unit);
      flex-grow: 1;
    }

    .page-f168s-com__product-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: calc(var(--spacing-unit) / 2);
      font-weight: bold;
    }

    .page-f168s-com__product-description {
      font-size: 0.95em;
      color: var(--dark-text);
      margin-bottom: var(--spacing-unit);
    }

    .page-f168s-com__product-button {
      background-color: var(--secondary-color);
      color: white;
      padding: calc(var(--spacing-unit) / 2) var(--spacing-unit);
      border: none;
      border-radius: var(--border-radius-small);
      font-size: 0.9em;
      cursor: pointer;
      transition: background-color 0.3s ease;
      display: inline-block;
      margin-top: auto;
    }

    .page-f168s-com__product-button:hover {
      background-color: #0056b3;
    }

    /* Promotions Section */
    .page-f168s-com__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: calc(var(--spacing-unit) * 1.5);
    }

    .page-f168s-com__promo-card {
      background-color: #2a2a3e;
      border-radius: var(--border-radius-small);
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: var(--spacing-unit);
      transition: transform 0.3s ease;
    }

    .page-f168s-com__promo-card:hover {
      transform: translateY(-5px);
    }

    .page-f168s-com__promo-image {
      width: 100%;
      height: 200px; /* Minimum 200px, ensure the placeholder is large enough */
      object-fit: cover;
      border-radius: var(--border-radius-small);
      margin-bottom: var(--spacing-unit);
      max-width: 100%;
      height: auto;
    }

    .page-f168s-com__promo-title {
      font-size: 1.6em;
      color: var(--primary-color);
      margin-bottom: calc(var(--spacing-unit) / 2);
      font-weight: bold;
    }

    .page-f168s-com__promo-description {
      font-size: 1em;
      color: var(--dark-text);
      margin-bottom: var(--spacing-unit);
    }

    .page-f168s-com__promo-button {
      background-color: var(--accent-color);
      color: white;
      padding: calc(var(--spacing-unit) / 2) var(--spacing-unit);
      border: none;
      border-radius: var(--border-radius-small);
      font-size: 0.9em;
      cursor: pointer;
      transition: background-color 0.3s ease;
      display: inline-block;
    }

    .page-f168s-com__promo-button:hover {
      background-color: #e63900;
    }

    /* Why Choose Us / Features */
    .page-f168s-com__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: calc(var(--spacing-unit) * 1.5);
    }

    .page-f168s-com__feature-item {
      text-align: center;
      background-color: #2a2a3e;
      padding: calc(var(--spacing-unit) * 1.5);
      border-radius: var(--border-radius-small);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

    .page-f168s-com__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-f168s-com__feature-icon {
      width: 200px; /* Adhere to minimum 200px width */
      height: 200px; /* Adhere to minimum 200px height */
      margin: 0 auto var(--spacing-unit); /* Center the image */
      object-fit: contain;
      max-width: 100%;
      height: auto;
    }

    .page-f168s-com__feature-title {
      font-size: 1.3em;
      color: var(--primary-color);
      margin-bottom: calc(var(--spacing-unit) / 2);
      font-weight: bold;
    }

    .page-f168s-com__feature-description {
      font-size: 0.95em;
      color: var(--dark-text);
    }

    /* Providers & Payments */
    .page-f168s-com__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: var(--spacing-unit);
      justify-items: center;
      align-items: center;
    }

    .page-f168s-com__logo-item {
      background-color: #2a2a3e;
      padding: var(--spacing-unit);
      border-radius: var(--border-radius-small);
      height: 120px; /* Consistent height for logo containers */
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      width: 100%;
      box-sizing: border-box;
    }

    .page-f168s-com__logo-item:hover {
      transform: scale(1.05);
    }

    .page-f168s-com__logo-image {
      max-width: 100%;
      max-height: 100px; /* Ensure logo fits within container */
      object-fit: contain;
      width: auto;
      height: auto;
      min-width: 200px; /* Adhering to minimum 200px width for placeholder */
      min-height: 200px; /* Adhering to minimum 200px height for placeholder */
    }

    /* FAQ Section */
    .page-f168s-com__faq-section {
      background-color: #1e1e2f;
      padding: calc(var(--spacing-unit) * 3) var(--spacing-unit);
      margin-bottom: calc(var(--spacing-unit) * 2);
      border-radius: var(--border-radius-medium);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-f168s-com__faq-item {
      background-color: #2a2a3e;
      margin-bottom: var(--spacing-unit);
      border-radius: var(--border-radius-small);
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .page-f168s-com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: var(--spacing-unit) 15px;
      cursor: pointer;
      user-select: none;
      background-color: #3a3a4e;
      color: var(--primary-color);
      font-weight: bold;
      font-size: 1.1em;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      transition: background-color 0.3s ease;
    }

    .page-f168s-com__faq-question:hover {
      background-color: #4a4a5e;
    }

    .page-f168s-com__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: inherit;
      pointer-events: none; /* Crucial for click handler on parent */
    }

    .page-f168s-com__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: var(--spacing-unit);
      pointer-events: none; /* Crucial for click handler on parent */
    }

    .page-f168s-com__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--dark-text);
      font-size: 0.95em;
    }

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

    /* General responsive adjustments */
    @media (max-width: 768px) {
      .page-f168s-com {
        padding: 0 var(--spacing-unit) !important;
        padding-top: var(--header-offset-fallback) !important;
      }

      .page-f168s-com__hero-title {
        font-size: 2.5em;
      }

      .page-f168s-com__hero-subtitle {
        font-size: 1.2em;
      }

      .page-f168s-com__hero-cta-button {
        padding: var(--spacing-unit) 1.5em;
        font-size: 1em;
      }

      .page-f168s-com__floating-buttons {
        bottom: var(--spacing-unit);
        right: var(--spacing-unit); /* Keep right for mobile, or center if desired */
        flex-direction: row; /* Buttons side-by-side on smaller screens */
        width: calc(100% - var(--spacing-unit) * 2); /* Adjust width */
        justify-content: space-around; /* Distribute space */
        left: var(--spacing-unit); /* Center the group */
      }

      .page-f168s-com__floating-button {
        width: 120px;
        padding: 0.8em 0.5em;
      }

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

      .page-f168s-com__product-grid,
      .page-f168s-com__promo-grid,
      .page-f168s-com__features-grid,
      .page-f168s-com__logo-grid {
        grid-template-columns: 1fr; /* Single column layout for all grids */
        gap: var(--spacing-unit);
      }

      /* List item responsiveness */
      .page-f168s-com__product-card,
      .page-f168s-com__promo-card,
      .page-f168s-com__feature-item,
      .page-f168s-com__logo-item,
      .page-f168s-com__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: var(--spacing-unit) !important;
        padding-right: var(--spacing-unit) !important;
      }

      .page-f168s-com__product-card .page-f168s-com__product-image,
      .page-f168s-com__promo-card .page-f168s-com__promo-image,
      .page-f168s-com__feature-item .page-f168s-com__feature-icon,
      .page-f168s-com__logo-item .page-f168s-com__logo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-f168s-com__faq-question {
        padding: var(--spacing-unit) 10px;
        font-size: 1em;
      }

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

      .page-f168s-com__faq-answer {
        padding: 15px 10px !important;
      }

      /* Text wrapping for long content */
      .page-f168s-com__product-description,
      .page-f168s-com__promo-description,
      .page-f168s-com__feature-description,
      .page-f168s-com__faq-answer {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }
  