
    /* Base styles for the page */
    .page-78win {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #1a1a2e; /* Dark blue-purple */
      color: #e0e0e0; /* Light grey text */
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating button */
    }

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

    /* Headings */
    .page-78win h1, .page-78win h2, .page-78win h3 {
      color: #ffcc00; /* Gold accent */
      text-align: center;
      margin-bottom: 25px;
      font-weight: 700;
    }

    .page-78win h1 {
      font-size: 2.5em;
      margin-top: 20px;
    }
    .page-78win h2 {
      font-size: 2em;
      border-bottom: 2px solid #ffcc00;
      padding-bottom: 10px;
      display: inline-block;
      margin-left: auto;
      margin-right: auto;
    }
    .page-78win h3 {
      font-size: 1.5em;
      color: #ffffff;
    }

    /* Paragraphs */
    .page-78win p {
      margin-bottom: 15px;
      text-align: justify;
    }

    /* Links and Buttons */
    .page-78win a {
      color: #ffcc00;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    .page-78win a:hover {
      color: #ff8c00;
      text-decoration: underline;
    }

    .page-78win .btn {
      display: inline-block;
      background-color: #ffcc00;
      color: #1a1a2e;
      padding: 12px 25px;
      border-radius: 30px;
      text-transform: uppercase;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
      border: none;
      cursor: pointer;
    }
    .page-78win .btn:hover {
      background-color: #ff8c00;
      transform: translateY(-2px);
      color: #ffffff; /* Ensure contrast on hover */
    }

    .page-78win .main-cta {
      text-align: center;
      margin: 40px 0;
    }

    /* Hero Section */
    .page-78win-hero {
      position: relative;
      width: 100%;
      overflow: hidden;
      background-color: #000; /* Fallback */
    }
    .page-78win .hero-banner img {
      width: 100%;
      height: auto;
      display: block;
      margin: 0 auto; /* Center image */
      object-fit: cover; /* Ensure it covers well */
      max-height: 400px; /* Limit height for desktop */
    }
    @media (max-width: 768px) {
        .page-78win .hero-banner img {
            max-height: 250px; /* Adjust for mobile */
        }
    }
    .page-78win .hero-content {
      text-align: center;
      padding: 20px 15px;
      background: linear-gradient(to bottom, rgba(26, 26, 46, 0.8), #1a1a2e); /* Gradient for smooth transition */
      margin-top: -50px; /* Overlap banner slightly */
      position: relative;
      z-index: 1;
    }
    .page-78win .hero-content h1 {
      margin-top: 0;
      font-size: 2.2em;
    }
    .page-78win .hero-content p {
      font-size: 1.1em;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Floating Login Button */
    .page-78win .floating-login-btn {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #ff004c; /* Reddish pink for urgency */
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 6px 20px rgba(255, 0, 76, 0.5);
      z-index: 1000;
      animation: page-78win-pulse 1.5s infinite;
      border: none; /* Ensure no default button border */
      cursor: pointer;
      white-space: nowrap; /* Prevent text wrapping */
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .page-78win .floating-login-btn:hover {
      background-color: #e60045;
      transform: translateX(-50%) translateY(-3px);
      animation: none;
    }
    @keyframes page-78win-pulse {
      0% { transform: translateX(-50%) scale(1); }
      50% { transform: translateX(-50%) scale(1.03); }
      100% { transform: translateX(-50%) scale(1); }
    }
    .page-78win .floating-login-btn .icon {
        font-size: 1.4em;
    }

    /* Section Styling */
    .page-78win section {
      padding: 40px 0;
      margin-bottom: 30px;
      background-color: #2a2a4a; /* Slightly lighter dark background */
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }
    .page-78win section:nth-child(even) {
      background-color: #1f1f3f;
    }

    /* Game Categories / Product Display */
    .page-78win .game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center; /* Center cards horizontally */
    }
    .page-78win .game-card {
      background-color: #333355;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      padding-bottom: 15px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 100%; /* Ensure card takes full grid column width */
      max-width: 250px; /* Limit card width on larger screens */
    }
    .page-78win .game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    }
    .page-78win .game-card img {
      width: 100%;
      height: 120px; /* Fixed height for consistency */
      object-fit: cover;
      border-bottom: 2px solid #ffcc00;
    }
    .page-78win .game-card h3 {
      margin: 15px 10px 10px;
      font-size: 1.1em;
      color: #ffcc00;
      text-align: center;
    }
    .page-78win .game-card h3 a { /* Ensure link in card title has proper contrast */
        color: #ffcc00;
    }
    .page-78win .game-card h3 a:hover {
        color: #ff8c00;
    }
    .page-78win .game-card p {
      font-size: 0.9em;
      color: #c0c0c0;
      padding: 0 10px;
      text-align: center;
    }
    .page-78win .game-card .play-btn {
        display: block;
        background-color: #00aaff; /* Blue for play button */
        color: #ffffff;
        padding: 8px 15px;
        border-radius: 20px;
        margin: 10px auto 0;
        width: fit-content;
        font-size: 0.9em;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }
    .page-78win .game-card .play-btn:hover {
        background-color: #0088cc;
        text-decoration: none;
    }

    /* Promotions */
    .page-78win .promo-list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
    }
    .page-78win .promo-list li {
      background-color: #333355;
      margin-bottom: 15px;
      padding: 15px 20px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    .page-78win .promo-list li::before {
      content: '✨'; /* Emoji bullet point */
      font-size: 1.5em;
      line-height: 1;
      flex-shrink: 0;
    }
    .page-78win .promo-list li strong {
      color: #ffcc00;
    }

    /* How-to Guide */
    .page-78win .guide-steps {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 30px;
    }
    .page-78win .guide-step {
      background-color: #333355;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    }
    .page-78win .guide-step h3 {
      color: #ffcc00;
      margin-top: 0;
      text-align: left;
    }
    .page-78win .guide-step p {
      margin-bottom: 0;
    }

    /* Payment and Providers */
    .page-78win .logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      gap: 15px;
      margin-top: 30px;
      justify-items: center;
      align-items: center;
    }
    .page-78win .logo-item {
      background-color: #3d3d63;
      padding: 10px;
      border-radius: 8px;
      text-align: center;
      font-size: 0.9em;
      color: #c0c0c0;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease;
      height: 80px; /* Fixed height for consistency */
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .page-78win .logo-item:hover {
        transform: translateY(-3px);
    }

    /* FAQ */
    .page-78win .faq-item {
      margin-bottom: 15px;
      background-color: #333355;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      overflow: hidden;
    }
    .page-78win .faq-question {
      background-color: #44446a;
      padding: 15px 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: bold;
      color: #ffffff;
      transition: background-color 0.3s ease;
    }
    .page-78win .faq-question:hover {
      background-color: #55557b;
    }
    .page-78win .faq-question .arrow {
      transition: transform 0.3s ease;
      font-size: 1.2em;
    }
    .page-78win .faq-question.active .arrow {
      transform: rotate(180deg);
    }
    .page-78win .faq-answer {
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease-out;
      background-color: #333355;
    }
    .page-78win .faq-answer p {
      padding: 15px 0;
      margin-bottom: 0;
      border-top: 1px solid #44446a;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-78win h1 {
        font-size: 1.8em;
      }
      .page-78win h2 {
        font-size: 1.6em;
      }
      .page-78win .hero-content {
        padding: 15px;
      }
      .page-78win .hero-content h1 {
        font-size: 1.6em;
      }
      .page-78win .hero-content p {
        font-size: 1em;
      }
      .page-78win .game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-78win .game-card {
          max-width: none; /* Remove max-width for mobile */
      }
      .page-78win .game-card h3 {
        font-size: 1em;
      }
      .page-78win .floating-login-btn {
        padding: 12px 20px;
        font-size: 1em;
        bottom: 15px;
        white-space: normal; /* Allow wrap on smaller screens if needed */
        width: 80%; /* Take more width on small screens */
        box-sizing: border-box;
      }
      .page-78win .promo-list li {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
      }
      .page-78win .promo-list li::before {
        margin-bottom: 5px;
      }
    }
  