
    :root {
      --page-88fc-primary-color: #f7b32b; /* Gold/Orange for highlights */
      --page-88fc-secondary-color: #1a1a1a; /* Dark background */
      --page-88fc-text-color: #ffffff; /* White text */
      --page-88fc-accent-color: #e74c3c; /* Red for urgent actions/promos */
      --page-88fc-light-gray: #cccccc;
      --page-88fc-dark-gray: #333333;
      --page-88fc-border-radius: 8px;
    }

    .page-88fc {
      font-family: 'Arial', sans-serif;
      background-color: var(--page-88fc-secondary-color);
      color: var(--page-88fc-text-color);
      line-height: 1.6;
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

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

    /* Fixed Header Padding */
    .page-88fc__hero-section {
      padding-top: 120px; /* Adjust for fixed header height on desktop */
    }

    @media (max-width: 768px) {
      .page-88fc__hero-section {
        padding-top: 100px; /* Adjust for fixed header height on mobile */
      }
    }

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

    .page-88fc__section--dark {
      background-color: var(--page-88fc-dark-gray);
    }

    .page-88fc__section-title {
      font-size: 2.5em;
      color: var(--page-88fc-primary-color);
      margin-bottom: 30px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-88fc__section-subtitle {
      font-size: 1.2em;
      color: var(--page-88fc-light-gray);
      margin-bottom: 40px;
    }

    .page-88fc__button {
      display: inline-block;
      background-color: var(--page-88fc-primary-color);
      color: var(--page-88fc-secondary-color);
      padding: 12px 25px;
      border-radius: var(--page-88fc-border-radius);
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-88fc__button:hover {
      background-color: #ffc14d; /* Slightly lighter gold */
      transform: translateY(-2px);
    }

    .page-88fc__button--accent {
      background-color: var(--page-88fc-accent-color);
      color: var(--page-88fc-text-color);
    }

    .page-88fc__button--accent:hover {
      background-color: #d63d2e;
    }

    .page-88fc__text-link {
        color: var(--page-88fc-primary-color);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .page-88fc__text-link:hover {
        color: #ffc14d;
        text-decoration: underline;
    }

    /* Hero Section */
    .page-88fc__hero-section {
      position: relative;
      text-align: center;
      padding-bottom: 50px;
    }

    .page-88fc__hero-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
      margin: 0 auto;
      border-radius: var(--page-88fc-border-radius);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .page-88fc__hero-content {
      padding: 20px 15px;
      max-width: 800px;
      margin: 30px auto 0;
    }

    .page-88fc__hero-title {
      font-size: 3em;
      color: var(--page-88fc-primary-color);
      margin-bottom: 15px;
      line-height: 1.2;
      font-weight: bold;
    }

    .page-88fc__hero-description {
      font-size: 1.2em;
      color: var(--page-88fc-light-gray);
      margin-bottom: 30px;
    }

    .page-88fc__hero-link {
        color: var(--page-88fc-primary-color);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .page-88fc__hero-link:hover {
        color: #ffc14d;
        text-decoration: underline;
    }

    /* Floating Login Button */
    .page-88fc__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--page-88fc-accent-color);
      color: var(--page-88fc-text-color);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      animation: page-88fc__pulse 2s infinite;
      display: flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap;
    }

    .page-88fc__floating-button:hover {
      background-color: #d63d2e;
      transform: translateX(-50%) translateY(-3px);
      animation: none;
    }

    @keyframes page-88fc__pulse {
      0% { transform: translateX(-50%) scale(1); }
      50% { transform: translateX(-50%) scale(1.03); }
      100% { transform: translateX(-50%) scale(1); }
    }

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

    .page-88fc__game-card {
      background-color: var(--page-88fc-dark-gray);
      border-radius: var(--page-88fc-border-radius);
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

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

    .page-88fc__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }
    .page-88fc__game-card-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .page-88fc__game-card:hover .page-88fc__game-card-image {
      transform: scale(1.05);
    }

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

    .page-88fc__game-card-title {
      font-size: 1.5em;
      color: var(--page-88fc-primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-88fc__game-card-title a {
      color: inherit;
      text-decoration: none;
    }

    .page-88fc__game-card-title a:hover {
      text-decoration: underline;
    }

    .page-88fc__game-card-description {
      font-size: 0.95em;
      color: var(--page-88fc-light-gray);
      margin-bottom: 15px;
    }

    .page-88fc__game-card-link {
      display: block;
      margin-top: auto; /* Push button to bottom */
      text-align: center;
      padding: 10px 15px;
      background-color: var(--page-88fc-accent-color);
      color: var(--page-88fc-text-color);
      border-radius: var(--page-88fc-border-radius);
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-88fc__game-card-link:hover {
      background-color: #d63d2e;
    }

    /* Game Providers */
    .page-88fc__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); /* Smaller minmax for logos */
      gap: 20px;
      margin-top: 40px;
      align-items: center;
      justify-items: center;
    }

    .page-88fc__provider-logo-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: var(--page-88fc-border-radius);
        transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .page-88fc__provider-logo-wrapper:hover {
        transform: translateY(-3px);
        background-color: rgba(255, 255, 255, 0.1);
    }

    .page-88fc__provider-logo {
      width: 100px; /* Specific width for logos */
      height: auto;
      max-width: 100%;
      object-fit: contain;
      display: block;
    }

    /* About Section */
    .page-88fc__about-content {
      text-align: left;
      max-width: 800px;
      margin: 0 auto;
      font-size: 1.1em;
      color: var(--page-88fc-light-gray);
    }

    .page-88fc__about-content h3 {
      color: var(--page-88fc-primary-color);
      font-size: 1.8em;
      margin-top: 30px;
      margin-bottom: 15px;
    }

    .page-88fc__about-content p {
      margin-bottom: 15px;
    }

    /* Promotions */
    .page-88fc__promo-card {
      background-color: var(--page-88fc-dark-gray);
      border-radius: var(--page-88fc-border-radius);
      padding: 30px;
      margin-bottom: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: left;
    }

    .page-88fc__promo-card-title {
      color: var(--page-88fc-primary-color);
      font-size: 1.8em;
      margin-bottom: 10px;
    }

    .page-88fc__promo-card-description {
      color: var(--page-88fc-light-gray);
      margin-bottom: 20px;
    }

    /* FAQ Section */
    .page-88fc__faq-list {
      max-width: 800px;
      margin: 40px auto 0;
      text-align: left;
    }

    .page-88fc__faq-item {
      background-color: var(--page-88fc-dark-gray);
      margin-bottom: 15px;
      border-radius: var(--page-88fc-border-radius);
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-88fc__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #2c2c2c; /* Slightly lighter dark gray */
      cursor: pointer;
      user-select: none;
      color: var(--page-88fc-text-color);
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

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

    .page-88fc__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
    }

    .page-88fc__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevent span from blocking click */
      transition: transform 0.3s ease;
    }

    .page-88fc__faq-item.active .page-88fc__faq-toggle {
      transform: rotate(45deg); /* Rotate + to become X or similar */
    }

    .page-88fc__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      color: var(--page-88fc-light-gray);
      font-size: 0.95em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

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

    /* News Section */
    .page-88fc__news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-88fc__news-card {
      background-color: var(--page-88fc-dark-gray);
      border-radius: var(--page-88fc-border-radius);
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

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

    .page-88fc__news-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }
    .page-88fc__news-card-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .page-88fc__news-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .page-88fc__news-card-title {
      font-size: 1.4em;
      color: var(--page-88fc-primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-88fc__news-card-title a {
      color: inherit;
      text-decoration: none;
    }

    .page-88fc__news-card-title a:hover {
      text-decoration: underline;
    }

    .page-88fc__news-card-date {
      font-size: 0.85em;
      color: var(--page-88fc-light-gray);
      margin-bottom: 15px;
    }

    .page-88fc__news-card-excerpt {
      font-size: 0.95em;
      color: var(--page-88fc-light-gray);
      margin-bottom: 20px;
    }

    .page-88fc__read-more-link {
      display: inline-block;
      margin-top: auto;
      color: var(--page-88fc-primary-color);
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-88fc__read-more-link:hover {
      color: #ffc14d;
      text-decoration: underline;
    }

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

      .page-88fc__hero-title {
        font-size: 2.2em;
      }

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

      .page-88fc__game-grid, .page-88fc__news-grid {
        grid-template-columns: 1fr;
      }

      .page-88fc__floating-button {
        font-size: 1em;
        padding: 12px 25px;
      }

      .page-88fc__game-card-image, .page-88fc__news-card-image {
        height: 180px;
      }

      /* Image responsiveness for all images */
      .page-88fc img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-88fc .page-88fc__game-card-image-wrapper,
      .page-88fc .page-88fc__news-card-image-wrapper,
      .page-88fc .page-88fc__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-88fc__floating-button {
        bottom: 15px;
        padding: 10px 20px;
        font-size: 0.9em;
      }
      .page-88fc__hero-title {
        font-size: 1.8em;
      }
      .page-88fc__game-card-title {
        font-size: 1.3em;
      }
      .page-88fc__news-card-title {
        font-size: 1.2em;
      }
    }
  