
    :root {
      --page-77win-bg-color: #000000;
      --page-77win-text-color: #FFFFFF;
      --page-77win-highlight-color: #FFD700; /* Gold/Yellow */
      --page-77win-accent-color: #FF6F00; /* Orange-Yellow for buttons/active states */
      --page-77win-border-color: #333333;
      --page-77win-padding-desktop: 120px;
      --page-77win-padding-mobile: 100px;
    }

    .page-77win {
      background-color: var(--page-77win-bg-color);
      color: var(--page-77win-text-color);
      font-family: Arial, sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-77win__hero-section {
      position: relative;
      width: 100%;
      text-align: center;
      padding-top: var(--page-77win-padding-desktop); /* Safety zone for fixed header */
      padding-bottom: 40px;
      background-color: var(--page-77win-bg-color);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-77win__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      object-fit: contain; /* Ensure original ratio */
      min-width: 300px; /* Minimum size requirement */
      min-height: 200px; /* Minimum size requirement */
    }

    .page-77win__hero-content {
      padding: 20px;
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .page-77win__main-heading {
      color: var(--page-77win-highlight-color);
      font-size: 2.8em;
      margin-top: 20px;
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-77win__sub-heading {
      color: var(--page-77win-text-color);
      font-size: 1.5em;
      margin-bottom: 20px;
    }

    .page-77win__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-77win-accent-color);
      color: var(--page-77win-text-color);
      padding: 15px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      line-height: 1.2;
    }

    .page-77win__floating-button:hover {
      background-color: var(--page-77win-highlight-color);
      transform: translateY(-3px);
    }

    .page-77win__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-77win__section-heading {
      color: var(--page-77win-highlight-color);
      font-size: 2.2em;
      margin-bottom: 40px;
      text-transform: uppercase;
      position: relative;
      padding-bottom: 15px;
    }

    .page-77win__section-heading::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-77win-accent-color);
      border-radius: 2px;
    }

    .page-77win__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-77win__card {
      background-color: #1A1A1A;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      border: 1px solid var(--page-77win-border-color);
    }

    .page-77win__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-77win__card-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Fixed height for consistent card appearance */
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #0d0d0d;
    }

    .page-77win__card-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: contain; /* Ensure images fit without cropping */
      min-width: 200px;
      min-height: 150px; /* Adjust min-height for card images */
    }

    .page-77win__card-content {
      padding: 25px;
    }

    .page-77win__card-title {
      font-size: 1.4em;
      color: var(--page-77win-highlight-color);
      margin-bottom: 10px;
      text-decoration: none; /* For links inside card title */
      display: block;
    }

    .page-77win__card-title a {
      color: var(--page-77win-highlight-color);
      text-decoration: none;
    }

    .page-77win__card-title a:hover {
      text-decoration: underline;
    }

    .page-77win__card-description {
      color: var(--page-77win-text-color);
      font-size: 0.95em;
      line-height: 1.5;
    }

    .page-77win__button {
      display: inline-block;
      background-color: var(--page-77win-accent-color);
      color: var(--page-77win-text-color);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      margin-top: 20px;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-77win__button:hover {
      background-color: var(--page-77win-highlight-color);
      transform: translateY(-2px);
    }

    .page-77win__text-center {
      text-align: center;
    }

    .page-77win__game-provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); /* Smaller minmax for logos */
      gap: 20px;
      margin-top: 40px;
      align-items: center;
      justify-items: center;
    }

    .page-77win__provider-logo-container {
      width: 100%;
      max-width: 150px; /* Max width for logos */
      height: 80px; /* Fixed height for logo container */
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #1A1A1A;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease;
      border: 1px solid var(--page-77win-border-color);
    }

    .page-77win__provider-logo-container:hover {
      transform: scale(1.05);
    }

    .page-77win__provider-logo {
      max-width: 90%;
      max-height: 70%;
      height: auto;
      object-fit: contain;
      min-width: 80px; /* Min width for logos */
      min-height: 40px; /* Min height for logos */
    }

    .page-77win__faq-list {
      margin-top: 40px;
      text-align: left;
    }

    .page-77win__faq-item {
      background-color: #1A1A1A;
      border: 1px solid var(--page-77win-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

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

    .page-77win__faq-question:hover {
      background-color: #2c2c2c;
    }

    .page-77win__faq-question h3 {
      margin: 0;
      color: var(--page-77win-highlight-color);
      font-size: 1.15em;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-77win__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-77win-accent-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-77win__faq-item.active .page-77win__faq-toggle {
      transform: rotate(45deg);
      color: var(--page-77win-highlight-color);
    }

    .page-77win__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--page-77win-text-color);
    }

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

    .page-77win__promo-banner {
      background-color: #1A1A1A;
      padding: 40px 20px;
      margin-top: 60px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    }

    .page-77win__promo-banner h2 {
      color: var(--page-77win-highlight-color);
      font-size: 2em;
      margin-bottom: 20px;
    }

    .page-77win__promo-banner p {
      font-size: 1.1em;
      margin-bottom: 30px;
    }

    .page-77win__payment-methods-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-top: 40px;
      align-items: center;
      justify-items: center;
    }

    .page-77win__payment-method-logo-container {
      width: 100%;
      max-width: 150px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #1A1A1A;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      border: 1px solid var(--page-77win-border-color);
    }

    .page-77win__payment-method-logo {
      max-width: 80%;
      max-height: 60%;
      height: auto;
      object-fit: contain;
      min-width: 80px;
      min-height: 40px;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-77win__main-heading {
        font-size: 2.4em;
      }
      .page-77win__section-heading {
        font-size: 2em;
      }
      .page-77win__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-77win__hero-section {
        padding-top: var(--page-77win-padding-mobile) !important; /* Mobile safety zone */
        padding-bottom: 30px;
      }
      .page-77win__main-heading {
        font-size: 2em;
      }
      .page-77win__sub-heading {
        font-size: 1.2em;
      }
      .page-77win__section {
        padding: 40px 15px;
      }
      .page-77win__section-heading {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-77win__grid {
        grid-template-columns: 1fr;
      }
      .page-77win__card-image-container {
        height: 180px;
      }
      .page-77win__card-title {
        font-size: 1.2em;
      }
      .page-77win__floating-button {
        padding: 12px 20px;
        font-size: 1em;
        bottom: 15px;
        right: 15px;
      }
      .page-77win__provider-logo-container,
      .page-77win__payment-method-logo-container {
        max-width: 120px;
        height: 60px;
      }
      .page-77win__provider-logo,
      .page-77win__payment-method-logo {
        min-width: 60px;
        min-height: 30px;
      }
      .page-77win__faq-question h3 {
        font-size: 1em;
      }
      .page-77win__faq-answer {
        padding: 0 15px;
      }
      .page-77win__faq-item.active .page-77win__faq-answer {
        padding: 15px 15px !important;
      }

      /* Image responsive optimization for mobile */
      .page-77win__hero-image,
      .page-77win__card-image,
      .page-77win__provider-logo,
      .page-77win__payment-method-logo {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-77win__card-image-container,
      .page-77win__provider-logo-container,
      .page-77win__payment-method-logo-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-77win__main-heading {
        font-size: 1.8em;
      }
      .page-77win__sub-heading {
        font-size: 1em;
      }
      .page-77win__section-heading {
        font-size: 1.6em;
      }
      .page-77win__floating-button {
        padding: 10px 15px;
        font-size: 0.9em;
      }
    }
  