
    .page-71win {
      font-family: 'Arial', sans-serif;
      color: #ffffff;
      background-color: #1a1a2e; /* Dark background */
      line-height: 1.6;
      overflow-x: hidden; /* Prevent horizontal scroll from fixed elements */
      /* Assuming body padding-top is handled by shared.css for header offset */
      /* If not, uncomment below for fallback: */
      /* padding-top: var(--header-offset, 122px); */
    }

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

    .page-71win__section-title {
      font-size: 2.5em;
      color: #e94560; /* Accent color */
      text-align: center;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-71win__section-description {
      font-size: 1.1em;
      text-align: center;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #cccccc;
    }

    /* Hero Section */
    .page-71win__hero-section {
      position: relative;
      width: 100%;
      height: 600px; /* Adjust height for visual impact */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding-top: 10px; /* Small decorative padding, body handles main offset */
      box-sizing: border-box;
    }

    .page-71win__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      max-width: 100% !important; /* Mobile responsive */
    }

    .page-71win__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
      z-index: 2;
    }

    .page-71win__hero-content {
      position: relative;
      z-index: 3;
      max-width: 900px;
      padding: 20px;
    }

    .page-71win__hero-title {
      font-size: 3.5em;
      color: #e94560; /* Accent color */
      margin-bottom: 20px;
      font-weight: bold;
      line-height: 1.2;
    }

    .page-71win__hero-subtitle {
      font-size: 1.5em;
      color: #ffffff;
      margin-bottom: 40px;
      font-weight: normal;
    }

    .page-71win__hero-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    .page-71win__button {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      white-space: nowrap; /* Prevent button text from wrapping */
    }

    .page-71win__button--primary {
      background-color: #e94560; /* Primary accent */
      color: #ffffff;
      border: 2px solid #e94560;
    }

    .page-71win__button--primary:hover {
      background-color: #ff6b81;
      transform: translateY(-3px);
    }

    .page-71win__button--secondary {
      background-color: #0f3460; /* Secondary accent */
      color: #ffffff;
      border: 2px solid #0f3460;
    }

    .page-71win__button--secondary:hover {
      background-color: #1a4f8f;
      transform: translateY(-3px);
    }

    /* Floating Buttons */
    .page-71win__floating-buttons-wrapper {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-71win__floating-button {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px 20px;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1em;
      text-decoration: none;
      color: #ffffff;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, background-color 0.3s ease;
      min-width: 100px; /* Ensure buttons have a minimum width */
    }

    .page-71win__floating-button--register {
      background-color: #e94560; /* Primary accent */
    }

    .page-71win__floating-button--register:hover {
      background-color: #ff6b81;
      transform: scale(1.05);
    }

    .page-71win__floating-button--login {
      background-color: #0f3460; /* Secondary accent */
    }

    .page-71win__floating-button--login:hover {
      background-color: #1a4f8f;
      transform: scale(1.05);
    }

    /* About Section */
    .page-71win__about-section {
      padding: 60px 0;
      background-color: #1f2a40; /* Slightly lighter dark background */
    }

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

    .page-71win__feature-item {
      background-color: #2a3b50;
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

    .page-71win__feature-item:hover {
      transform: translateY(-10px);
    }

    .page-71win__feature-icon {
      width: 100px;
      height: auto;
      margin-bottom: 20px;
      max-width: 100% !important; /* Mobile responsive */
    }

    .page-71win__feature-title {
      font-size: 1.6em;
      color: #e94560;
      margin-bottom: 15px;
    }

    .page-71win__feature-text {
      font-size: 1em;
      color: #cccccc;
    }

    /* Games Section */
    .page-71win__games-section {
      padding: 60px 0;
      background-color: #1a1a2e;
    }

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

    .page-71win__game-item {
      background-color: #2a3b50;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-71win__game-item:hover {
      transform: translateY(-10px);
    }

    .page-71win__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      margin-bottom: 15px;
      max-width: 100% !important; /* Mobile responsive */
    }

    .page-71win__game-title {
      font-size: 1.5em;
      color: #e94560;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-71win__game-text {
      font-size: 0.95em;
      color: #cccccc;
      padding: 0 15px 20px;
    }

    /* Promotions Section */
    .page-71win__promotions-section {
      padding: 60px 0;
      background-color: #1f2a40;
    }

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

    .page-71win__promo-item {
      background-color: #2a3b50;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-71win__promo-item:hover {
      transform: translateY(-10px);
    }

    .page-71win__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      margin-bottom: 15px;
      max-width: 100% !important; /* Mobile responsive */
    }

    .page-71win__promo-title {
      font-size: 1.4em;
      color: #e94560;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-71win__promo-text {
      font-size: 0.95em;
      color: #cccccc;
      padding: 0 15px 20px;
    }

    /* Payments and Providers Section */
    .page-71win__payments-providers-section {
      padding: 60px 0;
      background-color: #1a1a2e;
    }

    .page-71win__subsection {
      margin-bottom: 50px;
    }

    .page-71win__subsection:last-child {
      margin-bottom: 0;
    }

    .page-71win__subsection-title {
      font-size: 2em;
      color: #e94560;
      text-align: center;
      margin-bottom: 30px;
    }

    .page-71win__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-items: center;
      align-items: center;
    }

    .page-71win__logo-item {
      background-color: #2a3b50;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 80px;
      max-width: 200px; /* Limit width for logos */
      box-sizing: border-box;
    }

    .page-71win__logo-image {
      max-width: 100%;
      max-height: 60px; /* Adjust height for logos */
      object-fit: contain;
      filter: brightness(0) invert(1) grayscale(100%); /* Make logos white/light for dark background */
      max-width: 100% !important; /* Mobile responsive */
      height: auto !important; /* Mobile responsive */
    }

    /* FAQ Section */
    .page-71win__faq-section {
      padding: 60px 0;
      background-color: #1f2a40;
    }

    .page-71win__faq-list {
      margin-top: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-71win__faq-item {
      background-color: #2a3b50;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }

    .page-71win__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #0f3460; /* Darker blue for question background */
      color: #ffffff;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-71win__faq-question:hover {
      background-color: #1a4f8f;
    }

    .page-71win__faq-title {
      font-size: 1.3em;
      margin: 0;
      color: #ffffff;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-71win__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      width: 30px;
      text-align: center;
      pointer-events: none; /* Prevent span from blocking click on parent div */
      transition: transform 0.3s ease;
    }

    .page-71win__faq-item.active .page-71win__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or just change to '-' */
    }

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

    .page-71win__faq-item.active .page-71win__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to show content */
      padding: 20px 25px !important; /* Padding when active */
      opacity: 1;
    }

    .page-71win__faq-answer p {
      margin: 0;
      font-size: 1em;
    }

    /* Call to Action Section */
    .page-71win__cta-section {
      padding: 80px 0;
      background-color: #e94560; /* Primary accent background */
      text-align: center;
    }

    .page-71win__cta-title {
      font-size: 2.8em;
      color: #ffffff;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-71win__cta-description {
      font-size: 1.2em;
      color: #f0f0f0;
      margin-bottom: 40px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-71win__cta-section .page-71win__button--primary {
      background-color: #0f3460; /* Darker blue for contrast on red background */
      border-color: #0f3460;
    }

    .page-71win__cta-section .page-71win__button--primary:hover {
      background-color: #1a4f8f;
      border-color: #1a4f8f;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-71win__hero-title {
        font-size: 3em;
      }
      .page-71win__hero-subtitle {
        font-size: 1.3em;
      }
      .page-71win__section-title {
        font-size: 2em;
      }
      .page-71win__subsection-title {
        font-size: 1.8em;
      }
      .page-71win__cta-title {
        font-size: 2.2em;
      }
    }

    @media (max-width: 768px) {
      .page-71win__hero-section {
        height: 500px;
      }
      .page-71win__hero-title {
        font-size: 2.5em;
      }
      .page-71win__hero-subtitle {
        font-size: 1.1em;
      }
      .page-71win__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-71win__button {
        width: 80%;
        margin: 0 auto;
        padding: 12px 25px;
      }

      .page-71win__section-title {
        font-size: 1.8em;
      }
      .page-71win__section-description {
        font-size: 1em;
      }
      .page-71win__feature-title {
        font-size: 1.4em;
      }
      .page-71win__game-title,
      .page-71win__promo-title {
        font-size: 1.3em;
      }
      .page-71win__subsection-title {
        font-size: 1.6em;
      }
      .page-71win__cta-title {
        font-size: 1.8em;
      }
      .page-71win__cta-description {
        font-size: 1em;
      }
      .page-71win__faq-title {
        font-size: 1.1em;
      }
      .page-71win__faq-question {
        padding: 15px 20px;
      }
      .page-71win__faq-answer {
        padding: 15px 20px !important; /* Mobile specific padding */
      }

      /* Mobile list item responsiveness for grids */
      .page-71win__features-grid,
      .page-71win__game-grid,
      .page-71win__promo-grid,
      .page-71win__logo-grid {
        grid-template-columns: 1fr;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-71win__feature-item,
      .page-71win__game-item,
      .page-71win__promo-item,
      .page-71win__logo-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-71win__logo-item {
        max-width: unset;
      }

      /* Ensure images are responsive */
      .page-71win__feature-icon,
      .page-71win__game-image,
      .page-71win__promo-image,
      .page-71win__logo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-71win__floating-buttons-wrapper {
        right: 10px;
        bottom: 10px;
        gap: 8px;
      }

      .page-71win__floating-button {
        padding: 10px 15px;
        font-size: 0.9em;
        min-width: 80px;
      }
    }

    @media (max-width: 480px) {
      .page-71win__hero-title {
        font-size: 2em;
      }
      .page-71win__hero-subtitle {
        font-size: 1em;
      }
      .page-71win__section-title {
        font-size: 1.6em;
      }
      .page-71win__cta-title {
        font-size: 1.6em;
      }
    }
  