
    /* Page-specific CSS for Fabet Com */
    .page-fabetcom-body {
      font-family: 'Arial', sans-serif;
      background-color: #1a1a1a;
      color: #e0e0e0;
      line-height: 1.6;
    }

    .page-fabetcom-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

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

    .page-fabetcom-section-dark {
      background-color: #222;
    }

    .page-fabetcom-section-light {
      background-color: #2a2a2a;
    }

    .page-fabetcom-h1, .page-fabetcom-h2, .page-fabetcom-h3 {
      color: #ffcc00; /* Gold-like color for headings */
      margin-bottom: 20px;
      text-transform: uppercase;
    }
    
    .page-fabetcom-h1 {
        font-size: 2.2em;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-fabetcom-h2 {
      font-size: 1.8em;
      border-bottom: 2px solid #ffcc00;
      padding-bottom: 10px;
      display: inline-block;
      margin-bottom: 30px;
    }

    .page-fabetcom-h3 {
      font-size: 1.4em;
      color: #fff;
    }

    .page-fabetcom-paragraph {
      margin-bottom: 20px;
      font-size: 1.1em;
    }

    .page-fabetcom-button {
      display: inline-block;
      background-color: #007bff; /* Blue for primary action */
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      font-size: 1.1em;
      border: none;
      cursor: pointer;
    }

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

    /* Hero Section */
    .page-fabetcom-hero {
      background-color: #1a1a1a; /* Dark background for the hero section */
      padding-top: 150px; /* Safe zone for floating header */
      padding-bottom: 40px;
      text-align: center;
      position: relative;
    }

    .page-fabetcom-hero-image-wrapper {
        width: 100%;
        max-width: 800px; /* Max width for the banner image */
        margin: 0 auto 20px auto;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    }

    .page-fabetcom-hero-image {
        width: 100%;
        height: auto;
        display: block;
    }

    .page-fabetcom-login-float-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #ff0000; /* Red for urgent action/promo */
      color: #fff;
      padding: 15px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      animation: page-fabetcom-pulse 1.5s infinite;
      border: none;
      cursor: pointer;
    }

    .page-fabetcom-login-float-button:hover {
      background-color: #cc0000;
    }

    @keyframes page-fabetcom-pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    /* Game Categories / Product Display */
    .page-fabetcom-game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-fabetcom-game-item {
      background-color: #333;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      text-align: center;
      padding-bottom: 15px;
    }

    .page-fabetcom-game-item:hover {
      transform: translateY(-5px);
    }

    .page-fabetcom-game-item img {
      width: 100%;
      height: 120px; /* Fixed height for game images */
      object-fit: cover;
      border-bottom: 1px solid #444;
    }

    .page-fabetcom-game-item a {
      color: #ffcc00;
      text-decoration: none;
      font-weight: bold;
      display: block;
      padding-top: 10px;
      font-size: 1.1em;
    }

    .page-fabetcom-game-item a:hover {
      color: #fff;
    }

    /* Promotions */
    .page-fabetcom-promo-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .page-fabetcom-promo-item {
      background-color: #333;
      border-radius: 10px;
      padding: 20px;
      text-align: left;
      flex: 1 1 calc(33% - 40px); /* Three items per row on desktop */
      min-width: 280px; /* Minimum width for mobile */
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .page-fabetcom-promo-item h3 {
      color: #ffcc00;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-fabetcom-promo-item p {
      font-size: 0.95em;
      color: #ccc;
    }

    /* Game Providers & Payment Methods */
    .page-fabetcom-logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      gap: 15px;
      margin-top: 30px;
      justify-items: center;
      align-items: center;
    }

    .page-fabetcom-logo-item img {
      width: 100%;
      max-width: 100px; /* Max width for logos */
      height: auto;
      object-fit: contain;
      filter: grayscale(70%) brightness(120%);
      transition: filter 0.3s ease;
    }

    .page-fabetcom-logo-item img:hover {
      filter: grayscale(0%) brightness(100%);
    }
    
    .page-fabetcom-contact-info {
        margin-top: 30px;
        font-size: 1.1em;
        color: #ccc;
    }

    .page-fabetcom-contact-info a {
        color: #ffcc00;
        text-decoration: none;
    }

    .page-fabetcom-contact-info a:hover {
        text-decoration: underline;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-fabetcom-h1 {
        font-size: 1.8em;
      }
      .page-fabetcom-h2 {
        font-size: 1.5em;
      }
      .page-fabetcom-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-fabetcom-promo-item {
        flex: 1 1 100%; /* One item per row on smaller screens */
      }
      .page-fabetcom-login-float-button {
        padding: 12px 20px;
        font-size: 1.1em;
        bottom: 15px;
        right: 15px;
      }
      .page-fabetcom-hero {
          padding-top: 140px; /* Adjust safe zone for mobile */
      }
    }

    @media (max-width: 480px) {
      .page-fabetcom-h1 {
        font-size: 1.6em;
      }
      .page-fabetcom-h2 {
        font-size: 1.3em;
      }
      .page-fabetcom-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
    }
  