
    /* Global styles for the page-ga179buzz scope */
    .page-ga179buzz {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f9fa;
      padding-bottom: 80px; /* Space for the floating button */
    }

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

    /* Hero Section */
    .page-ga179buzz__hero-section {
      position: relative;
      background-color: #0d1a26; /* Dark background for contrast */
      color: #fff;
      text-align: center;
      padding: 10px 0 50px 0; /* Adjusted padding-top for fixed header */
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-ga179buzz__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.6;
      z-index: 0;
      max-width: 100%; /* Responsive image */
    }

    .page-ga179buzz__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px 15px;
    }

    .page-ga179buzz__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      line-height: 1.2;
      color: #f7b000; /* Gold color for highlight */
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

    .page-ga179buzz__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-ga179buzz__cta-button {
      display: inline-block;
      background-color: #ff4500; /* Orange-red for CTA */
      color: #fff;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-ga179buzz__cta-button:hover {
      background-color: #e03e00;
      transform: translateY(-2px);
    }

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

    .page-ga179buzz__section--alt {
      background-color: #f0f2f5;
    }

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

    .page-ga179buzz__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: #f7b000;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-ga179buzz__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: justify;
    }

    /* Game Categories Grid */
    .page-ga179buzz__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-ga179buzz__game-card {
      background-color: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
      box-sizing: border-box;
    }

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

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

    .page-ga179buzz__game-card-title {
      font-size: 1.5em;
      color: #0d1a26;
      margin: 15px 10px 10px;
    }

    .page-ga179buzz__game-card-description {
      font-size: 0.95em;
      color: #666;
      padding: 0 15px;
    }

    /* How To Section */
    .page-ga179buzz__steps-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .page-ga179buzz__step-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      flex: 1;
      min-width: 280px;
      max-width: 350px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }
    
    .page-ga179buzz__step-item:hover {
        transform: translateY(-3px);
    }

    .page-ga179buzz__step-number {
      display: inline-block;
      background-color: #f7b000;
      color: #fff;
      width: 50px;
      height: 50px;
      line-height: 50px;
      border-radius: 50%;
      font-size: 1.8em;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .page-ga179buzz__step-title {
      font-size: 1.3em;
      color: #0d1a26;
      margin-bottom: 10px;
    }

    .page-ga179buzz__step-description {
      color: #555;
      font-size: 1em;
    }

    /* Promo Card */
    .page-ga179buzz__promo-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        overflow: hidden;
        margin-top: 30px;
        text-align: center;
    }

    .page-ga179buzz__promo-card-image {
        width: 100%;
        height: 250px;
        object-fit: cover;
        max-width: 100%;
        height: auto;
    }

    .page-ga179buzz__promo-card-content {
        padding: 25px;
    }

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

    .page-ga179buzz__promo-card-description {
        font-size: 1.1em;
        color: #555;
        margin-bottom: 25px;
    }

    /* Floating Login Button */
    .page-ga179buzz__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #ff4500;
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.2s ease;
      white-space: nowrap; /* Prevent text wrapping */
      border: none;
      cursor: pointer;
    }

    .page-ga179buzz__floating-button:hover {
      background-color: #e03e00;
      transform: translateX(-50%) translateY(-3px);
    }

    /* FAQ Section */
    .page-ga179buzz__faq-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
    }

    .page-ga179buzz__faq-item {
      background-color: #fff;
      border: 1px solid #eee;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.03);
      box-sizing: border-box;
    }

    .page-ga179buzz__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      font-size: 1.2em;
      font-weight: bold;
      color: #0d1a26;
      cursor: pointer;
      background-color: #fdfdfd;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-ga179buzz__faq-question:hover {
      background-color: #f0f2f5;
    }

    .page-ga179buzz__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      text-align: left;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-ga179buzz__faq-toggle {
      font-size: 1.8em;
      margin-left: 15px;
      color: #f7b000;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

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

    .page-ga179buzz__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
      font-size: 1em;
      opacity: 0;
    }

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

    /* General responsive image settings */
    .page-ga179buzz img {
        max-width: 100%;
        height: auto;
        display: block; /* Remove extra space below images */
        box-sizing: border-box;
    }

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

      .page-ga179buzz__hero-subtitle {
        font-size: 1.2em;
      }

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

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

      .page-ga179buzz__game-grid {
        grid-template-columns: 1fr;
      }

      .page-ga179buzz__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for mobile */
      }
      
      .page-ga179buzz__steps-list {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          padding: 0 !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
      }

      .page-ga179buzz__text-content {
          font-size: 1em;
      }

      .page-ga179buzz__floating-button {
          font-size: 0.9em;
          padding: 12px 20px;
          bottom: 15px;
          max-width: calc(100% - 30px); /* Ensure button doesn't overflow */
          box-sizing: border-box;
      }

      .page-ga179buzz__promo-card {
        flex-direction: column;
      }

      .page-ga179buzz__promo-card-image {
        height: 200px;
      }

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

      .page-ga179buzz__promo-card-description {
        font-size: 0.95em;
      }

      .page-ga179buzz__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }

      .page-ga179buzz__faq-answer {
        padding: 0 20px;
      }

      .page-ga179buzz__faq-item.active .page-ga179buzz__faq-answer {
        padding: 15px 20px !important;
      }
      
      .page-ga179buzz__faq-toggle {
          font-size: 1.5em;
      }
    }

    @media (max-width: 480px) {
        .page-ga179buzz__hero-title {
            font-size: 1.8em;
        }
        .page-ga179buzz__hero-subtitle {
            font-size: 1em;
        }
        .page-ga179buzz__cta-button {
            font-size: 0.9em;
            padding: 10px 20px;
        }
        .page-ga179buzz__section-title {
            font-size: 1.5em;
        }
    }
  