
    :root {
      --page-188-bey__primary-color: #1a1a2e; /* Dark blue/purple */
      --page-188-bey__secondary-color: #ffcc00; /* Gold/Yellow */
      --page-188-bey__text-color-light: #e0e0e0; /* Light gray */
      --page-188-bey__text-color-dark: #1a1a2e; /* Dark blue/purple */
      --page-188-bey__accent-color: #e63946; /* Red accent */
      --page-188-bey__card-bg: #2b2b4d; /* Slightly lighter dark blue */
      --page-188-bey__border-radius: 8px;
      --page-188-bey__padding-section: 40px 20px;
    }

    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-188-bey__text-color-light);
      background-color: var(--page-188-bey__primary-color);
      margin: 0;
      padding: 0;
    }

    .page-188-bey {
      max-width: 1200px;
      margin: 0 auto;
      background-color: var(--page-188-bey__primary-color);
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
      min-height: 100vh;
    }
    
    .page-188-bey__hero-section {
      position: relative;
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('[GALLERY:hero:1920x1080:betting,games,casino,mobile]') no-repeat center center/cover;
      color: var(--page-188-bey__text-color-light);
      text-align: center;
      padding: 10px 20px 80px; /* 10px top padding for hero, assuming body handles shared-header offset */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
      border-bottom-left-radius: var(--page-188-bey__border-radius);
      border-bottom-right-radius: var(--page-188-bey__border-radius);
      overflow: hidden;
    }

    .page-188-bey__hero-logo {
      font-size: 2.8em;
      font-weight: bold;
      color: var(--page-188-bey__secondary-color);
      margin-bottom: 10px;
      text-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
      letter-spacing: 1px;
    }

    .page-188-bey__hero-slogan {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      color: var(--page-188-bey__text-color-light);
    }

    .page-188-bey__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }

    .page-188-bey__button {
      background-color: var(--page-188-bey__secondary-color);
      color: var(--page-188-bey__text-color-dark);
      border: none;
      padding: 12px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      display: block;
      white-space: nowrap;
    }

    .page-188-bey__button:hover {
      background-color: #ffdb4d;
      transform: translateY(-2px);
    }

    .page-188-bey__section {
      padding: var(--page-188-bey__padding-section);
      margin-bottom: 20px;
      background-color: var(--page-188-bey__primary-color);
      border-radius: var(--page-188-bey__border-radius);
    }

    .page-188-bey__section-title {
      font-size: 2.2em;
      color: var(--page-188-bey__secondary-color);
      text-align: center;
      margin-bottom: 40px;
      text-transform: uppercase;
      letter-spacing: 1px;
      position: relative;
    }

    .page-188-bey__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: var(--page-188-bey__accent-color);
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-188-bey__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-188-bey__game-card {
      background-color: var(--page-188-bey__card-bg);
      border-radius: var(--page-188-bey__border-radius);
      overflow: hidden;
      text-align: center;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .page-188-bey__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    }

    .page-188-bey__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      border-bottom: 3px solid var(--page-188-bey__secondary-color);
    }

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

    .page-188-bey__game-card-title {
      font-size: 1.5em;
      color: var(--page-188-bey__secondary-color);
      margin-top: 0;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-188-bey__game-card-description {
      font-size: 0.95em;
      color: var(--page-188-bey__text-color-light);
      margin-bottom: 20px;
      flex-grow: 1;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-188-bey__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-188-bey__promotion-item {
      background-color: var(--page-188-bey__card-bg);
      border-radius: var(--page-188-bey__border-radius);
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-188-bey__promotion-item:hover {
      transform: translateY(-5px);
    }

    .page-188-bey__promotion-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      border-bottom: 2px solid var(--page-188-bey__accent-color);
    }

    .page-188-bey__promotion-content {
      padding: 25px;
    }

    .page-188-bey__promotion-title {
      font-size: 1.6em;
      color: var(--page-188-bey__secondary-color);
      margin-top: 0;
      margin-bottom: 15px;
    }

    .page-188-bey__promotion-description {
      font-size: 1em;
      color: var(--page-188-bey__text-color-light);
      margin-bottom: 20px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-188-bey__why-choose-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .page-188-bey__feature-item {
      background-color: var(--page-188-bey__card-bg);
      padding: 25px;
      border-radius: var(--page-188-bey__border-radius);
      text-align: center;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-188-bey__feature-icon {
      width: 80px; /* Min size 200x200px, so 80px is incorrect here. Must be at least 200px. */
      height: 80px; /* Correcting to ensure min 200x200 */
      width: 200px; /* Corrected minimum size */
      height: 200px; /* Corrected minimum size */
      margin-bottom: 20px;
      object-fit: contain;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-188-bey__feature-title {
      font-size: 1.4em;
      color: var(--page-188-bey__secondary-color);
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-188-bey__feature-description {
      font-size: 0.95em;
      color: var(--page-188-bey__text-color-light);
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-188-bey__faq-section {
      background-color: var(--page-188-bey__primary-color);
      padding: var(--page-188-bey__padding-section);
      border-radius: var(--page-188-bey__border-radius);
    }

    .page-188-bey__faq-list {
      list-style: none;
      padding: 0;
      margin: 0 auto;
      max-width: 800px;
    }

    .page-188-bey__faq-item {
      background-color: var(--page-188-bey__card-bg);
      border-radius: var(--page-188-bey__border-radius);
      margin-bottom: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-188-bey__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #3b3b6b; /* Slightly different background for question */
      transition: background-color 0.3s ease;
    }

    .page-188-bey__faq-question:hover {
      background-color: #4c4c7c;
    }

    .page-188-bey__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-188-bey__secondary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

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

    .page-188-bey__faq-item.active .page-188-bey__faq-toggle {
      transform: rotate(45deg);
    }

    .page-188-bey__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-188-bey__text-color-light);
      font-size: 0.95em;
    }

    .page-188-bey__faq-item.active .page-188-bey__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-188-bey__contact-info {
      text-align: center;
      padding: 30px 20px;
      background-color: var(--page-188-bey__card-bg);
      border-top-left-radius: var(--page-188-bey__border-radius);
      border-top-right-radius: var(--page-188-bey__border-radius);
      margin-top: 40px;
    }

    .page-188-bey__contact-info p {
      margin: 10px 0;
      font-size: 1em;
      color: var(--page-188-bey__text-color-light);
    }

    .page-188-bey__contact-info strong {
      color: var(--page-188-bey__secondary-color);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-188-bey__hero-logo {
        font-size: 2em;
      }

      .page-188-bey__hero-slogan {
        font-size: 1em;
      }

      .page-188-bey__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      .page-188-bey__game-categories,
      .page-188-bey__promotions-grid,
      .page-188-bey__why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      .page-188-bey__game-card,
      .page-188-bey__promotion-item,
      .page-188-bey__feature-item,
      .page-188-bey__faq-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;
      }

      .page-188-bey__game-card-description,
      .page-188-bey__promotion-description,
      .page-188-bey__feature-description,
      .page-188-bey__faq-answer p {
        word-break: break-word !important;
      }

      .page-188-bey__game-card-image,
      .page-188-bey__promotion-image,
      .page-188-bey__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-188-bey__game-card-content,
      .page-188-bey__promotion-content,
      .page-188-bey__feature-item,
      .page-188-bey__faq-question,
      .page-188-bey__faq-answer {
        padding: 15px !important;
      }

      .page-188-bey__faq-question h3 {
        font-size: 1.1em;
      }

      .page-188-bey__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        bottom: 15px;
        justify-content: space-around;
        gap: 10px;
      }
      .page-188-bey__button {
        flex: 1;
        padding: 10px 15px;
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-188-bey__hero-section {
        padding-bottom: 60px;
      }
      .page-188-bey__hero-logo {
        font-size: 1.8em;
      }
      .page-188-bey__hero-slogan {
        font-size: 0.9em;
      }
      .page-188-bey__section-title {
        font-size: 1.6em;
      }
      .page-188-bey__floating-buttons {
        flex-direction: column; /* Stack buttons vertically on very small screens */
        width: calc(100% - 30px);
        left: 15px;
        right: 15px;
        bottom: 10px;
      }
      .page-188-bey__button {
        width: 100%; /* Full width for stacked buttons */
        padding: 10px 15px;
        font-size: 0.95em;
      }
    }
  