
    .page-77-wim {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    .page-77-wim__section-title {
      font-size: 2.5em;
      color: #0a4f8d; /* Dark blue for titles */
      text-align: center;
      margin-bottom: 20px;
      padding-top: 40px;
      font-weight: bold;
    }

    .page-77-wim__section-subtitle {
      font-size: 1.2em;
      text-align: center;
      color: #555;
      margin-bottom: 40px;
    }

    .page-77-wim__button {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-align: center;
      white-space: nowrap;
    }

    .page-77-wim__button--primary {
      background-color: #ff6600; /* Orange */
      color: #fff;
      border: 2px solid #ff6600;
    }

    .page-77-wim__button--primary:hover {
      background-color: #e65c00;
      transform: translateY(-2px);
    }

    .page-77-wim__button--secondary {
      background-color: transparent;
      color: #ff6600;
      border: 2px solid #ff6600;
      margin-left: 15px;
    }

    .page-77-wim__button--secondary:hover {
      background-color: #ff6600;
      color: #fff;
      transform: translateY(-2px);
    }

    .page-77-wim__button--small {
      padding: 8px 18px;
      font-size: 0.9em;
      border-radius: 20px;
    }

    /* Hero Section */
    .page-77-wim__hero-section {
      position: relative;
      background-color: #1a1a2e; /* Dark background */
      color: #fff;
      padding: 10px 20px 40px; /* Adjusted padding-top for header offset */
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      min-height: 60vh;
    }

    .page-77-wim__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3; /* Overlay effect */
      z-index: 1;
      max-width: 100%; /* Responsive image */
    }

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

    .page-77-wim__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: #fff;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-77-wim__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-77-wim__hero-buttons {
      display: flex;
      justify-content: center;
      gap: 15px;
    }

    /* About Section */
    .page-77-wim__about-section {
      padding: 60px 20px;
      background-color: #fff;
      text-align: center;
    }

    .page-77-wim__about-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      max-width: 1200px;
      margin: 0 auto;
      gap: 40px;
    }

    .page-77-wim__about-image {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
      max-width: 100%; /* Responsive image */
    }

    .page-77-wim__about-text {
      flex: 1;
      min-width: 300px;
      max-width: 600px;
      text-align: left;
    }

    .page-77-wim__about-text p {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: #444;
    }

    /* Games Section */
    .page-77-wim__games-section {
      padding: 60px 20px;
      background-color: #f0f2f5;
    }

    .page-77-wim__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-77-wim__game-item {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* For list item responsiveness */
    }

    .page-77-wim__game-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .page-77-wim__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid #eee;
      max-width: 100%; /* Responsive image */
    }

    .page-77-wim__game-title {
      font-size: 1.5em;
      color: #0a4f8d;
      margin: 15px 0 10px;
      padding: 0 15px;
    }

    .page-77-wim__game-description {
      font-size: 1em;
      color: #666;
      padding: 0 15px 20px;
    }

    /* Promotions Section */
    .page-77-wim__promotions-section {
      padding: 60px 20px;
      background-color: #fff;
    }

    .page-77-wim__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-77-wim__promo-item {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* For list item responsiveness */
    }

    .page-77-wim__promo-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .page-77-wim__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-bottom: 1px solid #eee;
      max-width: 100%; /* Responsive image */
    }

    .page-77-wim__promo-title {
      font-size: 1.4em;
      color: #0a4f8d;
      margin: 15px 0 10px;
      padding: 0 15px;
    }

    .page-77-wim__promo-description {
      font-size: 0.95em;
      color: #666;
      padding: 0 15px;
      margin-bottom: 20px;
    }

    .page-77-wim__promo-action {
      padding-bottom: 20px;
    }

    /* Features Section */
    .page-77-wim__features-section {
      padding: 60px 20px;
      background-color: #f0f2f5;
    }

    .page-77-wim__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-77-wim__feature-item {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      overflow: hidden;
      text-align: center;
      padding: 25px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* For list item responsiveness */
    }

    .page-77-wim__feature-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }

    .page-77-wim__feature-image {
      width: 100%;
      height: 150px;
      object-fit: contain;
      margin-bottom: 20px;
      max-width: 100%; /* Responsive image */
    }

    .page-77-wim__feature-title {
      font-size: 1.3em;
      color: #0a4f8d;
      margin-bottom: 10px;
    }

    .page-77-wim__feature-description {
      font-size: 0.95em;
      color: #666;
    }

    /* FAQ Section */
    .page-77-wim__faq-section {
      padding: 60px 20px;
      background-color: #fff;
    }

    .page-77-wim__faq-container {
      max-width: 900px;
      margin: 0 auto;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    }

    .page-77-wim__faq-item {
      border-bottom: 1px solid #eee;
    }

    .page-77-wim__faq-item:last-child {
      border-bottom: none;
    }

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

    .page-77-wim__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-77-wim__faq-q-text {
      font-size: 1.2em;
      color: #0a4f8d;
      margin: 0;
      pointer-events: none; /* Crucial for click handler */
    }

    .page-77-wim__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #ff6600;
      transition: transform 0.3s ease;
      pointer-events: none; /* Crucial for click handler */
    }

    .page-77-wim__faq-item.active .page-77-wim__faq-toggle {
      transform: rotate(45deg); /* Changes '+' to 'x' or '-' */
    }

    .page-77-wim__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      background-color: #fff;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    .page-77-wim__faq-answer p {
      margin: 0;
      color: #555;
    }

    /* Floating Buttons */
    .page-77-wim__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
    }

    .page-77-wim__floating-button {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px 20px;
      border-radius: 50px;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      transition: transform 0.2s ease, background-color 0.2s ease;
      min-width: 100px;
      font-size: 1em;
    }

    .page-77-wim__floating-button--register {
      background-color: #ff6600; /* Orange */
      color: #fff;
    }

    .page-77-wim__floating-button--register:hover {
      background-color: #e65c00;
      transform: translateY(-3px);
    }

    .page-77-wim__floating-button--login {
      background-color: #0a4f8d; /* Dark blue */
      color: #fff;
    }

    .page-77-wim__floating-button--login:hover {
      background-color: #083e70;
      transform: translateY(-3px);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-77-wim__hero-title {
        font-size: 3em;
      }
      .page-77-wim__hero-description {
        font-size: 1.1em;
      }
    }

    @media (max-width: 768px) {
      .page-77-wim__section-title {
        font-size: 2em;
        padding-top: 30px;
      }
      .page-77-wim__section-subtitle {
        font-size: 1em;
        margin-bottom: 30px;
      }

      .page-77-wim__hero-section {
        padding: 40px 15px 30px;
        min-height: 50vh;
      }
      .page-77-wim__hero-title {
        font-size: 2.2em;
      }
      .page-77-wim__hero-description {
        font-size: 1em;
      }
      .page-77-wim__hero-buttons {
        flex-direction: column;
        gap: 10px;
      }
      .page-77-wim__button {
        width: 80%;
        margin: 0 auto;
        padding: 10px 20px;
      }
      .page-77-wim__button--secondary {
        margin-left: 0;
      }

      .page-77-wim__about-section,
      .page-77-wim__games-section,
      .page-77-wim__promotions-section,
      .page-77-wim__features-section,
      .page-77-wim__faq-section {
        padding: 40px 15px;
      }

      .page-77-wim__about-content {
        flex-direction: column;
        gap: 30px;
      }
      .page-77-wim__about-image {
        max-width: 100%;
      }

      /* List items responsiveness for games, promotions, features */
      .page-77-wim__game-grid,
      .page-77-wim__promo-grid,
      .page-77-wim__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-77-wim__game-item,
      .page-77-wim__promo-item,
      .page-77-wim__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-77-wim__game-image,
      .page-77-wim__promo-image,
      .page-77-wim__feature-image {
        max-width: 100% !important;
        height: auto !important; /* Ensure images scale correctly */
        object-fit: cover !important;
      }
      .page-77-wim__feature-image {
        height: 120px !important; /* Adjust feature image height for mobile */
      }

      .page-77-wim__faq-question {
        padding: 15px 20px;
      }
      .page-77-wim__faq-q-text {
        font-size: 1.1em;
      }
      .page-77-wim__faq-answer {
        padding: 0 20px;
      }
      .page-77-wim__faq-item.active .page-77-wim__faq-answer {
        padding: 15px 20px !important;
      }

      .page-77-wim__floating-buttons {
        width: calc(100% - 40px); /* Account for padding */
        left: 20px;
        transform: translateX(0);
        justify-content: space-around;
        gap: 10px;
      }
      .page-77-wim__floating-button {
        flex: 1;
        min-width: unset;
        padding: 10px 15px;
        font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
      .page-77-wim__hero-title {
        font-size: 1.8em;
      }
      .page-77-wim__hero-description {
        font-size: 0.9em;
      }
      .page-77-wim__button {
        width: 90%;
      }
      .page-77-wim__section-title {
        font-size: 1.8em;
      }
      .page-77-wim__faq-q-text {
        font-size: 1em;
      }
      .page-77-wim__floating-button {
        font-size: 0.85em;
        padding: 8px 10px;
      }
    }
  