
    .page-55chat-com {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0; /* Light text for dark background */
      background-color: #1a1a2e; /* Dark background */
      line-height: 1.6;
      padding-top: 10px; /* Small decorative padding, relying on body padding for header offset */
    }

    .page-55chat-com__brand-highlight {
      color: #e0b400; /* Gold/yellow for brand emphasis */
      font-weight: bold;
    }

    /* Floating Buttons */
    .page-55chat-com__floating-buttons {
      position: fixed;
      top: 10px;
      right: 10px;
      display: flex;
      gap: 10px;
      z-index: 1000;
    }
    @media (max-width: 768px) {
      .page-55chat-com__floating-buttons {
        top: 5px;
        right: 5px;
      }
    }

    /* Buttons */
    .page-55chat-com__button {
      background-color: #e0b400;
      color: #1a1a2e;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1rem;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      white-space: nowrap; /* Prevent text wrapping */
      box-sizing: border-box;
    }

    .page-55chat-com__button:hover {
      background-color: #ffc800;
      transform: translateY(-2px);
    }

    .page-55chat-com__button--primary {
      background-color: #e0b400;
      color: #1a1a2e;
    }

    .page-55chat-com__button--secondary {
      background-color: #3e2f5b;
      color: #f0f0f0;
      border: 1px solid #e0b400;
    }

    .page-55chat-com__button--secondary:hover {
      background-color: #5a4b70;
    }

    .page-55chat-com__button--large-primary {
      padding: 15px 30px;
      font-size: 1.2rem;
      width: auto;
      margin-top: 20px;
    }

    .page-55chat-com__button--small {
      padding: 8px 15px;
      font-size: 0.9rem;
    }

    /* Sections */
    .page-55chat-com__hero-section,
    .page-55chat-com__about-section,
    .page-55chat-com__games-section,
    .page-55chat-com__promo-section,
    .page-55chat-com__features-section,
    .page-55chat-com__faq-section,
    .page-55chat-com__cta-bottom-section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    @media (max-width: 768px) {
      .page-55chat-com__hero-section,
      .page-55chat-com__about-section,
      .page-55chat-com__games-section,
      .page-55chat-com__promo-section,
      .page-55chat-com__features-section,
      .page-55chat-com__faq-section,
      .page-55chat-com__cta-bottom-section {
        padding: 30px 15px;
      }
    }

    .page-55chat-com__section-title {
      font-size: 2.2rem;
      margin-bottom: 20px;
      color: #f0f0f0;
    }
    @media (max-width: 768px) {
      .page-55chat-com__section-title {
        font-size: 1.8rem;
      }
    }

    .page-55chat-com__section-description {
      font-size: 1.1rem;
      margin-bottom: 30px;
      color: #ccc;
    }
    @media (max-width: 768px) {
      .page-55chat-com__section-description {
        font-size: 1rem;
      }
    }

    /* Hero Section */
    .page-55chat-com__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 70vh;
      padding-top: 60px; /* Adjust to ensure content is below fixed floating buttons */
      position: relative;
      overflow: hidden;
    }

    .page-55chat-com__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.3; /* Subtle background image */
      max-width: 100%; /* Important for image responsiveness */
      box-sizing: border-box; /* Important for image responsiveness */
    }
    @media (max-width: 768px) {
      .page-55chat-com__hero-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    .page-55chat-com__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      text-align: center;
      background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text */
      padding: 30px;
      border-radius: 10px;
    }

    .page-55chat-com__hero-title {
      font-size: 3rem;
      margin-bottom: 15px;
      color: #f0f0f0;
    }
    @media (max-width: 768px) {
      .page-55chat-com__hero-title {
        font-size: 2rem;
      }
    }

    .page-55chat-com__hero-description {
      font-size: 1.2rem;
      margin-bottom: 30px;
      color: #ccc;
    }
    @media (max-width: 768px) {
      .page-55chat-com__hero-description {
        font-size: 1.1rem;
      }
    }

    .page-55chat-com__cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
    }
    @media (max-width: 768px) {
      .page-55chat-com__cta-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-55chat-com__cta-buttons .page-55chat-com__button {
        width: 100%;
      }
    }

    /* Game Categories */
    .page-55chat-com__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }
    @media (max-width: 768px) {
      .page-55chat-com__game-categories {
        grid-template-columns: 1fr;
        gap: 20px;
      }
    }

    .page-55chat-com__game-card {
      background-color: #2a2a4a;
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-55chat-com__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

    .page-55chat-com__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 15px;
      max-width: 100%; /* Important for image responsiveness */
      box-sizing: border-box; /* Important for image responsiveness */
    }
    @media (max-width: 768px) {
      .page-55chat-com__game-card-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    .page-55chat-com__game-card-title {
      font-size: 1.5rem;
      color: #e0b400;
      margin-bottom: 10px;
    }

    .page-55chat-com__game-card-description {
      font-size: 0.95rem;
      color: #ccc;
      margin-bottom: 15px;
    }

    /* Promotions Section */
    .page-55chat-com__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
    @media (max-width: 768px) {
      .page-55chat-com__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
    }

    .page-55chat-com__promo-item {
      background-color: #2a2a4a;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-55chat-com__promo-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

    .page-55chat-com__promo-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 15px;
      max-width: 100%; /* Important for image responsiveness */
      box-sizing: border-box; /* Important for image responsiveness */
    }
    @media (max-width: 768px) {
      .page-55chat-com__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    .page-55chat-com__promo-title {
      font-size: 1.4rem;
      color: #e0b400;
      margin-bottom: 10px;
    }

    .page-55chat-com__promo-text {
      font-size: 0.95rem;
      color: #ccc;
      margin-bottom: 15px;
    }

    /* Features Section */
    .page-55chat-com__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }
    @media (max-width: 768px) {
      .page-55chat-com__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
    }

    .page-55chat-com__feature-item {
      background-color: #2a2a4a;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-55chat-com__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

    .page-55chat-com__feature-image {
      width: 200px; /* Adjusted to be larger than 200px requirement */
      height: 150px;
      object-fit: contain;
      margin-bottom: 15px;
      max-width: 100%; /* Important for image responsiveness */
      box-sizing: border-box; /* Important for image responsiveness */
    }
    @media (max-width: 768px) {
      .page-55chat-com__feature-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    .page-55chat-com__feature-title {
      font-size: 1.3rem;
      color: #e0b400;
      margin-bottom: 10px;
    }

    .page-55chat-com__feature-description {
      font-size: 0.9rem;
      color: #ccc;
    }

    /* FAQ Section */
    .page-55chat-com__faq-list {
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
    }

    .page-55chat-com__faq-item {
      background-color: #2a2a4a;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      overflow: hidden; /* Important for max-height transition */
      box-sizing: border-box;
    }

    .page-55chat-com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #3e2f5b;
      color: #f0f0f0;
      font-weight: bold;
      font-size: 1.1rem;
      user-select: none;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-55chat-com__faq-question:hover {
      background-color: #5a4b70;
    }

    .page-55chat-com__faq-question-title {
      margin: 0;
      font-size: 1.1rem;
      color: #f0f0f0;
      pointer-events: none; /* Crucial for click event on parent div */
    }
    @media (max-width: 768px) {
      .page-55chat-com__faq-question-title {
        font-size: 1rem;
      }
    }

    .page-55chat-com__faq-toggle {
      font-size: 1.5rem;
      font-weight: bold;
      line-height: 1;
      pointer-events: none; /* Crucial for click event on parent div */
      transition: transform 0.3s ease;
      color: #e0b400;
    }

    .page-55chat-com__faq-item.active .page-55chat-com__faq-toggle {
      transform: rotate(45deg); /* Change + to X-like or - */
    }

    .page-55chat-com__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #ccc;
      box-sizing: border-box;
    }

    .page-55chat-com__faq-item.active .page-55chat-com__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 20px !important; /* Final padding */
      opacity: 1;
    }

    .page-55chat-com__faq-answer p {
      margin: 0;
      word-wrap: break-word !important; /* Ensure text wraps */
      overflow-wrap: break-word !important; /* Ensure text wraps */
    }

    @media (max-width: 768px) {
      .page-55chat-com__faq-item {
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-55chat-com__faq-answer {
        padding: 0 15px !important; /* Adjust padding for smaller screens */
      }
      .page-55chat-com__faq-item.active .page-55chat-com__faq-answer {
        padding: 15px 15px !important;
      }
      .page-55chat-com__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
    }

    /* CTA Bottom Section */
    .page-55chat-com__cta-bottom-section {
      background-color: #3e2f5b;
      padding: 50px 20px;
      margin-top: 40px;
    }
    .page-55chat-com__cta-bottom-section .page-55chat-com__section-title {
      color: #e0b400;
    }
    .page-55chat-com__cta-bottom-section .page-55chat-com__section-description {
      color: #f0f0f0;
    }

    /* General image responsiveness */
    .page-55chat-com img {
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }

    @media (max-width: 768px) {
      .page-55chat-com img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }
  