
    /* CSS Styles for Win79 page */
    .page-win79 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    /* Hero Section */
    .page-win79__hero-section {
      position: relative;
      width: 100%;
      text-align: center;
      color: #fff;
      padding-top: 10px; /* Spacing for fixed header */
      box-sizing: border-box;
      overflow: hidden; /* Ensure content stays within bounds */
    }

    .page-win79__hero-image {
      width: 100%;
      height: auto;
      display: block;
      max-width: 100%;
      object-fit: cover;
      filter: brightness(0.7); /* Slightly darken image for text readability */
    }

    .page-win79__hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 90%;
      max-width: 800px;
      z-index: 1;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-win79__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #ffcc00; /* Gold color for title */
      font-weight: bold;
    }

    .page-win79__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
    }

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

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

    /* Floating Login Button */
    .page-win79__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #e44d26; /* Eye-catching color */
      color: #fff;
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      cursor: pointer;
      border: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

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

    /* Content Sections */
    .page-win79__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
      box-sizing: border-box;
    }

    .page-win79__section--light-bg {
      background-color: #f8f8f8;
    }

    .page-win79__section--dark-bg {
      background-color: #eee;
    }

    .page-win79__section-title {
      font-size: 2.2em;
      color: #333;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
    }

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

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

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

    .page-win79__game-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

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

    .page-win79__game-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for image consistency */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #f0f0f0;
    }

    .page-win79__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Cover the area, crop if necessary */
      display: block;
      max-width: 100%;
    }

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

    .page-win79__game-title {
      font-size: 1.5em;
      color: #007bff;
      margin-bottom: 10px;
      font-weight: bold;
    }

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

    .page-win79__game-button {
      background-color: #28a745;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
      align-self: center;
      width: fit-content;
    }

    .page-win79__game-button:hover {
      background-color: #218838;
    }

    /* How to Join Section */
    .page-win79__steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }

    .page-win79__step-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

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

    .page-win79__step-number {
      font-size: 2.5em;
      color: #ffcc00;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .page-win79__step-title {
      font-size: 1.4em;
      color: #333;
      margin-bottom: 10px;
    }

    .page-win79__step-description {
      font-size: 1em;
      color: #666;
    }

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

    .page-win79__promo-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

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

    .page-win79__promo-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-win79__promo-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      max-width: 100%;
    }

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

    .page-win79__promo-title {
      font-size: 1.5em;
      color: #e44d26;
      margin-bottom: 10px;
      font-weight: bold;
    }

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

    .page-win79__promo-button {
      background-color: #007bff;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
      align-self: center;
      width: fit-content;
    }

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

    /* FAQ Section */
    .page-win79__faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

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

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

    .page-win79__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-win79__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #333;
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
      text-align: left;
    }

    .page-win79__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #007bff;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click */
      transition: transform 0.3s ease;
    }

    .page-win79__faq-item.active .page-win79__faq-toggle {
      transform: rotate(45deg);
    }

    .page-win79__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Adjusted padding for better visual */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #fff;
      color: #555;
    }

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

    .page-win79__faq-answer p {
      margin: 0 0 10px 0;
    }
    .page-win79__faq-answer p:last-child {
      margin-bottom: 0;
    }


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

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

      .page-win79__cta-button {
        padding: 10px 20px;
        font-size: 1em;
      }

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

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

      .page-win79__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      .page-win79__game-grid,
      .page-win79__steps-grid,
      .page-win79__promo-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
      }

      .page-win79__step-item,
      .page-win79__game-card,
      .page-win79__promo-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-win79__game-image-wrapper,
      .page-win79__promo-image-wrapper {
        height: 180px;
      }

      .page-win79__game-image,
      .page-win79__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

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

      .page-win79__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }
      .page-win79__faq-question h3 {
        font-size: 1em;
      }
      .page-win79__faq-answer {
        padding: 0 15px;
      }
      .page-win79__faq-item.active .page-win79__faq-answer {
        padding: 15px !important;
      }
      .page-win79__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-win79__hero-title {
        font-size: 1.8em;
      }
      .page-win79__hero-description {
        font-size: 0.9em;
      }
      .page-win79__cta-button {
        padding: 8px 15px;
        font-size: 0.9em;
      }
      .page-win79__floating-login-button {
        padding: 10px 18px;
        font-size: 0.9em;
      }
    }
  