.page-heloo88 {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a0a2e;
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-heloo88__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-heloo88__section-title {
      font-size: 2.5em;
      color: #FFD700;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }

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

    .page-heloo88__text-content {
      text-align: center;
      margin-bottom: 30px;
      font-size: 1.1em;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #cccccc;
    }

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

    .page-heloo88__floating-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 120px;
      height: 50px;
      background: linear-gradient(90deg, #FFD700, #FFA500);
      color: #1a0a2e;
      font-weight: bold;
      text-decoration: none;
      border-radius: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      font-size: 1em;
    }

    .page-heloo88__floating-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    /* HERO Area */
    .page-heloo88__hero-section {
      position: relative;
      width: 100%;
      height: 70vh;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      padding-top: 10px; /* Decorative top margin, body has padding-top from header */
    }

    .page-heloo88__hero-background-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .page-heloo88__hero-image-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 2;
    }

    .page-heloo88__hero-content {
      position: relative;
      z-index: 3;
      max-width: 900px;
      padding: 20px;
    }

    .page-heloo88__hero-title {
      font-size: 4em;
      margin-bottom: 20px;
      line-height: 1.2;
      color: #FFD700;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-heloo88__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 40px;
      color: #e0e0e0;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-heloo88__hero-cta-group {
      display: flex;
      gap: 20px;
      justify-content: center;
    }

    .page-heloo88__hero-btn {
      display: inline-block;
      padding: 15px 35px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-heloo88__hero-btn--primary {
      background: linear-gradient(90deg, #00FF7F, #00C853);
      color: #1a0a2e;
      box-shadow: 0 5px 15px rgba(0, 255, 127, 0.4);
    }

    .page-heloo88__hero-btn--secondary {
      background: linear-gradient(90deg, #FFD700, #FFA500);
      color: #1a0a2e;
      box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    }

    .page-heloo88__hero-btn:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    /* Introduction Section */
    .page-heloo88__intro-section {
      padding: 80px 0;
      background-color: #2a1a3e;
    }

    .page-heloo88__intro-features {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 30px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-heloo88__intro-feature-item {
      background-color: #3b2b4e;
      border-radius: 15px;
      padding: 30px;
      text-align: center;
      max-width: 300px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      width: 100%; /* Default for mobile */
    }

    .page-heloo88__intro-feature-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

    .page-heloo88__feature-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      border-radius: 50%;
      background-color: #1a0a2e;
      padding: 10px;
      object-fit: contain;
    }

    .page-heloo88__feature-title {
      font-size: 1.8em;
      color: #FFD700;
      margin-bottom: 15px;
    }

    .page-heloo88__feature-description {
      font-size: 1em;
      color: #cccccc;
    }

    /* Quick Access Section */
    .page-heloo88__quick-access-section {
      padding: 80px 0;
      background-color: #1a0a2e;
    }

    .page-heloo88__access-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .page-heloo88__access-btn {
      display: inline-block;
      padding: 15px 30px;
      background: linear-gradient(90deg, #FFD700, #FFA500);
      color: #1a0a2e;
      text-decoration: none;
      border-radius: 25px;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
      transition: background 0.3s ease, transform 0.3s ease;
    }

    .page-heloo88__access-btn:hover {
      background: linear-gradient(90deg, #FFA500, #FFD700);
      transform: translateY(-3px);
    }

    /* Core Games Section */
    .page-heloo88__games-section {
      padding: 80px 0;
      background-color: #2a1a3e;
    }

    .page-heloo88__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-bottom: 60px;
    }

    .page-heloo88__game-category-item {
      background-color: #3b2b4e;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      width: 100%; /* Default for mobile */
    }

    .page-heloo88__game-category-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

    .page-heloo88__game-category-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid #4a3a5e;
    }

    .page-heloo88__game-category-title {
      font-size: 1.8em;
      color: #00FF7F;
      margin: 20px 0 10px;
    }

    .page-heloo88__game-category-description {
      font-size: 1em;
      color: #cccccc;
      padding: 0 20px;
      margin-bottom: 20px;
    }

    .page-heloo88__game-category-btn {
      display: inline-block;
      padding: 10px 25px;
      background: linear-gradient(90deg, #FFD700, #FFA500);
      color: #1a0a2e;
      text-decoration: none;
      border-radius: 20px;
      font-weight: bold;
      margin-bottom: 20px;
      transition: background 0.3s ease, transform 0.3s ease;
    }

    .page-heloo88__game-category-btn:hover {
      background: linear-gradient(90deg, #FFA500, #FFD700);
      transform: translateY(-3px);
    }

    .page-heloo88__provider-logos {
      text-align: center;
      margin-top: 60px;
    }

    .page-heloo88__provider-title {
      font-size: 1.5em;
      color: #FFD700;
      margin-bottom: 30px;
    }

    .page-heloo88__logo-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .page-heloo88__provider-logo,
    .page-heloo88__payment-logo {
      max-width: 120px;
      height: auto;
      object-fit: contain;
      filter: grayscale(80%);
      opacity: 0.7;
      transition: filter 0.3s ease, opacity 0.3s ease;
    }

    .page-heloo88__provider-logo:hover,
    .page-heloo88__payment-logo:hover {
      filter: grayscale(0%);
      opacity: 1;
    }

    /* Promotions Section */
    .page-heloo88__promotions-section {
      padding: 80px 0;
      background-color: #1a0a2e;
    }

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

    .page-heloo88__promo-card {
      background-color: #3b2b4e;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      width: 100%; /* Default for mobile */
    }

    .page-heloo88__promo-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

    .page-heloo88__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-bottom: 1px solid #4a3a5e;
    }

    .page-heloo88__promo-title {
      font-size: 1.6em;
      color: #00FF7F;
      margin: 20px 15px 10px;
    }

    .page-heloo88__promo-description {
      font-size: 1em;
      color: #cccccc;
      padding: 0 15px;
      margin-bottom: 20px;
    }

    .page-heloo88__promo-btn {
      display: inline-block;
      padding: 10px 25px;
      background: linear-gradient(90deg, #FFD700, #FFA500);
      color: #1a0a2e;
      text-decoration: none;
      border-radius: 20px;
      font-weight: bold;
      margin-bottom: 20px;
      transition: background 0.3s ease, transform 0.3s ease;
    }

    .page-heloo88__promo-btn:hover {
      background: linear-gradient(90deg, #FFA500, #FFD700);
      transform: translateY(-3px);
    }

    /* Security & Customer Service Section */
    .page-heloo88__security-support-section {
      padding: 80px 0;
      background-color: #2a1a3e;
    }

    .page-heloo88__security-features {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 30px;
      margin-bottom: 60px;
    }

    .page-heloo88__security-item {
      background-color: #3b2b4e;
      border-radius: 15px;
      padding: 30px;
      text-align: center;
      max-width: 300px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      width: 100%; /* Default for mobile */
    }

    .page-heloo88__security-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

    .page-heloo88__security-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      border-radius: 50%;
      background-color: #1a0a2e;
      padding: 10px;
      object-fit: contain;
    }

    .page-heloo88__security-title {
      font-size: 1.8em;
      color: #FFD700;
      margin-bottom: 15px;
    }

    .page-heloo88__security-description {
      font-size: 1em;
      color: #cccccc;
    }

    .page-heloo88__contact-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 60px;
      flex-wrap: wrap;
    }

    .page-heloo88__contact-btn {
      display: inline-block;
      padding: 15px 35px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-heloo88__contact-btn--livechat {
      background: linear-gradient(90deg, #00FF7F, #00C853);
      color: #1a0a2e;
      box-shadow: 0 5px 15px rgba(0, 255, 127, 0.4);
    }

    .page-heloo88__contact-btn--telegram {
      background: linear-gradient(90deg, #1DA1F2, #0077B5);
      color: #fff;
      box-shadow: 0 5px 15px rgba(29, 161, 242, 0.4);
    }

    .page-heloo88__contact-btn:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-heloo88__payment-title {
      font-size: 1.5em;
      color: #FFD700;
      text-align: center;
      margin-bottom: 30px;
    }

    /* FAQ Section */
    .page-heloo88__faq-section {
      padding: 80px 0;
      background-color: #1a0a2e;
    }

    .page-heloo88__faq-list {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-heloo88__faq-item {
      background-color: #2a1a3e;
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-heloo88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      background-color: #3b2b4e;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      color: #FFD700;
      border-bottom: 1px solid #4a3a5e;
      transition: background-color 0.3s ease;
    }

    .page-heloo88__faq-question:hover {
      background-color: #4a3a5e;
    }

    .page-heloo88__faq-question-title {
      margin: 0;
      font-size: 1.2em;
      color: #FFD700;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-heloo88__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

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

    .page-heloo88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: #2a1a3e;
      color: #cccccc;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    .page-heloo88__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
    }

    /* Latest Blog Content Area */
    .page-heloo88__blog-section {
      padding: 80px 0;
      background-color: #2a1a3e;
    }

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

    .page-heloo88__blog-card {
      background-color: #3b2b4e;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      width: 100%; /* Default for mobile */
    }

    .page-heloo88__blog-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

    .page-heloo88__blog-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid #4a3a5e;
    }

    .page-heloo88__blog-content {
      padding: 20px;
    }

    .page-heloo88__blog-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .page-heloo88__blog-title a {
      color: #00FF7F;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-heloo88__blog-title a:hover {
      color: #FFD700;
    }

    .page-heloo88__blog-meta {
      font-size: 0.9em;
      color: #888;
      margin-bottom: 15px;
    }

    .page-heloo88__blog-excerpt {
      font-size: 1em;
      color: #cccccc;
      margin-bottom: 20px;
    }

    .page-heloo88__blog-readmore {
      display: inline-block;
      padding: 8px 20px;
      background: linear-gradient(90deg, #FFD700, #FFA500);
      color: #1a0a2e;
      text-decoration: none;
      border-radius: 15px;
      font-weight: bold;
      font-size: 0.9em;
      transition: background 0.3s ease, transform 0.3s ease;
    }

    .page-heloo88__blog-readmore:hover {
      background: linear-gradient(90deg, #FFA500, #FFD700);
      transform: translateY(-3px);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-heloo88__hero-title {
        font-size: 3.5em;
      }
      .page-heloo88__hero-subtitle {
        font-size: 1.3em;
      }
      .page-heloo88__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-heloo88__floating-buttons {
        flex-direction: row;
        width: 100%;
        bottom: 0;
        right: 0;
        left: 0;
        justify-content: space-around;
        padding: 10px 0;
        background-color: #1a0a2e;
        border-top: 1px solid #3b2b4e;
        border-radius: 0;
      }
      .page-heloo88__floating-btn {
        width: 45%;
        height: 45px;
        font-size: 0.9em;
      }
      .page-heloo88__hero-section {
        height: 60vh;
        min-height: 400px;
      }
      .page-heloo88__hero-title {
        font-size: 2.5em;
      }
      .page-heloo88__hero-subtitle {
        font-size: 1.1em;
      }
      .page-heloo88__hero-cta-group {
        flex-direction: column;
        gap: 15px;
      }
      .page-heloo88__hero-btn {
        width: 80%;
        margin: 0 auto;
        font-size: 1.1em;
      }
      .page-heloo88__container {
        padding: 15px;
      }
      .page-heloo88__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-heloo88__text-content {
        font-size: 0.95em;
      }

      .page-heloo88__intro-features,
      .page-heloo88__game-categories,
      .page-heloo88__promo-grid,
      .page-heloo88__security-features,
      .page-heloo88__blog-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
      }

      .page-heloo88__intro-feature-item,
      .page-heloo88__game-category-item,
      .page-heloo88__promo-card,
      .page-heloo88__security-item,
      .page-heloo88__blog-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important;
      }
      .page-heloo88__intro-feature-item .page-heloo88__feature-description,
      .page-heloo88__game-category-item .page-heloo88__game-category-description,
      .page-heloo88__promo-card .page-heloo88__promo-description,
      .page-heloo88__security-item .page-heloo88__security-description,
      .page-heloo88__blog-card .page-heloo88__blog-excerpt {
          word-wrap: break-word !important;
          overflow-wrap: break-word !important;
          word-break: break-word !important;
      }

      .page-heloo88__provider-logo, .page-heloo88__payment-logo {
        max-width: 80px;
      }

      .page-heloo88__faq-question {
        font-size: 1.1em;
      }
      .page-heloo88__faq-question-title {
        font-size: 1.1em;
      }
      .page-heloo88__faq-answer {
        padding: 0 15px;
      }
      .page-heloo88__faq-item.active .page-heloo88__faq-answer {
        padding: 15px 15px !important;
      }
      .page-heloo88__blog-title {
        font-size: 1.3em;
      }
    }

    @media (max-width: 480px) {
      .page-heloo88__hero-title {
        font-size: 2em;
      }
      .page-heloo88__hero-subtitle {
        font-size: 1em;
      }
      .page-heloo88__section-title {
        font-size: 1.5em;
      }
      .page-heloo88__floating-btn {
        width: 48%;
      }
      .page-heloo88__access-btn {
        width: 100%;
      }
    }