
    .page-6ff {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    .page-6ff__hero-section {
      position: relative;
      width: 100%;
      height: 500px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      padding-top: 10px; /* Small decorative top padding */
      box-sizing: border-box;
    }

    .page-6ff__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.6);
    }

    .page-6ff__hero-content {
      z-index: 1;
      max-width: 90%;
    }

    .page-6ff__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      color: #ffd700; /* Gold-like color for emphasis */
      line-height: 1.2;
    }

    .page-6ff__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
      color: #fff;
    }

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

    .page-6ff__floating-button {
      background-color: #ff4500; /* OrangeRed */
      color: #fff;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      white-space: nowrap;
      min-width: 120px;
      box-sizing: border-box;
    }

    .page-6ff__floating-button:hover {
      background-color: #e03e00;
      transform: translateY(-2px);
    }
    
    .page-6ff__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      margin-bottom: 20px;
    }

    .page-6ff__section-title {
      font-size: 2em;
      color: #2c3e50;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-6ff__content-text {
      font-size: 1.1em;
      color: #555;
      margin-bottom: 20px;
      text-align: justify;
    }

    .page-6ff__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-6ff__product-item {
      background-color: #f9f9f9;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-6ff__product-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-6ff__product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid #eee;
    }

    .page-6ff__product-info {
      padding: 20px;
    }

    .page-6ff__product-title {
      font-size: 1.4em;
      color: #ff4500;
      margin-bottom: 10px;
    }

    .page-6ff__product-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
    }

    .page-6ff__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-6ff__promo-item {
      background-color: #fdf3e7;
      border-left: 5px solid #ff4500;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .page-6ff__promo-title {
      font-size: 1.3em;
      color: #ff4500;
      margin-bottom: 10px;
    }

    .page-6ff__promo-description {
      font-size: 1em;
      color: #555;
    }

    .page-6ff__feature-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-6ff__feature-item {
      background-color: #e8f5e9;
      padding: 20px;
      border-radius: 8px;
      display: flex;
      align-items: flex-start;
      gap: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-6ff__feature-icon {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      object-fit: contain;
      margin-top: 5px;
    }

    .page-6ff__feature-text h3 {
      font-size: 1.2em;
      color: #28a745;
      margin-top: 0;
      margin-bottom: 5px;
    }

    .page-6ff__feature-text p {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 0;
    }

    .page-6ff__payment-providers, .page-6ff__game-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-6ff__provider-item {
      width: 120px;
      height: 80px;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #f0f0f0;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

    .page-6ff__provider-logo {
      max-width: 80%;
      max-height: 80%;
      object-fit: contain;
    }

    .page-6ff__faq-container {
      margin-top: 40px;
    }

    .page-6ff__faq-item {
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

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

    .page-6ff__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-6ff__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #333;
      pointer-events: none;
    }

    .page-6ff__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none;
      transition: transform 0.3s ease;
    }

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

    .page-6ff__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: #fff;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #555;
      font-size: 1em;
    }

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

    .page-6ff__footer-note {
      text-align: center;
      padding: 30px 20px;
      font-size: 0.9em;
      color: #777;
      background-color: #f0f0f0;
      border-top: 1px solid #eee;
      margin-top: 20px;
    }

    @media (max-width: 768px) {
      .page-6ff__hero-section {
        height: 400px;
      }

      .page-6ff__hero-title {
        font-size: 2em;
      }

      .page-6ff__hero-subtitle {
        font-size: 1em;
      }

      .page-6ff__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Stack horizontally on mobile */
        width: calc(100% - 30px);
        justify-content: center;
      }

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

      .page-6ff__section {
        padding: 30px 15px;
        margin-bottom: 15px;
      }

      .page-6ff__section-title {
        font-size: 1.6em;
      }

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

      .page-6ff__product-grid, .page-6ff__promo-grid, .page-6ff__feature-list {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .page-6ff__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-6ff__feature-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-6ff__product-image {
        height: 180px;
      }

      .page-6ff__provider-item {
        width: 100px;
        height: 70px;
      }

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

      .page-6ff__faq-question h3 {
        font-size: 1em;
      }

      .page-6ff__faq-answer {
        padding: 0 15px;
      }

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

      /* Image responsive optimization */
      .page-6ff img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-6ff__product-item img, .page-6ff__feature-item img, .page-6ff__provider-item img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-6ff__hero-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
      }
    }

    @media (max-width: 480px) {
      .page-6ff__hero-section {
        height: 350px;
      }

      .page-6ff__hero-title {
        font-size: 1.8em;
      }

      .page-6ff__hero-subtitle {
        font-size: 0.9em;
      }
    }
  