
    :root {
      --page-fishgamestoearnmoney__primary-color: #007bff;
      --page-fishgamestoearnmoney__secondary-color: #28a745;
      --page-fishgamestoearnmoney__dark-bg: #1a1a1a;
      --page-fishgamestoearnmoney__light-bg: #f8f9fa;
      --page-fishgamestoearnmoney__text-color: #ffffff;
      --page-fishgamestoearnmoney__dark-text: #343a40;
      --page-fishgamestoearnmoney__accent-color: #ffc107;
      --page-fishgamestoearnmoney__border-color: #444;
      --page-fishgamestoearnmoney__shadow-color: rgba(0, 0, 0, 0.5);
    }

    /* Base styles for the page content wrapper */
    .page-fishgamestoearnmoney {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-fishgamestoearnmoney__text-color);
      background-color: var(--page-fishgamestoearnmoney__dark-bg);
      padding-bottom: 80px; /* Space for fixed footer/floating button */
    }

    /* Hero Section */
    .page-fishgamestoearnmoney__hero-section {
      position: relative;
      text-align: center;
      padding: 10px 15px 50px; /* Desktop padding-top for fixed header */
      background-color: #000;
      overflow: hidden;
    }

    .page-fishgamestoearnmoney__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
      z-index: 1;
    }

    .page-fishgamestoearnmoney__hero-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 0;
    }

    .page-fishgamestoearnmoney__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-fishgamestoearnmoney__hero-title {
      font-size: 2.5em;
      color: var(--page-fishgamestoearnmoney__accent-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px var(--page-fishgamestoearnmoney__shadow-color);
    }

    .page-fishgamestoearnmoney__hero-description {
      font-size: 1.1em;
      color: #e0e0e0;
      margin-bottom: 30px;
    }

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

    .page-fishgamestoearnmoney__primary-button:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    /* Floating Login/Promo Button */
    .page-fishgamestoearnmoney__floating-promo-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-fishgamestoearnmoney__secondary-color);
      color: var(--page-fishgamestoearnmoney__text-color);
      padding: 15px 25px;
      border-radius: 50px;
      box-shadow: 0 4px 10px var(--page-fishgamestoearnmoney__shadow-color);
      text-align: center;
      font-weight: bold;
      font-size: 1.1em;
      z-index: 1000;
      transition: transform 0.3s ease, opacity 0.3s ease;
      opacity: 0;
      visibility: hidden;
      display: flex;
      align-items: center;
      gap: 10px;
      border: none;
      cursor: pointer;
    }

    .page-fishgamestoearnmoney__floating-promo-button.page-fishgamestoearnmoney__show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .page-fishgamestoearnmoney__floating-promo-button:hover {
      background-color: #218838;
      transform: scale(1.05);
    }

    .page-fishgamestoearnmoney__promo-icon {
      font-size: 1.5em;
    }

    /* General Section Styling */
    .page-fishgamestoearnmoney__section {
      padding: 40px 15px;
      margin-bottom: 20px;
      background-color: #222;
      border-radius: 10px;
      box-shadow: 0 2px 5px var(--page-fishgamestoearnmoney__shadow-color);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-fishgamestoearnmoney__section-title {
      font-size: 2em;
      color: var(--page-fishgamestoearnmoney__accent-color);
      text-align: center;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px var(--page-fishgamestoearnmoney__shadow-color);
    }

    .page-fishgamestoearnmoney__text-content {
      max-width: 800px;
      margin: 0 auto 20px;
      color: #ccc;
    }

    .page-fishgamestoearnmoney__text-content p {
      margin-bottom: 15px;
      text-align: justify;
    }

    .page-fishgamestoearnmoney__text-content strong {
      color: var(--page-fishgamestoearnmoney__accent-color);
    }

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

    .page-fishgamestoearnmoney__game-card {
      background-color: #333;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px var(--page-fishgamestoearnmoney__shadow-color);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      border: 1px solid var(--page-fishgamestoearnmoney__border-color);
    }

    .page-fishgamestoearnmoney__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
    }

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

    .page-fishgamestoearnmoney__game-card-content {
      padding: 20px;
    }

    .page-fishgamestoearnmoney__game-card-title {
      font-size: 1.4em;
      color: var(--page-fishgamestoearnmoney__accent-color);
      margin-bottom: 10px;
    }

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

    /* Features List */
    .page-fishgamestoearnmoney__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      list-style: none;
      padding: 0;
      margin: 0 auto;
      max-width: 1000px;
    }

    .page-fishgamestoearnmoney__feature-item {
      background-color: #333;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px var(--page-fishgamestoearnmoney__shadow-color);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      border: 1px solid var(--page-fishgamestoearnmoney__border-color);
    }

    .page-fishgamestoearnmoney__feature-icon {
      font-size: 3em;
      color: var(--page-fishgamestoearnmoney__primary-color);
      margin-bottom: 15px;
    }

    .page-fishgamestoearnmoney__feature-title {
      font-size: 1.2em;
      color: var(--page-fishgamestoearnmoney__accent-color);
      margin-bottom: 10px;
    }

    .page-fishgamestoearnmoney__feature-description {
      font-size: 0.9em;
      color: #bbb;
    }

    /* Promotions Section */
    .page-fishgamestoearnmoney__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }

    .page-fishgamestoearnmoney__promo-card {
      background-color: #333;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px var(--page-fishgamestoearnmoney__shadow-color);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--page-fishgamestoearnmoney__border-color);
      display: flex;
      flex-direction: column;
    }

    .page-fishgamestoearnmoney__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
    }

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

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

    .page-fishgamestoearnmoney__promo-title {
      font-size: 1.3em;
      color: var(--page-fishgamestoearnmoney__accent-color);
      margin-bottom: 10px;
    }

    .page-fishgamestoearnmoney__promo-description {
      font-size: 0.95em;
      color: #bbb;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-fishgamestoearnmoney__promo-button {
      background-color: var(--page-fishgamestoearnmoney__primary-color);
      color: var(--page-fishgamestoearnmoney__text-color);
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      display: block;
      text-align: center;
      border: none;
      cursor: pointer;
    }

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

    /* FAQ Section */
    .page-fishgamestoearnmoney__faq-list {
      max-width: 800px;
      margin: 0 auto;
      padding: 0;
      list-style: none;
    }

    .page-fishgamestoearnmoney__faq-item {
      background-color: #333;
      border: 1px solid var(--page-fishgamestoearnmoney__border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px var(--page-fishgamestoearnmoney__shadow-color);
    }

    .page-fishgamestoearnmoney__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #444;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

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

    .page-fishgamestoearnmoney__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-fishgamestoearnmoney__accent-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-fishgamestoearnmoney__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-fishgamestoearnmoney__primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-fishgamestoearnmoney__faq-item.active .page-fishgamestoearnmoney__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-fishgamestoearnmoney__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding */
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #bbb;
      text-align: justify;
    }

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

    /* Call to Action Section */
    .page-fishgamestoearnmoney__cta-section {
      text-align: center;
      padding: 50px 15px;
      background-color: #111;
      border-radius: 10px;
      margin-top: 40px;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-fishgamestoearnmoney__cta-title {
      font-size: 2.2em;
      color: var(--page-fishgamestoearnmoney__accent-color);
      margin-bottom: 20px;
    }

    .page-fishgamestoearnmoney__cta-description {
      font-size: 1.1em;
      color: #e0e0e0;
      margin-bottom: 30px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-fishgamestoearnmoney__hero-section {
        padding-top: 10px; /* Mobile padding-top for fixed header */
        height: 400px; /* Adjust height for mobile hero */
      }

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

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

      .page-fishgamestoearnmoney__section {
        padding: 30px 10px;
        margin-bottom: 15px;
      }

      .page-fishgamestoearnmoney__section-title {
        font-size: 1.7em;
        margin-bottom: 25px;
      }

      .page-fishgamestoearnmoney__floating-promo-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-fishgamestoearnmoney__game-card-image,
      .page-fishgamestoearnmoney__promo-image {
        height: 180px;
      }

      .page-fishgamestoearnmoney__game-card-title,
      .page-fishgamestoearnmoney__promo-title {
        font-size: 1.2em;
      }

      .page-fishgamestoearnmoney__faq-question {
        padding: 12px 15px;
      }

      .page-fishgamestoearnmoney__faq-question h3 {
        font-size: 1em;
      }

      .page-fishgamestoearnmoney__faq-answer {
        padding: 0 15px; /* Mobile initial padding */
      }

      .page-fishgamestoearnmoney__faq-item.active .page-fishgamestoearnmoney__faq-answer {
        padding: 15px !important; /* Mobile expanded padding */
      }

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

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

      /* Image responsive optimization for mobile */
      .page-fishgamestoearnmoney img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-fishgamestoearnmoney__hero-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-fishgamestoearnmoney__game-card-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-fishgamestoearnmoney__promo-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-fishgamestoearnmoney__feature-icon img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-fishgamestoearnmoney__image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  