
    :root {
      --page-55chat-primary: #e44d26; /* A vibrant orange-red */
      --page-55chat-secondary: #ffc107; /* A bright yellow */
      --page-55chat-dark: #212529; /* Dark text/background */
      --page-55chat-light: #f8f9fa; /* Light background */
      --page-55chat-accent: #007bff; /* Blue accent */
      --page-55chat-text-light: #ffffff; /* White text on dark */
      --page-55chat-text-dark: #343a40; /* Dark text on light */
    }

    .page-55chat {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-55chat-text-dark);
      background-color: var(--page-55chat-light);
    }

    .page-55chat__section {
      padding: 40px 15px;
      margin-bottom: 20px;
      text-align: center;
      background-color: var(--page-55chat-light);
    }

    .page-55chat__section--dark {
      background-color: var(--page-55chat-dark);
      color: var(--page-55chat-text-light);
    }

    .page-55chat__section-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: var(--page-55chat-dark);
      font-weight: bold;
    }

    .page-55chat__section--dark .page-55chat__section-title {
      color: var(--page-55chat-primary);
    }

    .page-55chat__hero-section {
      position: relative;
      padding-top: 10px; /* Small decorative top padding, assuming body padding-top handles header offset */
      padding-bottom: 80px; /* Space for floating buttons */
      background: linear-gradient(135deg, var(--page-55chat-primary), #ff6f42);
      color: var(--page-55chat-text-light);
      min-height: 450px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      text-align: center;
    }

    .page-55chat__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-55chat__hero-content {
      position: relative;
      z-index: 1;
      max-width: 90%;
      margin: 0 auto;
    }

    .page-55chat__brand-logo {
      font-size: 4em;
      font-weight: 900;
      margin-bottom: 10px;
      text-transform: uppercase;
      color: var(--page-55chat-text-light);
      letter-spacing: 2px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-55chat__hero-slogan {
      font-size: 1.5em;
      margin-bottom: 30px;
      font-weight: 300;
      max-width: 600px;
      line-height: 1.4;
    }

    .page-55chat__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
    }

    .page-55chat__button {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
      border: none;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-55chat__button--primary {
      background-color: var(--page-55chat-secondary);
      color: var(--page-55chat-dark);
    }

    .page-55chat__button--primary:hover {
      background-color: #ffd740;
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }

    .page-55chat__button--secondary {
      background-color: var(--page-55chat-primary);
      color: var(--page-55chat-text-light);
    }

    .page-55chat__button--secondary:hover {
      background-color: #ff6f42;
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }

    .page-55chat__promotion-card {
      background-color: var(--page-55chat-text-light);
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      padding: 25px;
      margin: 20px auto;
      max-width: 600px;
      text-align: left;
      transition: transform 0.3s ease;
      border-left: 5px solid var(--page-55chat-primary);
    }

    .page-55chat__promotion-card:hover {
      transform: translateY(-5px);
    }

    .page-55chat__promotion-card-title {
      font-size: 1.8em;
      color: var(--page-55chat-primary);
      margin-bottom: 15px;
    }

    .page-55chat__promotion-card-description {
      font-size: 1.1em;
      color: var(--page-55chat-text-dark);
      margin-bottom: 20px;
    }

    .page-55chat__promotion-card-link {
      color: var(--page-55chat-accent);
      text-decoration: none;
      font-weight: bold;
      display: inline-block;
      padding: 8px 15px;
      border: 2px solid var(--page-55chat-accent);
      border-radius: 20px;
      transition: background-color 0.3s, color 0.3s;
    }

    .page-55chat__promotion-card-link:hover {
      background-color: var(--page-55chat-accent);
      color: var(--page-55chat-text-light);
    }

    .page-55chat__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-55chat__game-card {
      background-color: var(--page-55chat-text-light);
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-55chat__game-card:hover {
      transform: translateY(-7px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-55chat__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Fixed height for image consistency */
    }

    .page-55chat__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .page-55chat__game-card:hover .page-55chat__game-card-image {
      transform: scale(1.05);
    }

    .page-55chat__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-55chat__game-card-title {
      font-size: 1.5em;
      color: var(--page-55chat-primary);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-55chat__game-card-description {
      font-size: 1em;
      color: var(--page-55chat-text-dark);
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-55chat__game-card-button {
      display: inline-block;
      padding: 10px 20px;
      background-color: var(--page-55chat-accent);
      color: var(--page-55chat-text-light);
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-55chat__game-card-button:hover {
      background-color: #0056b3;
    }

    .page-55chat__info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-55chat__info-card {
      background-color: var(--page-55chat-dark);
      color: var(--page-55chat-text-light);
      border-radius: 15px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

    .page-55chat__info-card:hover {
      transform: translateY(-5px);
    }

    .page-55chat__info-card-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
      filter: brightness(0) invert(1); /* Makes icon white on dark background */
    }

    .page-55chat__info-card-title {
      font-size: 1.5em;
      color: var(--page-55chat-secondary);
      margin-bottom: 10px;
    }

    .page-55chat__info-card-text {
      font-size: 1em;
      line-height: 1.5;
    }

    .page-55chat__payment-grid,
    .page-55chat__provider-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-55chat__payment-item,
    .page-55chat__provider-item {
      background-color: var(--page-55chat-text-light);
      border: 1px solid #e0e0e0;
      border-radius: 10px;
      padding: 15px 25px;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 120px;
      max-width: 180px;
      flex-basis: calc(33.33% - 20px); /* 3 items per row on larger screens */
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      box-sizing: border-box;
      height: 100px; /* Consistent height for logos */
    }

    .page-55chat__payment-item:hover,
    .page-55chat__provider-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .page-55chat__payment-logo,
    .page-55chat__provider-logo {
      max-width: 100%;
      max-height: 70px; /* Max height for logos */
      width: auto;
      height: auto;
      object-fit: contain;
      display: block;
    }
    
    .page-55chat__payment-item a,
    .page-55chat__provider-item a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        text-decoration: none;
    }

    .page-55chat__faq-section {
      background-color: var(--page-55chat-light);
      padding: 40px 15px;
      margin-bottom: 20px;
      text-align: center;
    }

    .page-55chat__faq-container {
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
    }

    .page-55chat__faq-item {
      background-color: var(--page-55chat-text-light);
      border: 1px solid #e0e0e0;
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-55chat__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #f0f0f0;
      font-weight: bold;
      color: var(--page-55chat-dark);
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-55chat__faq-question:hover {
      background-color: #e9e9e9;
    }

    .page-55chat__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-55chat-primary);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-55chat__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      color: var(--page-55chat-primary);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-55chat__faq-item.active .page-55chat__faq-toggle {
      transform: rotate(45deg); /* Visually change + to X or - */
    }

    .page-55chat__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: var(--page-55chat-text-dark);
      background-color: var(--page-55chat-text-light);
    }

    .page-55chat__faq-item.active .page-55chat__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain any content */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-55chat__cta-section {
      background: linear-gradient(90deg, var(--page-55chat-accent), #00aaff);
      color: var(--page-55chat-text-light);
      padding: 60px 15px;
      text-align: center;
    }

    .page-55chat__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-55chat__cta-description {
      font-size: 1.2em;
      max-width: 700px;
      margin: 0 auto 30px auto;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-55chat__section-title {
        font-size: 2em;
      }
      .page-55chat__hero-slogan {
        font-size: 1.3em;
      }
      .page-55chat__brand-logo {
        font-size: 3.5em;
      }
      .page-55chat__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-55chat__section {
        padding: 30px 10px;
      }
      .page-55chat__section-title {
        font-size: 1.8em;
      }
      .page-55chat__brand-logo {
        font-size: 3em;
      }
      .page-55chat__hero-slogan {
        font-size: 1.1em;
      }
      .page-55chat__floating-buttons {
        gap: 10px;
        bottom: 15px;
      }
      .page-55chat__button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-55chat__promotion-card {
        padding: 20px;
        margin: 15px auto;
      }
      .page-55chat__promotion-card-title {
        font-size: 1.5em;
      }
      .page-55chat__game-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        padding: 0 10px;
      }
      .page-55chat__game-card-image-wrapper {
        height: 180px;
      }
      .page-55chat__game-card-title {
        font-size: 1.3em;
      }
      .page-55chat__info-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        padding: 0 10px;
      }
      .page-55chat__payment-item,
      .page-55chat__provider-item {
        flex-basis: calc(50% - 15px); /* Two items per row on mobile */
        padding: 10px 15px;
        min-width: unset;
        max-width: unset;
        height: 80px;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-55chat__payment-grid,
      .page-55chat__provider-grid {
        padding: 0 10px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      /* Image responsive */
      .page-55chat img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-55chat__game-card-image-wrapper,
      .page-55chat__payment-logo,
      .page-55chat__provider-logo {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      /* FAQ adjustments for mobile */
      .page-55chat__faq-question {
        padding: 15px 20px;
      }
      .page-55chat__faq-question h3 {
        font-size: 1.1em;
      }
      .page-55chat__faq-answer {
        padding: 0 20px;
      }
      .page-55chat__faq-item.active .page-55chat__faq-answer {
        padding: 15px 20px !important;
      }
      .page-55chat__cta-title {
        font-size: 2em;
      }
      .page-55chat__cta-description {
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-55chat__floating-buttons {
        flex-direction: column;
        width: 90%;
        left: 5%;
        transform: translateX(0);
      }
      .page-55chat__button {
        width: 100%;
        box-sizing: border-box;
      }
      .page-55chat__payment-item,
      .page-55chat__provider-item {
        flex-basis: 100%; /* Single item per row on very small screens */
      }
    }
  