
    /* Reset & Base Styles (scoped to main content) */
    .page-fishgamestoearnmoney {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: #333;
      background-color: #f4f7f6;
      padding-bottom: 80px; /* Space for floating button on mobile */
    }

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

    .page-fishgamestoearnmoney__section {
      padding: 40px 0;
      background-color: #fff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }
    
    .page-fishgamestoearnmoney__section--dark {
        background-color: #2c3e50;
        color: #ecf0f1;
    }

    .page-fishgamestoearnmoney__section-title {
      text-align: center;
      font-size: 2.2em;
      color: #2980b9;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-fishgamestoearnmoney__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: #e74c3c;
      border-radius: 2px;
    }

    .page-fishgamestoearnmoney__section--dark .page-fishgamestoearnmoney__section-title {
        color: #f39c12;
    }
    .page-fishgamestoearnmoney__section--dark .page-fishgamestoearnmoney__section-title::after {
        background-color: #f39c12;
    }

    /* Hero Section */
    .page-fishgamestoearnmoney__hero-section {
      background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('[GALLERY:hero:bancakeimtien,banner,main]') center center no-repeat;
      background-size: cover;
      color: #fff;
      text-align: center;
      padding: 10px 15px 60px; /* Added padding-top for fixed header */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px; /* Adjust as needed */
    }

    .page-fishgamestoearnmoney__hero-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

    .page-fishgamestoearnmoney__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 800px;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }

    .page-fishgamestoearnmoney__hero-cta {
      background-color: #e74c3c;
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      display: inline-block;
      cursor: pointer;
    }

    .page-fishgamestoearnmoney__hero-cta:hover {
      background-color: #c0392b;
    }

    /* Floating Promo Button */
    .page-fishgamestoearnmoney__floating-promo-button {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: #f39c12; /* Attractive color */
      color: #fff;
      text-align: center;
      padding: 15px 10px;
      font-size: 1.2em;
      font-weight: bold;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
      z-index: 1000;
      transition: background-color 0.3s ease;
      cursor: pointer;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-fishgamestoearnmoney__floating-promo-button:hover {
      background-color: #e67e22;
    }

    .page-fishgamestoearnmoney__floating-promo-button span {
        margin-left: 10px;
    }

    /* Game List Section */
    .page-fishgamestoearnmoney__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      padding: 0 15px;
    }

    .page-fishgamestoearnmoney__game-item {
      background-color: #f9f9f9;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-fishgamestoearnmoney__game-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    }

    .page-fishgamestoearnmoney__game-item-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%; /* Ensure responsiveness */
    }
    
    .page-fishgamestoearnmoney__game-item-content {
      padding: 20px;
    }

    .page-fishgamestoearnmoney__game-item-title {
      font-size: 1.4em;
      color: #2980b9;
      margin-bottom: 10px;
    }

    .page-fishgamestoearnmoney__game-item-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 15px;
    }

    /* How To Play Section */
    .page-fishgamestoearnmoney__guide-section .page-fishgamestoearnmoney__container {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .page-fishgamestoearnmoney__step {
      background-color: #fff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.08);
      display: flex;
      align-items: flex-start;
      gap: 20px;
    }

    .page-fishgamestoearnmoney__step-icon {
      flex-shrink: 0;
      width: 60px;
      height: 60px;
      background-color: #3498db;
      color: #fff;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 2em;
      font-weight: bold;
    }

    .page-fishgamestoearnmoney__step-content h3 {
      font-size: 1.5em;
      color: #3498db;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-fishgamestoearnmoney__step-content p {
      font-size: 1em;
      color: #666;
    }

    /* Tips Section */
    .page-fishgamestoearnmoney__tips-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-fishgamestoearnmoney__tip-item {
      background-color: #f9f9f9;
      margin-bottom: 15px;
      padding: 20px;
      border-left: 5px solid #2ecc71;
      border-radius: 5px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    }

    .page-fishgamestoearnmoney__tip-item h3 {
      color: #2ecc71;
      margin-top: 0;
      margin-bottom: 10px;
      font-size: 1.3em;
    }

    .page-fishgamestoearnmoney__tip-item p {
      color: #444;
    }

    /* FAQ Section */
    .page-fishgamestoearnmoney__faq-section {
        background-color: #ecf0f1;
    }
    .page-fishgamestoearnmoney__faq-item {
      background-color: #fff;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

    .page-fishgamestoearnmoney__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #3498db;
      color: #fff;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      font-size: 1.1em;
      border-radius: 8px;
      transition: background-color 0.3s ease;
    }

    .page-fishgamestoearnmoney__faq-question:hover {
      background-color: #2980b9;
    }

    .page-fishgamestoearnmoney__faq-question h3 {
      margin: 0;
      font-size: 1.1em; /* Adjusted for better fit */
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

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

    .page-fishgamestoearnmoney__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: #fcfcfc;
      color: #333;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    /* Call to Action Section */
    .page-fishgamestoearnmoney__cta-section {
      text-align: center;
      background-color: #2c3e50;
      color: #fff;
      padding: 50px 15px;
      border-radius: 8px;
    }

    .page-fishgamestoearnmoney__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: #f39c12;
    }

    .page-fishgamestoearnmoney__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-fishgamestoearnmoney__cta-button {
      background-color: #e74c3c;
      color: #fff;
      padding: 18px 40px;
      border-radius: 5px;
      font-size: 1.3em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      display: inline-block;
      cursor: pointer;
    }

    .page-fishgamestoearnmoney__cta-button:hover {
      background-color: #c0392b;
    }

    /* Floating Ad Menu */
    .page-fishgamestoearnmoney__floating-ad {
        position: fixed;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        background-color: #34495e;
        color: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        z-index: 999;
        display: none; /* Hidden by default, show on desktop */
        flex-direction: column;
        overflow: hidden;
    }

    .page-fishgamestoearnmoney__floating-ad-item {
        padding: 15px;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        transition: background-color 0.3s ease;
        text-decoration: none;
        color: #fff;
        display: block;
        font-size: 0.9em;
    }

    .page-fishgamestoearnmoney__floating-ad-item:last-child {
        border-bottom: none;
    }

    .page-fishgamestoearnmoney__floating-ad-item:hover {
        background-color: #2c3e50;
    }

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

      .page-fishgamestoearnmoney__hero-subtitle {
        font-size: 1em;
      }

      .page-fishgamestoearnmoney__section-title {
        font-size: 1.8em;
      }
      
      .page-fishgamestoearnmoney__step {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .page-fishgamestoearnmoney__floating-ad {
          display: none !important; /* Hide floating ad on mobile */
      }
      
      /* Image responsiveness for mobile */
      .page-fishgamestoearnmoney img {
          max-width: 100% !important;
          height: auto !important;
      }
      .page-fishgamestoearnmoney__game-item-image {
          max-width: 100% !important;
          height: auto !important; /* Maintain aspect ratio */
      }

      .page-fishgamestoearnmoney__faq-question {
          padding: 12px 15px;
          font-size: 1em;
      }
      .page-fishgamestoearnmoney__faq-question h3 {
          font-size: 1em;
      }
      .page-fishgamestoearnmoney__faq-answer {
          padding: 0 15px;
      }
      .page-fishgamestoearnmoney__faq-item.active .page-fishgamestoearnmoney__faq-answer {
          padding: 15px !important;
      }
    }

    @media (min-width: 769px) {
        .page-fishgamestoearnmoney__floating-promo-button {
            display: none !important; /* Hide sticky button on desktop */
        }
        .page-fishgamestoearnmoney__floating-ad {
            display: flex; /* Show floating ad on desktop */
        }
    }
  