
    /* Global styles for this page only, using BEM */
    .page-1bwm {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f5f5f5;
      padding: 0;
      margin: 0;
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

    .page-1bwm__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    /* Hero Section */
    .page-1bwm__hero-section {
      position: relative;
      width: 100%;
      height: 60vh; /* Adjust height for visual impact */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      padding-top: 10px; /* Small decorative top padding, assuming body handles main offset */
      box-sizing: border-box;
      min-height: 300px; /* Ensure minimum height on smaller screens */
    }

    .page-1bwm__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.6); /* Darken background for text readability */
      max-width: 100%; /* Responsive image */
    }

    .page-1bwm__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
      border-radius: 10px;
      max-width: 90%;
    }

    .page-1bwm__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: #ffcc00; /* Gold color for brand */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      word-wrap: break-word; /* Ensure long titles wrap */
      overflow-wrap: break-word;
    }

    .page-1bwm__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 25px;
      color: #eee;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

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

    .page-1bwm__floating-button {
      background-color: #ffcc00; /* Gold */
      color: #333;
      border: none;
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none; /* In case it's mistakenly an anchor */
      text-align: center;
      white-space: nowrap;
      min-width: 120px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-1bwm__floating-button:hover {
      background-color: #e6b800; /* Darker gold */
      transform: translateY(-2px);
    }

    /* Section Styling */
    .page-1bwm__section {
      padding: 40px 0;
      text-align: center;
      background-color: #fff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .page-1bwm__section--dark {
      background-color: #333;
      color: #eee;
    }

    .page-1bwm__section-title {
      font-size: 2.5em;
      margin-bottom: 30px;
      color: #333;
      text-transform: uppercase;
      position: relative;
      padding-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-1bwm__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #ffcc00;
      border-radius: 2px;
    }

    .page-1bwm__section--dark .page-1bwm__section-title {
      color: #ffcc00;
    }

    .page-1bwm__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      padding: 0 15px;
      color: #555;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-1bwm__section--dark .page-1bwm__text-content {
      color: #ccc;
    }
    
    .page-1bwm__section-subtitle {
      font-size: 1.8em;
      margin-top: 40px;
      margin-bottom: 20px;
      color: #333;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Game Categories */
    .page-1bwm__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      padding: 0 20px;
      margin-top: 30px;
    }

    .page-1bwm__game-card {
      background-color: #f9f9f9;
      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;
      height: 100%;
      box-sizing: border-box; /* Responsive container */
      width: 100%; /* Responsive container */
      max-width: 100%; /* Responsive container */
    }

    .page-1bwm__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .page-1bwm__game-card-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      max-width: 100%; /* Responsive image */
    }

    .page-1bwm__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-1bwm__game-card-title {
      font-size: 1.4em;
      margin-bottom: 10px;
      color: #ffcc00;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-1bwm__game-card-description {
      font-size: 0.95em;
      color: #666;
      flex-grow: 1;
      margin-bottom: 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-1bwm__game-card-button {
      background-color: #007bff;
      color: #fff;
      border: none;
      padding: 10px 20px;
      border-radius: 25px;
      cursor: pointer;
      font-weight: bold;
      transition: background-color 0.3s ease;
      display: inline-block; /* Ensure button is centered */
      text-align: center;
      text-decoration: none;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-1bwm__game-card-button:hover {
      background-color: #0056b3;
    }

    /* Promotions */
    .page-1bwm__promo-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-1bwm__promo-item {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      padding: 25px;
      text-align: left;
      width: calc(33% - 20px); /* 3 items per row */
      box-sizing: border-box;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 250px;
    }

    .page-1bwm__promo-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    }

    .page-1bwm__promo-item-title {
      color: #ffcc00;
      font-size: 1.3em;
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-1bwm__promo-item-description {
      color: #555;
      font-size: 0.95em;
      margin-bottom: 15px;
      flex-grow: 1;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-1bwm__promo-item-button {
      background-color: #28a745;
      color: #fff;
      border: none;
      padding: 8px 15px;
      border-radius: 20px;
      cursor: pointer;
      font-weight: bold;
      transition: background-color 0.3s ease;
      display: inline-block;
      text-align: center;
      text-decoration: none;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-1bwm__promo-item-button:hover {
      background-color: #218838;
    }

    /* Payment and Providers */
    .page-1bwm__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      padding: 0 20px;
      margin-top: 30px;
      justify-items: center;
    }

    .page-1bwm__logo-item {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      padding: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100px;
      width: 100%;
      box-sizing: border-box;
      max-width: 100%; /* Responsive container */
    }

    .page-1bwm__logo-image {
      max-width: 100%;
      max-height: 80px;
      height: auto;
      display: block;
    }

    /* FAQ Section */
    .page-1bwm__faq-list {
      max-width: 800px;
      margin: 30px auto 0 auto;
      text-align: left;
      padding: 0 15px;
    }

    .page-1bwm__faq-item {
      background-color: #f9f9f9;
      border: 1px solid #ddd;
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      box-sizing: border-box; /* Responsive item */
      width: 100%; /* Responsive item */
      max-width: 100%; /* Responsive item */
    }

    .page-1bwm__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #eee;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      color: #333;
      transition: background-color 0.3s ease;
    }

    .page-1bwm__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-1bwm__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #333;
      pointer-events: none; /* Prevent h3 from intercepting click */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-1bwm__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 10px;
      color: #ffcc00;
      pointer-events: none; /* Prevent toggle icon from intercepting click */
      transition: transform 0.3s ease;
    }

    .page-1bwm__faq-item.active .page-1bwm__faq-toggle {
      transform: rotate(45deg); /* Change + to X-like for active state */
    }

    .page-1bwm__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
      font-size: 1em;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

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

    /* General Link/Button styling (for non-navigable elements) */
    .page-1bwm__button {
      display: inline-block;
      background-color: #ffcc00;
      color: #333;
      padding: 12px 30px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-1bwm__button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .page-1bwm__hero-title {
        font-size: 2.5em;
      }

      .page-1bwm__hero-subtitle {
        font-size: 1.2em;
      }

      .page-1bwm__section-title {
        font-size: 2em;
      }

      .page-1bwm__text-content {
        font-size: 1em;
      }
      
      .page-1bwm__section-subtitle {
        font-size: 1.5em;
      }

      .page-1bwm__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        bottom: 15px;
        justify-content: space-around;
      }

      .page-1bwm__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 1em;
        min-width: unset;
      }

      .page-1bwm__game-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
      }

      .page-1bwm__game-card-image {
        height: 180px;
      }

      .page-1bwm__promo-list {
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
      }

      .page-1bwm__promo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        min-height: unset; /* Allow height to adjust */
      }
      
      .page-1bwm__promo-item-description {
        margin-bottom: 10px;
      }

      .page-1bwm__logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        padding: 0 15px;
      }

      .page-1bwm__faq-question {
        padding: 12px 15px;
      }

      .page-1bwm__faq-question h3 {
        font-size: 1.1em;
      }

      .page-1bwm__faq-answer {
        padding: 15px 15px !important; /* Adjust padding for mobile */
      }
    }

    /* Ensure all images are responsive */
    .page-1bwm img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
      box-sizing: border-box;
    }

    /* Ensure image containers are responsive */
    .page-1bwm__hero-section,
    .page-1bwm__game-card,
    .page-1bwm__logo-item {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }
    
    /* Ensure text wrapping for all text elements */
    .page-1bwm h1, .page-1bwm h2, .page-1bwm h3, .page-1bwm p, .page-1bwm li, .page-1bwm button, .page-1bwm span {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
  