
    .page-566-game {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #1a1a2e;
      color: #e0e0e0;
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback if shared CSS doesn't provide */
    }

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

    .page-566-game__section {
      padding: 40px 0;
      text-align: center;
      margin-bottom: 20px;
      border-radius: 10px;
      background-color: #16213e;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-566-game__section--dark {
      background-color: #0f3460;
    }

    .page-566-game__section-title {
      color: #e94560;
      font-size: 2.5em;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-566-game__section-subtitle {
      color: #e0e0e0;
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-566-game__hero-section {
      background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
      padding: 60px 20px;
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Decorative top padding, assuming body padding from shared.css */
    }

    .page-566-game__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      margin-top: 30px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
      object-fit: cover;
    }

    .page-566-game__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-566-game__floating-button {
      background-color: #e94560;
      color: #ffffff;
      border: none;
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      white-space: nowrap;
    }

    .page-566-game__floating-button:hover {
      background-color: #d33c53;
      transform: translateY(-3px);
    }

    .page-566-game__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      padding: 20px;
    }

    .page-566-game__game-card {
      background-color: #27374d;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
    }

    .page-566-game__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-566-game__game-card-image {
      width: 100%;
      max-width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 2px solid #e94560;
    }

    .page-566-game__game-card-title {
      color: #e94560;
      font-size: 1.4em;
      margin: 15px 10px 5px;
    }

    .page-566-game__game-card-description {
      color: #b0b0b0;
      font-size: 0.95em;
      padding: 0 15px;
    }

    .page-566-game__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      padding: 20px;
    }

    .page-566-game__promo-card {
      background-color: #27374d;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
    }

    .page-566-game__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-566-game__promo-card-image {
      width: 100%;
      max-width: 100%;
      height: 220px;
      object-fit: cover;
    }

    .page-566-game__promo-card-content {
      padding: 20px;
    }

    .page-566-game__promo-card-title {
      color: #e94560;
      font-size: 1.5em;
      margin-bottom: 10px;
    }

    .page-566-game__promo-card-description {
      color: #b0b0b0;
      font-size: 0.95em;
      margin-bottom: 15px;
    }

    .page-566-game__button {
      background-color: #e94560;
      color: #ffffff;
      border: none;
      padding: 12px 30px;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease;
      display: inline-block;
      text-decoration: none;
      text-transform: uppercase;
    }

    .page-566-game__button:hover {
      background-color: #d33c53;
    }

    .page-566-game__about-content {
      text-align: left;
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-566-game__about-text {
      margin-bottom: 20px;
      color: #b0b0b0;
    }

    .page-566-game__about-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      margin-top: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-566-game__payment-list,
    .page-566-game__provider-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      padding: 20px;
    }

    .page-566-game__payment-item,
    .page-566-game__provider-item {
      background-color: #27374d;
      border-radius: 8px;
      padding: 15px 25px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 180px;
      max-width: 250px;
      box-sizing: border-box;
      flex-grow: 1;
    }

    .page-566-game__payment-item:hover,
    .page-566-game__provider-item:hover {
      transform: translateY(-3px);
    }

    .page-566-game__payment-logo,
    .page-566-game__provider-logo {
      max-width: 100%;
      height: 60px;
      object-fit: contain;
      filter: grayscale(20%);
      transition: filter 0.3s ease;
    }

    .page-566-game__payment-item:hover .page-566-game__payment-logo,
    .page-566-game__provider-item:hover .page-566-game__provider-logo {
      filter: grayscale(0%);
    }

    .page-566-game__faq-list {
      max-width: 800px;
      margin: 0 auto;
      padding: 20px;
      text-align: left;
    }

    .page-566-game__faq-item {
      background-color: #27374d;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-566-game__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      color: #e94560;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-566-game__faq-question:hover {
      background-color: #37475d;
    }

    .page-566-game__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none;
      color: #e94560;
    }

    .page-566-game__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none;
      transition: transform 0.3s ease;
    }

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

    .page-566-game__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: #b0b0b0;
    }

    .page-566-game__faq-item.active .page-566-game__faq-answer {
      max-height: 2000px !important;
      padding: 20px !important;
      opacity: 1;
    }

    @media (max-width: 768px) {
      .page-566-game__section-title {
        font-size: 2em;
      }

      .page-566-game__floating-buttons {
        right: 10px;
        bottom: 10px;
        gap: 8px;
      }

      .page-566-game__floating-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }

      .page-566-game__game-grid,
      .page-566-game__promo-grid {
        grid-template-columns: 1fr;
        padding: 10px;
      }

      .page-566-game__game-card-image,
      .page-566-game__promo-card-image {
        height: 180px;
      }

      .page-566-game__payment-list,
      .page-566-game__provider-list {
        flex-direction: column;
        align-items: center;
        padding: 10px;
      }

      .page-566-game__payment-item,
      .page-566-game__provider-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 12px 15px;
      }

      .page-566-game__payment-item p,
      .page-566-game__provider-item p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-566-game__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }

      .page-566-game__faq-answer {
        padding: 0 15px;
      }

      .page-566-game__faq-item.active .page-566-game__faq-answer {
        padding: 15px !important;
      }
    }
  