
    :root {
      --page-sh-com-primary-color: #e44d26; /* Cam đất */
      --page-sh-com-secondary-color: #ffb703; /* Vàng sáng */
      --page-sh-com-accent-color: #023047; /* Xanh đậm */
      --page-sh-com-text-light: #ffffff;
      --page-sh-com-text-dark: #333333;
      --page-sh-com-bg-light: #f8f9fa;
      --page-sh-com-bg-dark: #1a1a1a;
      --page-sh-com-border-color: #dddddd;
    }

    .page-sh-com {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-sh-com-text-dark);
      background-color: var(--page-sh-com-bg-light);
      padding-top: 10px; /* Small offset for fixed header */
    }

    .page-sh-com__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-sh-com__hero-section {
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(135deg, var(--page-sh-com-primary-color), var(--page-sh-com-secondary-color));
      color: var(--page-sh-com-text-light);
      position: relative;
      overflow: hidden;
      border-radius: 15px;
      margin-bottom: 40px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

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

    .page-sh-com__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-sh-com__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--page-sh-com-text-light);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-sh-com__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      font-weight: 300;
    }

    .page-sh-com__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      width: 100%;
      justify-content: center;
      padding: 0 20px;
      box-sizing: border-box;
    }

    .page-sh-com__button {
      background-color: var(--page-sh-com-accent-color);
      color: var(--page-sh-com-text-light);
      padding: 12px 25px;
      border: none;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      white-space: nowrap; /* Prevent text wrapping */
      flex-shrink: 0; /* Prevent shrinking */
    }

    .page-sh-com__button:hover {
      background-color: #03486b;
      transform: translateY(-2px);
    }

    .page-sh-com__section-title {
      font-size: 2.2em;
      color: var(--page-sh-com-accent-color);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }

    .page-sh-com__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-sh-com-primary-color);
      border-radius: 2px;
    }

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

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

    .page-sh-com__category-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .page-sh-com__category-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-sh-com__category-content {
      padding: 25px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-sh-com__category-title {
      font-size: 1.5em;
      color: var(--page-sh-com-accent-color);
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-sh-com__category-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 20px;
      flex-grow: 1;
    }

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

    .page-sh-com__promotion-card {
      background-color: var(--page-sh-com-text-light);
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-sh-com__promotion-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .page-sh-com__promotion-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .page-sh-com__promotion-content {
      padding: 25px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .page-sh-com__promotion-title {
      font-size: 1.4em;
      color: var(--page-sh-com-primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-sh-com__promotion-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-sh-com__promotion-date {
      font-size: 0.85em;
      color: #888;
      text-align: right;
    }

    .page-sh-com__about-section {
      background-color: var(--page-sh-com-bg-dark);
      color: var(--page-sh-com-text-light);
      padding: 60px 20px;
      border-radius: 15px;
      margin-bottom: 60px;
      text-align: center;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .page-sh-com__about-title {
      color: var(--page-sh-com-secondary-color);
      margin-bottom: 25px;
    }

    .page-sh-com__about-content {
      max-width: 800px;
      margin: 0 auto;
      font-size: 1.1em;
      line-height: 1.8;
    }

    .page-sh-com__about-content p {
      margin-bottom: 1em;
    }

    .page-sh-com__payment-providers,
    .page-sh-com__game-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-bottom: 60px;
    }

    .page-sh-com__provider-logo {
      width: 120px;
      height: 60px;
      object-fit: contain;
      filter: grayscale(80%);
      transition: filter 0.3s ease;
    }

    .page-sh-com__provider-logo:hover {
      filter: grayscale(0%);
    }

    .page-sh-com__faq-section {
      margin-bottom: 60px;
    }

    .page-sh-com__faq-item {
      background-color: var(--page-sh-com-text-light);
      border: 1px solid var(--page-sh-com-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-sh-com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #f0f0f0;
      border-bottom: 1px solid var(--page-sh-com-border-color);
      transition: background-color 0.3s ease;
      color: var(--page-sh-com-accent-color);
      font-weight: bold;
    }

    .page-sh-com__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-sh-com__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
    }

    .page-sh-com__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

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

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

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

    .page-sh-com__faq-answer p {
      margin: 0;
      padding-bottom: 1em;
    }

    .page-sh-com__faq-answer p:last-child {
      padding-bottom: 0;
    }

    .page-sh-com__contact-info {
      text-align: center;
      margin-top: 40px;
      padding: 30px;
      background-color: var(--page-sh-com-accent-color);
      color: var(--page-sh-com-text-light);
      border-radius: 15px;
    }

    .page-sh-com__contact-info h2 {
      color: var(--page-sh-com-secondary-color);
      margin-bottom: 20px;
    }

    .page-sh-com__contact-info p {
      font-size: 1.1em;
      margin-bottom: 10px;
    }

    .page-sh-com__social-links {
      margin-top: 20px;
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    .page-sh-com__social-link {
      color: var(--page-sh-com-text-light);
      font-size: 2em;
      transition: color 0.3s ease;
    }

    .page-sh-com__social-link:hover {
      color: var(--page-sh-com-secondary-color);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-sh-com__hero-section {
        padding: 40px 15px;
      }

      .page-sh-com__hero-title {
        font-size: 2em;
      }

      .page-sh-com__hero-subtitle {
        font-size: 1em;
      }

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

      .page-sh-com__game-categories,
      .page-sh-com__promotions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-sh-com__category-card,
      .page-sh-com__promotion-card {
        margin: 0 auto;
        max-width: 400px;
      }

      .page-sh-com__about-section {
        padding: 40px 15px;
      }

      .page-sh-com__about-content {
        font-size: 1em;
      }

      .page-sh-com__floating-buttons {
        flex-direction: row; /* Keep horizontal for mobile */
        bottom: 15px;
        gap: 10px;
        padding: 0 10px;
      }

      .page-sh-com__button {
        padding: 10px 15px;
        font-size: 1em;
      }

      .page-sh-com__provider-logo {
        width: 100px;
        height: 50px;
      }

      .page-sh-com__faq-question {
        padding: 15px 20px;
      }

      .page-sh-com__faq-question h3 {
        font-size: 1.1em;
      }

      .page-sh-com__faq-answer {
        padding: 0 20px;
      }

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

    /* Ensure all list items and containers are responsive */
    .page-sh-com ul,
    .page-sh-com ol {
      width: 100% !important;
      max-width: 100% !important;
      box-sizing: border-box !important;
      padding: 0 !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
    }

    .page-sh-com li {
      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;
    }

    /* Image responsive optimization */
    .page-sh-com img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
    }

    .page-sh-com__image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

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