
    /* CSS styles for f8betnet page */
    .page-f8betnet {
      font-family: 'Arial', sans-serif;
      background-color: #000; /* Template base color */
      color: #fff; /* Default text color */
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-f8betnet__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-f8betnet__heading {
      color: #FFD700; /* Accent yellow */
      text-align: center;
      margin-bottom: 20px;
    }

    .page-f8betnet__text--highlight {
      color: #FFD700;
      font-weight: bold;
    }

    /* Hero Section */
    .page-f8betnet__hero-section {
      position: relative;
      width: 100%;
      text-align: center;
      padding-top: 160px; /* Safe area for fixed header */
      padding-bottom: 40px;
      background-color: #000;
      box-sizing: border-box;
    }

    .page-f8betnet__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    .page-f8betnet__hero-content {
      padding: 20px;
      margin-top: 20px;
    }

    .page-f8betnet__hero-title {
      font-size: 2.5em;
      color: #FFD700;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

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

    .page-f8betnet__cta-button {
      display: inline-block;
      background-color: #FFD700;
      color: #000;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
    }

    .page-f8betnet__cta-button:hover {
      background-color: #e6c200;
      transform: translateY(-3px);
    }

    /* Section Styling */
    .page-f8betnet__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #1a1a1a;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .page-f8betnet__section--dark {
      background-color: #0a0a0a;
    }

    .page-f8betnet__section-title {
      font-size: 2em;
      color: #FFD700;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
    }

    .page-f8betnet__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: #FFD700;
      margin: 10px auto 0;
    }

    /* Game Categories */
    .page-f8betnet__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-content: center;
    }

    .page-f8betnet__game-item {
      background-color: #2c2c2c;
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-f8betnet__game-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(255, 215, 0, 0.2);
    }

    .page-f8betnet__game-image {
      width: 100%;
      max-width: 250px; /* Ensure images are not too small */
      height: auto;
      border-radius: 6px;
      margin-bottom: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      max-width: 100%; height: auto; /* Responsive image */
    }

    .page-f8betnet__game-title {
      font-size: 1.1em;
      color: #FFD700;
      margin-top: 10px;
      font-weight: bold;
    }
    
    .page-f8betnet__game-item p {
        font-size: 0.9em;
        color: #ccc;
    }

    /* Promotions */
    .page-f8betnet__promo-card {
      background-color: #2c2c2c;
      border-radius: 8px;
      padding: 25px;
      margin-bottom: 20px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .page-f8betnet__promo-card-title {
      font-size: 1.8em;
      color: #FFD700;
      margin-bottom: 15px;
    }

    .page-f8betnet__promo-card p {
      font-size: 1.1em;
      color: #fff;
      margin-bottom: 20px;
    }

    /* Guides */
    .page-f8betnet__guide-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .page-f8betnet__guide-item {
      background-color: #2c2c2c;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      text-align: center;
    }

    .page-f8betnet__guide-item-title {
      font-size: 1.4em;
      color: #FFD700;
      margin-bottom: 10px;
    }
    
    .page-f8betnet__guide-item p {
        font-size: 0.95em;
        color: #ccc;
    }

    /* Why Choose Section */
    .page-f8betnet__usp-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .page-f8betnet__usp-item {
      background-color: #2c2c2c;
      border-radius: 8px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .page-f8betnet__usp-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      max-width: 100%; height: auto; /* Responsive image */
    }

    .page-f8betnet__usp-title {
      font-size: 1.3em;
      color: #FFD700;
      margin-bottom: 10px;
    }
    
    .page-f8betnet__usp-item p {
        font-size: 0.95em;
        color: #ccc;
    }

    /* FAQ Section */
    .page-f8betnet__faq-item {
      background-color: #2c2c2c;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .page-f8betnet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #3a3a3a;
      color: #FFD700;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-f8betnet__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-f8betnet__faq-question h3 {
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click */
      color: #FFD700;
    }

    .page-f8betnet__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle from blocking click */
      color: #FFD700;
      transition: transform 0.3s ease;
      width: 1em; /* Ensure consistent width for + and - */
      text-align: center;
    }

    .page-f8betnet__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: #ccc;
      font-size: 0.95em;
    }

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

    /* Floating Login Button */
    .page-f8betnet__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #FFD700;
      color: #000;
      padding: 12px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
      z-index: 1000;
      transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .page-f8betnet__floating-login-button:hover {
      background-color: #e6c200;
      transform: translateY(-3px);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-f8betnet__container {
        padding: 10px;
      }

      .page-f8betnet__hero-section {
        padding-top: 160px; /* Adjust for mobile header */
        padding-bottom: 30px;
      }

      .page-f8betnet__hero-title {
        font-size: 1.8em;
      }

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

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

      .page-f8betnet__section {
        padding: 30px 15px;
      }

      .page-f8betnet__section-title {
        font-size: 1.6em;
      }

      .page-f8betnet__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      
      .page-f8betnet__game-title {
        font-size: 1em;
      }

      .page-f8betnet__promo-card-title {
        font-size: 1.5em;
      }

      .page-f8betnet__promo-card p {
        font-size: 1em;
      }

      .page-f8betnet__guide-list,
      .page-f8betnet__usp-grid {
        grid-template-columns: 1fr;
      }

      .page-f8betnet__floating-login-button {
        bottom: 15px;
        right: 15px;
        padding: 10px 18px;
        font-size: 0.9em;
      }
      
      /* Image responsive optimization for mobile */
      .page-f8betnet img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-f8betnet__hero-image,
      .page-f8betnet__game-image,
      .page-f8betnet__usp-icon {
        width: 100%;
        height: auto;
        box-sizing: border-box;
      }
      .page-f8betnet__game-item,
      .page-f8betnet__usp-item {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
      }
    }
  