
    .page-6ff8 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e;
      line-height: 1.6;
    }

    .page-6ff8__section-title {
      font-size: 2.2em;
      color: #e94560;
      text-align: center;
      margin-bottom: 20px;
      padding-top: 40px;
      font-weight: bold;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-6ff8__section-description {
      text-align: center;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      padding: 0 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-6ff8__button {
      display: inline-block;
      padding: 14px 28px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: center;
      color: #fff; /* Ensure contrast */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-6ff8__button--primary {
      background-color: #e94560;
      border: 2px solid #e94560;
    }

    .page-6ff8__button--primary:hover {
      background-color: #fc7287;
      border-color: #fc7287;
      transform: translateY(-2px);
    }

    .page-6ff8__button--secondary {
      background-color: #0f3460;
      border: 2px solid #0f3460;
    }

    .page-6ff8__button--secondary:hover {
      background-color: #1a1a2e;
      border-color: #1a1a2e;
      transform: translateY(-2px);
    }

    .page-6ff8__button--large {
      padding: 18px 36px;
      font-size: 1.1em;
    }

    /* Hero Section */
    .page-6ff8__hero-section {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 10px 0 60px 0; /* 10px top padding as per requirement */
      background-color: #0f3460;
      overflow: hidden;
    }

    .page-6ff8__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      margin-top: 30px;
    }

    .page-6ff8__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      padding: 20px 15px;
    }

    .page-6ff8__hero-title {
      font-size: 2.8em;
      color: #fff;
      margin-bottom: 20px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-6ff8__hero-title strong {
      color: #e94560;
    }

    .page-6ff8__hero-description {
      font-size: 1.1em;
      color: #ccc;
      margin-bottom: 30px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-6ff8__hero-cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

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

    .page-6ff8__floating-button {
      display: block;
      width: 120px;
      padding: 12px 15px;
      border-radius: 50px;
      text-align: center;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      color: #fff; /* Ensure contrast */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-6ff8__floating-button--register {
      background-color: #e94560;
    }

    .page-6ff8__floating-button--register:hover {
      background-color: #fc7287;
      transform: translateY(-2px);
    }

    .page-6ff8__floating-button--login {
      background-color: #0f3460;
    }

    .page-6ff8__floating-button--login:hover {
      background-color: #1a1a2e;
      transform: translateY(-2px);
    }

    /* Games Section */
    .page-6ff8__games-section,
    .page-6ff8__promotions-section,
    .page-6ff8__news-section,
    .page-6ff8__payment-section,
    .page-6ff8__providers-section,
    .page-6ff8__faq-section,
    .page-6ff8__cta-section {
      padding: 60px 20px;
      background-color: #1a1a2e;
    }

    .page-6ff8__game-grid,
    .page-6ff8__promotion-list,
    .page-6ff8__news-grid,
    .page-6ff8__payment-methods,
    .page-6ff8__provider-logos {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box; /* Required for list containers */
      padding: 0;
      width: 100%;
    }

    .page-6ff8__game-card,
    .page-6ff8__promotion-item,
    .page-6ff8__news-card,
    .page-6ff8__payment-item,
    .page-6ff8__provider-item {
      background-color: #0f3460;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Required for list items */
      width: 100%;
      margin: 0;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-6ff8__game-card:hover,
    .page-6ff8__promotion-item:hover,
    .page-6ff8__news-card:hover {
      transform: translateY(-5px);
    }

    .page-6ff8__game-card-image,
    .page-6ff8__promotion-image,
    .page-6ff8__news-image,
    .page-6ff8__payment-logo,
    .page-6ff8__provider-logo {
      width: 100%;
      max-width: 100%;
      height: 250px; /* Consistent height for game/promo/news images */
      object-fit: cover;
      display: block;
    }

    .page-6ff8__payment-logo,
    .page-6ff8__provider-logo {
      height: 120px; /* Shorter height for logos */
      object-fit: contain;
      padding: 15px;
    }

    .page-6ff8__game-card-title,
    .page-6ff8__promotion-title {
      font-size: 1.5em;
      color: #e94560;
      margin: 20px 15px 10px 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-6ff8__game-card-text,
    .page-6ff8__promotion-text {
      padding: 0 15px 20px 15px;
      color: #ccc;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* News Section */
    .page-6ff8__news-card {
      display: flex;
      flex-direction: column;
      text-align: left;
    }

    .page-6ff8__news-content {
      padding: 20px 15px;
    }

    .page-6ff8__news-title {
      font-size: 1.3em;
      color: #e94560;
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-6ff8__news-date {
      font-size: 0.9em;
      color: #aaa;
      margin-bottom: 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-6ff8__news-excerpt {
      color: #ccc;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* FAQ Section */
    .page-6ff8__faq-container {
      max-width: 900px;
      margin: 0 auto;
      background-color: #0f3460;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }

    .page-6ff8__faq-item {
      border-bottom: 1px solid #4a4e69;
    }

    .page-6ff8__faq-item:last-child {
      border-bottom: none;
    }

    .page-6ff8__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #0f3460;
      transition: background-color 0.3s ease;
    }

    .page-6ff8__faq-question:hover {
      background-color: #1a1a2e;
    }

    .page-6ff8__faq-question-text {
      font-size: 1.1em;
      color: #e0e0e0;
      margin: 0;
      pointer-events: none; /* Prevents text from blocking click event on parent */
      flex-grow: 1;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-6ff8__faq-toggle {
      font-size: 1.5em;
      color: #e94560;
      margin-left: 20px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents icon from blocking click event on parent */
    }

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

    .page-6ff8__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;
      background-color: #2b2d42;
    }

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

    .page-6ff8__faq-answer p {
      margin: 0;
      color: #ccc;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* CTA Section */
    .page-6ff8__cta-section {
      text-align: center;
      padding-bottom: 80px;
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .page-6ff8__hero-title {
        font-size: 2.5em;
      }
      .page-6ff8__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-6ff8__hero-title {
        font-size: 2em;
      }
      .page-6ff8__hero-description {
        font-size: 1em;
      }
      .page-6ff8__section-title {
        font-size: 1.8em;
        padding-top: 30px;
      }
      .page-6ff8__section-description {
        margin-bottom: 30px;
      }
      .page-6ff8__button {
        padding: 12px 24px;
      }
      .page-6ff8__button--large {
        padding: 15px 30px;
        font-size: 1em;
      }

      /* List items responsive */
      .page-6ff8__game-grid,
      .page-6ff8__promotion-list,
      .page-6ff8__news-grid,
      .page-6ff8__payment-methods,
      .page-6ff8__provider-logos {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px !important; /* Adjust padding for mobile container */
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-6ff8__game-card,
      .page-6ff8__promotion-item,
      .page-6ff8__news-card,
      .page-6ff8__payment-item,
      .page-6ff8__provider-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-6ff8__game-card-image,
      .page-6ff8__promotion-image,
      .page-6ff8__news-image {
        height: 200px;
      }

      .page-6ff8__payment-logo,
      .page-6ff8__provider-logo {
        height: 100px;
      }

      .page-6ff8__floating-buttons {
        flex-direction: row;
        justify-content: center;
        bottom: 15px;
        right: 0;
        left: 0;
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
      }

      .page-6ff8__floating-button {
        flex: 1;
        width: auto;
      }

      .page-6ff8__faq-question {
        padding: 15px 20px;
      }

      .page-6ff8__faq-question-text {
        font-size: 1em;
      }

      .page-6ff8__faq-answer {
        padding: 0 20px;
      }

      .page-6ff8__faq-item.active .page-6ff8__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-6ff8__hero-title {
        font-size: 1.8em;
      }
      .page-6ff8__hero-cta-buttons {
        flex-direction: column;
      }
      .page-6ff8__button {
        width: 100%;
      }
      .page-6ff8__section-title {
        font-size: 1.5em;
      }
      .page-6ff8__faq-toggle {
        font-size: 1.2em;
      }
    }
  