
    /* CSS for page-100-win-bet */
    :root {
      --primary-color: #e44d26; /* A vibrant red/orange */
      --secondary-color: #f7b731; /* A golden yellow */
      --text-color: #333;
      --light-bg: #f9f9f9;
      --dark-bg: #2c3e50; /* Dark blue/grey for contrast */
      --white-color: #ffffff;
      --border-color: #ddd;
    }

    .page-100-win-bet {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background-color: var(--light-bg);
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    /* Fixed Header Offset Adjustment */
    /* If body already has padding-top from shared.css, this will be small */
    .page-100-win-bet__hero-section {
      padding-top: 10px; /* Small decorative padding, body handles main offset */
    }

    .page-100-win-bet__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: var(--white-color);
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .page-100-win-bet__section--dark {
      background-color: var(--dark-bg);
      color: var(--white-color);
    }

    .page-100-win-bet__section-title {
      text-align: center;
      color: var(--primary-color);
      margin-bottom: 30px;
      font-size: 2.2em;
      font-weight: bold;
      position: relative;
    }
    .page-100-win-bet__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: var(--secondary-color);
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-100-win-bet__text-center {
      text-align: center;
    }

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

    /* Hero Section */
    .page-100-win-bet__hero-section {
      background-color: var(--dark-bg);
      color: var(--white-color);
      text-align: center;
      padding: 60px 20px 40px;
      position: relative;
      overflow: hidden;
    }
    .page-100-win-bet__hero-background-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }
    .page-100-win-bet__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }
    .page-100-win-bet__hero-title {
      font-size: 3em;
      margin-bottom: 20px;
      color: var(--secondary-color);
      line-height: 1.2;
    }
    .page-100-win-bet__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--white-color);
    }
    .page-100-win-bet__promo-button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--white-color);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    .page-100-win-bet__promo-button:hover {
      background-color: #ff6a3d;
      transform: translateY(-2px);
    }

    /* Game Categories */
    .page-100-win-bet__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }
    .page-100-win-bet__game-card {
      background-color: var(--white-color);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%; /* Ensure cards are same height */
    }
    .page-100-win-bet__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    .page-100-win-bet__game-card-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for images */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #eee;
    }
    .page-100-win-bet__game-card-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      width: 100%; /* Ensure image fills wrapper */
      transition: transform 0.3s ease;
      min-width: 200px; /* Enforce min size for images */
      min-height: 200px;
    }
    .page-100-win-bet__game-card:hover .page-100-win-bet__game-card-image {
      transform: scale(1.05);
    }
    .page-100-win-bet__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .page-100-win-bet__game-card-title {
      font-size: 1.4em;
      color: var(--primary-color);
      margin-bottom: 15px;
      font-weight: bold;
    }
    .page-100-win-bet__game-card-description {
      font-size: 0.95em;
      color: var(--text-color);
      margin-bottom: 15px;
      flex-grow: 1;
    }
    .page-100-win-bet__game-card-button {
      display: inline-block;
      background-color: var(--secondary-color);
      color: var(--dark-bg);
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
      cursor: pointer; /* Indicate it's clickable, even without a link */
      border: none;
    }
    .page-100-win-bet__game-card-button:hover {
      background-color: #fce38a;
    }

    /* Why Choose Us */
    .page-100-win-bet__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }
    .page-100-win-bet__feature-item {
      text-align: center;
      padding: 25px;
      background-color: var(--light-bg);
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }
    .page-100-win-bet__feature-item:hover {
      transform: translateY(-5px);
    }
    .page-100-win-bet__feature-icon {
      width: 100px; /* This is a wrapper, actual image will be larger */
      height: 100px;
      margin: 0 auto 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      background-color: var(--primary-color);
      color: var(--white-color);
      font-size: 3em; /* Placeholder for actual image */
      font-weight: bold;
      overflow: hidden; /* Ensure image doesn't overflow */
    }
    .page-100-win-bet__feature-image {
      max-width: 100%;
      height: auto;
      border-radius: 50%; /* If circular image */
      object-fit: cover;
      min-width: 200px; /* Ensure images are not small icons */
      min-height: 200px;
      display: block;
    }
    .page-100-win-bet__feature-title {
      font-size: 1.5em;
      color: var(--dark-bg);
      margin-bottom: 10px;
    }
    .page-100-win-bet__feature-description {
      font-size: 1em;
      color: var(--text-color);
    }

    /* Promotions */
    .page-100-win-bet__promotion-card {
      background-color: var(--primary-color);
      color: var(--white-color);
      border-radius: 10px;
      padding: 30px;
      text-align: center;
      margin-bottom: 20px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    .page-100-win-bet__promotion-card-title {
      font-size: 2em;
      margin-bottom: 15px;
      color: var(--secondary-color);
    }
    .page-100-win-bet__promotion-card-description {
      font-size: 1.1em;
      margin-bottom: 25px;
      line-height: 1.5;
    }
    .page-100-win-bet__promotion-card-button {
      background-color: var(--white-color);
      color: var(--primary-color);
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, color 0.3s ease;
      cursor: pointer;
      border: none;
    }
    .page-100-win-bet__promotion-card-button:hover {
      background-color: #eee;
      color: #c0392b;
    }

    /* Payment Methods & Game Providers */
    .page-100-win-bet__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 20px;
      justify-items: center;
      align-items: center;
    }
    .page-100-win-bet__logo-wrapper {
        width: 100%;
        max-width: 250px; /* Example max width */
        height: 150px; /* Example height to contain the image */
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        box-sizing: border-box;
        transition: transform 0.2s ease;
    }
    .page-100-win-bet__logo-wrapper:hover {
      transform: translateY(-3px);
    }
    .page-100-win-bet__logo-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        min-width: 200px; /* Ensure images are not small icons */
        min-height: 200px;
        display: block;
    }

    /* FAQ Section */
    .page-100-win-bet__faq-list {
      list-style: none;
      padding: 0;
    }
    .page-100-win-bet__faq-item {
      background-color: var(--white-color);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 10px;
      overflow: hidden;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }
    .page-100-win-bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: var(--light-bg);
      font-weight: bold;
      color: var(--dark-bg);
      transition: background-color 0.3s ease;
    }
    .page-100-win-bet__faq-question:hover {
      background-color: #e0e0e0;
    }
    .page-100-win-bet__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }
    .page-100-win-bet__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent */
      transition: transform 0.3s ease;
    }
    .page-100-win-bet__faq-item.active .page-100-win-bet__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or similar */
    }
    .page-100-win-bet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      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(--text-color);
      font-size: 0.95em;
    }
    .page-100-win-bet__faq-item.active .page-100-win-bet__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 20px !important;
      opacity: 1;
    }

    /* Floating Buttons */
    .page-100-win-bet__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
      box-sizing: border-box;
    }
    .page-100-win-bet__floating-button {
      background-color: var(--primary-color);
      color: var(--white-color);
      padding: 12px 25px;
      border-radius: 30px;
      text-align: center;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      min-width: 120px;
      display: block; /* Ensure it takes full width of its container */
    }
    .page-100-win-bet__floating-button:hover {
      background-color: #ff6a3d;
      transform: translateY(-2px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-100-win-bet {
        padding-top: var(--header-offset, 100px); /* Adjust for mobile header */
      }
      .page-100-win-bet__section {
        padding: 30px 15px;
      }
      .page-100-win-bet__section-title {
        font-size: 1.8em;
      }
      .page-100-win-bet__hero-title {
        font-size: 2.2em;
      }
      .page-100-win-bet__hero-subtitle {
        font-size: 1.1em;
      }
      .page-100-win-bet__game-grid {
        grid-template-columns: 1fr;
      }
      .page-100-win-bet__features-grid {
        grid-template-columns: 1fr;
      }
      .page-100-win-bet__logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr)); /* Adjust for smaller screens */
      }
      .page-100-win-bet__logo-wrapper {
          max-width: 150px; /* Smaller max-width for mobile logos */
          height: 100px;
      }

      /* List item responsive requirements for FAQ */
      .page-100-win-bet__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 10px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-100-win-bet__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-100-win-bet__faq-question {
        padding: 12px 15px;
        font-size: 0.95em;
      }
      .page-100-win-bet__faq-question h3 {
        font-size: 1em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-100-win-bet__faq-answer {
        padding: 15px !important;
        font-size: 0.9em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-100-win-bet__floating-buttons {
        bottom: 15px;
        right: 15px;
        width: calc(100% - 30px); /* Adjust width to not be too wide */
        flex-direction: row; /* Buttons side-by-side on mobile */
        justify-content: space-around;
        gap: 8px;
      }
      .page-100-win-bet__floating-button {
        flex: 1; /* Distribute space evenly */
        padding: 10px 15px;
        font-size: 0.9em;
        min-width: unset;
      }
    }

    @media (max-width: 480px) {
        .page-100-win-bet__hero-title {
            font-size: 1.8em;
        }
        .page-100-win-bet__hero-subtitle {
            font-size: 0.95em;
        }
        .page-100-win-bet__floating-buttons {
            flex-direction: column; /* Stack buttons on very small screens */
            align-items: stretch;
        }
        .page-100-win-bet__floating-button {
            width: 100%;
        }
    }

    /* Ensure all images are responsive and not small icons */
    .page-100-win-bet img {
        max-width: 100%;
        height: auto;
        display: block; /* Remove extra space below image */
        object-fit: cover; /* Default object-fit */
    }

    /* Specific image responsive rules */
    @media (max-width: 768px) {
        .page-100-win-bet img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-100-win-bet__game-card-image-wrapper,
        .page-100-win-bet__logo-wrapper,
        .page-100-win-bet__feature-icon { /* Also apply to feature icon wrapper */
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }
    }
  