
    :root {
      --page-f168schu__primary-color: #FFD700; /* Yellow */
      --page-f168schu__secondary-color: #FFF; /* White */
      --page-f168schu__background-color: #000; /* Black */
      --page-f168schu__dark-grey: #1a1a1a;
      --page-f168schu__light-grey: #333;
    }

    .page-f168schu {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: var(--page-f168schu__background-color);
      color: var(--page-f168schu__secondary-color);
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating button */
    }

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

    .page-f168schu__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-f168schu__section-title {
      color: var(--page-f168schu__primary-color);
      font-size: 2.5em;
      margin-bottom: 30px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-f168schu__section-subtitle {
      color: var(--page-f168schu__secondary-color);
      font-size: 1.2em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-f168schu__hero-section {
      position: relative;
      background-color: var(--page-f168schu__dark-grey);
      padding-top: 10px; /* Small padding assuming body has main header offset */
      text-align: center;
      padding-bottom: 20px;
    }

    .page-f168schu__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-f168schu__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }

    .page-f168schu__hero-content {
      padding: 0 20px;
    }

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

    .page-f168schu__hero-description {
      font-size: 1.1em;
      color: var(--page-f168schu__secondary-color);
      max-width: 700px;
      margin: 0 auto 30px auto;
    }

    /* Floating Login Button */
    .page-f168schu__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--page-f168schu__primary-color);
      color: var(--page-f168schu__background-color);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
      z-index: 1000;
      transition: all 0.3s ease;
      display: inline-block; /* Ensure padding works */
      white-space: nowrap; /* Prevent text wrapping */
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 90%; /* Limit width on small screens */
      box-sizing: border-box;
      border: none; /* Ensure it looks like a button */
      cursor: pointer;
    }

    .page-f168schu__floating-button:hover {
      background-color: #FFEA00;
      box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
    }

    /* Game Categories */
    .page-f168schu__game-categories {
      background-color: var(--page-f168schu__background-color);
    }

    .page-f168schu__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      padding: 0 20px;
    }

    .page-f168schu__game-card {
      background-color: var(--page-f168schu__light-grey);
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      padding-bottom: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-sizing: border-box;
    }

    .page-f168schu__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
    }

    .page-f168schu__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Fixed height for consistency */
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: var(--page-f168schu__dark-grey);
    }

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

    .page-f168schu__game-card-title {
      color: var(--page-f168schu__primary-color);
      font-size: 1.5em;
      margin: 20px 10px 10px 10px;
      word-wrap: break-word; /* Ensure title wraps */
    }

    .page-f168schu__game-card-description {
      color: var(--page-f168schu__secondary-color);
      font-size: 0.95em;
      padding: 0 15px;
      flex-grow: 1; /* Allow description to take available space */
    }

    /* Game Providers */
    .page-f168schu__providers-section {
      background-color: var(--page-f168schu__dark-grey);
    }

    .page-f168schu__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      padding: 0 20px;
    }

    .page-f168schu__provider-logo-wrapper {
      background-color: var(--page-f168schu__light-grey);
      border-radius: 8px;
      padding: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100px; /* Fixed height for logos */
      box-sizing: border-box;
    }

    .page-f168schu__provider-logo-wrapper:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    }

    .page-f168schu__provider-logo {
      max-width: 100%;
      max-height: 70px; /* Adjust based on container height */
      height: auto;
      object-fit: contain;
      display: block;
    }

    /* Why Choose Us Section */
    .page-f168schu__why-choose-us {
      background-color: var(--page-f168schu__background-color);
    }

    .page-f168schu__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      padding: 0 20px;
    }

    .page-f168schu__feature-item {
      background-color: var(--page-f168schu__light-grey);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-f168schu__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
    }

    .page-f168schu__feature-icon-wrapper {
      width: 100px;
      height: 100px;
      margin: 0 auto 20px auto;
      background-color: var(--page-f168schu__dark-grey);
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-f168schu__feature-icon {
      max-width: 70px;
      max-height: 70px;
      height: auto;
      display: block;
      object-fit: contain;
    }

    .page-f168schu__feature-title {
      color: var(--page-f168schu__primary-color);
      font-size: 1.8em;
      margin-bottom: 15px;
      text-align: center;
    }

    .page-f168schu__feature-description {
      color: var(--page-f168schu__secondary-color);
      font-size: 1em;
      text-align: center;
    }

    /* Promotions Section */
    .page-f168schu__promotions-section {
      background-color: var(--page-f168schu__dark-grey);
    }

    .page-f168schu__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      padding: 0 20px;
    }

    .page-f168schu__promo-card {
      background-color: var(--page-f168schu__light-grey);
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
    }

    .page-f168schu__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
    }

    .page-f168schu__promo-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 220px;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: var(--page-f168schu__dark-grey);
    }

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

    .page-f168schu__promo-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-f168schu__promo-title {
      color: var(--page-f168schu__primary-color);
      font-size: 1.6em;
      margin-bottom: 10px;
      word-wrap: break-word;
    }

    .page-f168schu__promo-description {
      color: var(--page-f168schu__secondary-color);
      font-size: 1em;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    /* FAQ Section */
    .page-f168schu__faq-section {
      background-color: var(--page-f168schu__background-color);
    }

    .page-f168schu__faq-container {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .page-f168schu__faq-item {
      background-color: var(--page-f168schu__light-grey);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-f168schu__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: var(--page-f168schu__dark-grey);
      color: var(--page-f168schu__primary-color);
      cursor: pointer;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-f168schu__faq-question:hover {
      background-color: #2a2a2a;
    }

    .page-f168schu__faq-question h3 {
      margin: 0;
      color: var(--page-f168schu__primary-color);
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-f168schu__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-f168schu__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: var(--page-f168schu__secondary-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      text-align: left;
    }

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

    .page-f168schu__faq-item.active .page-f168schu__faq-question {
      background-color: #2a2a2a;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-f168schu__hero-title {
        font-size: 2em;
      }

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

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

      .page-f168schu__game-grid,
      .page-f168schu__providers-grid,
      .page-f168schu__features-grid,
      .page-f168schu__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
      }

      .page-f168schu__game-card,
      .page-f168schu__feature-item,
      .page-f168schu__promo-card,
      .page-f168schu__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-f168schu__game-card-image-wrapper,
      .page-f168schu__promo-image-wrapper {
        height: 180px;
      }

      .page-f168schu__provider-logo-wrapper {
        height: 80px;
      }

      .page-f168schu__floating-button {
        padding: 12px 20px;
        font-size: 1.1em;
        bottom: 15px;
        max-width: calc(100% - 40px);
      }

      .page-f168schu__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-f168schu__faq-question h3 {
        font-size: 1.1em;
      }

      .page-f168schu__faq-answer {
        padding: 15px 20px;
      }

      /* Ensure images are responsive */
      .page-f168schu__hero-image,
      .page-f168schu__game-card-image,
      .page-f168schu__provider-logo,
      .page-f168schu__feature-icon,
      .page-f168schu__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-f168schu__hero-image-wrapper,
      .page-f168schu__game-card-image-wrapper,
      .page-f168schu__provider-logo-wrapper,
      .page-f168schu__feature-icon-wrapper,
      .page-f168schu__promo-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
    }
  