
    :root {
      --page-6623com-primary-color: #e0b300; /* Vàng hổ phách */
      --page-6623com-secondary-color: #333; /* Xám đậm */
      --page-6623com-text-color: #ffffff; /* Trắng */
      --page-6623com-background-dark: #1a1a1a; /* Nền rất tối */
      --page-6623com-background-light: #2c2c2c; /* Nền tối vừa */
      --page-6623com-accent-color: #007bff; /* Xanh dương */
      --page-6623com-border-color: #444;
      --page-6623com-header-offset: 122px; /* Fallback if shared.css doesn't define */
    }

    .page-6623com {
      font-family: 'Arial', sans-serif;
      color: var(--page-6623com-text-color);
      background-color: var(--page-6623com-background-dark);
      line-height: 1.6;
      padding-top: 10px; /* Small decorative top padding below header */
      box-sizing: border-box;
    }

    /* Hero Section */
    .page-6623com__hero-section {
      position: relative;
      width: 100%;
      height: 60vh; /* Responsive height */
      min-height: 300px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      overflow: hidden;
      background-color: var(--page-6623com-background-dark);
      padding: 20px;
      box-sizing: border-box;
    }

    .page-6623com__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0.4;
    }

    .page-6623com__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      padding: 20px;
    }

    .page-6623com__hero-title {
      font-size: 2.5em;
      color: var(--page-6623com-primary-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-6623com__hero-description {
      font-size: 1.1em;
      color: var(--page-6623com-text-color);
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

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

    .page-6623com__floating-button {
      background-color: var(--page-6623com-primary-color);
      color: var(--page-6623com-background-dark);
      border: none;
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none; /* Ensure it looks like a button */
      display: inline-block;
      text-align: center;
    }

    .page-6623com__floating-button:hover {
      background-color: #ffcc00;
      transform: translateY(-2px);
    }

    /* Section Styles */
    .page-6623com__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: var(--page-6623com-background-light);
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-6623com__section-title {
      font-size: 2em;
      color: var(--page-6623com-primary-color);
      text-align: center;
      margin-bottom: 30px;
      border-bottom: 2px solid var(--page-6623com-border-color);
      padding-bottom: 10px;
    }

    .page-6623com__section-text {
      font-size: 1em;
      color: var(--page-6623com-text-color);
      margin-bottom: 20px;
      text-align: justify;
    }

    /* Game Categories / Product Display */
    .page-6623com__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
      justify-items: center; /* Center items in the grid */
    }

    .page-6623com__game-card {
      background-color: var(--page-6623com-background-dark);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 100%;
      max-width: 350px; /* Limit card width for larger screens */
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
    }

    .page-6623com__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

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

    .page-6623com__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .page-6623com__game-card:hover .page-6623com__game-image {
      transform: scale(1.05);
    }

    .page-6623com__game-info {
      padding: 20px;
      text-align: center;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-6623com__game-title {
      font-size: 1.4em;
      color: var(--page-6623com-primary-color);
      margin-bottom: 10px;
      min-height: 2em; /* Ensure consistent title height */
    }

    .page-6623com__game-description {
      font-size: 0.95em;
      color: var(--page-6623com-text-color);
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-6623com__game-button {
      background-color: var(--page-6623com-accent-color);
      color: var(--page-6623com-text-color);
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1em;
      transition: background-color 0.3s ease;
      text-decoration: none;
      display: inline-block;
      text-align: center;
      width: fit-content;
      margin: 0 auto;
    }

    .page-6623com__game-button:hover {
      background-color: #0056b3;
    }

    /* Promotions */
    .page-6623com__promotion-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .page-6623com__promotion-item {
      background-color: var(--page-6623com-background-dark);
      border-left: 5px solid var(--page-6623com-primary-color);
      padding: 20px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 20px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-6623com__promotion-image-wrapper {
      flex-shrink: 0;
      width: 150px;
      height: 100px;
      overflow: hidden;
      border-radius: 5px;
      box-sizing: border-box;
    }

    .page-6623com__promotion-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .page-6623com__promotion-content {
      flex-grow: 1;
    }

    .page-6623com__promotion-title {
      font-size: 1.3em;
      color: var(--page-6623com-primary-color);
      margin-bottom: 5px;
    }

    .page-6623com__promotion-description {
      font-size: 0.95em;
      color: var(--page-6623com-text-color);
    }

    /* Payment and Providers */
    .page-6623com__logos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 20px;
      justify-items: center;
      align-items: center;
      margin-top: 20px;
    }

    .page-6623com__logo-item {
      background-color: var(--page-6623com-background-dark);
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      width: 100%;
      max-width: 150px;
      height: 80px; /* Fixed height for logos */
      display: flex;
      justify-content: center;
      align-items: center;
      box-sizing: border-box;
      overflow: hidden;
    }

    .page-6623com__logo-image {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

    /* FAQ Section */
    .page-6623com__faq-section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: var(--page-6623com-background-light);
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-6623com__faq-title {
      font-size: 2em;
      color: var(--page-6623com-primary-color);
      text-align: center;
      margin-bottom: 30px;
      border-bottom: 2px solid var(--page-6623com-border-color);
      padding-bottom: 10px;
    }

    .page-6623com__faq-item {
      background-color: var(--page-6623com-background-dark);
      margin-bottom: 10px;
      border-radius: 5px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-6623com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--page-6623com-secondary-color);
      color: var(--page-6623com-text-color);
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-6623com__faq-question:hover {
      background-color: #444;
    }

    .page-6623com__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none; /* Prevents text selection from interfering with click */
      color: var(--page-6623com-text-color);
    }

    .page-6623com__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      pointer-events: none; /* Prevents icon from interfering with click */
      transition: transform 0.3s ease;
      color: var(--page-6623com-primary-color);
    }

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

    .page-6623com__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      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: var(--page-6623com-background-dark);
      color: var(--page-6623com-text-color);
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-6623com__hero-title {
        font-size: 2em;
      }

      .page-6623com__hero-description {
        font-size: 1em;
      }

      .page-6623com__section {
        padding: 20px 15px;
      }

      .page-6623com__section-title {
        font-size: 1.8em;
      }

      .page-6623com__game-grid {
        grid-template-columns: 1fr;
      }

      .page-6623com__game-card {
        max-width: 100%;
      }

      .page-6623com__promotion-item {
        flex-direction: column;
        text-align: center;
      }

      .page-6623com__promotion-image-wrapper {
        width: 100%;
        height: 150px;
      }

      .page-6623com__logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      }

      .page-6623com__logo-item {
        max-width: 120px;
        height: 60px;
      }

      .page-6623com__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px);
        bottom: 10px;
        left: 20px;
        right: 20px;
        justify-content: space-around;
      }

      .page-6623com__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 1em;
      }
      
      /* List items responsive styles */
      .page-6623com__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-6623com__faq-question {
        padding: 15px !important;
      }

      .page-6623com__faq-answer {
        padding: 0 15px !important;
      }

      .page-6623com__faq-item.active .page-6623com__faq-answer {
        padding: 15px !important;
      }

      .page-6623com__faq-question h3 {
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-6623com__hero-title {
        font-size: 1.8em;
      }
      .page-6623com__hero-description {
        font-size: 0.9em;
      }
      .page-6623com__section-title {
        font-size: 1.5em;
      }
      .page-6623com__floating-buttons {
        flex-direction: column; /* Stack buttons on very small screens */
        align-items: center;
      }
      .page-6623com__floating-button {
        width: 90%;
      }
    }
  