
    /* CSS styles for the 5-com page */
    :root {
      --primary-color: #ffcc00; /* Gold/Yellow */
      --secondary-color: #333333; /* Dark Grey */
      --text-color: #ffffff; /* White */
      --background-dark: #1a1a1a; /* Very Dark Grey */
      --button-hover: #e6b800;
      --border-color: #555555;
      --faq-bg: #2a2a2a;
      --faq-text: #ffffff;
      --faq-toggle-bg: #ffcc00;
      --faq-toggle-text: #1a1a1a;
    }

    .page-5-com {
      font-family: 'Arial', sans-serif;
      background-color: var(--background-dark);
      color: var(--text-color);
      line-height: 1.6;
      overflow-x: hidden; /* Prevent horizontal scroll from fixed buttons */
      padding-bottom: 80px; /* Space for fixed buttons */
    }

    .page-5-com__section {
      padding: 40px 15px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    /* Fixed header offset handling */
    .page-5-com__hero-section {
      padding-top: 10px; /* Small decorative padding, assuming body handles main offset */
      position: relative;
      overflow: hidden;
      background-color: var(--secondary-color);
    }

    .page-5-com__hero-content {
      position: relative;
      z-index: 1;
      padding: 40px 15px;
      color: var(--text-color);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 300px; /* Ensure hero section has some height */
    }

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

    .page-5-com__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
    }

    .page-5-com__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 20px auto 0;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    .page-5-com__cta-buttons {
      display: flex;
      gap: 15px;
      justify-content: center;
      margin-top: 30px;
    }

    .page-5-com__button {
      background-color: var(--primary-color);
      color: var(--secondary-color);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-5-com__button:hover {
      background-color: var(--button-hover);
      transform: translateY(-2px);
    }

    .page-5-com__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: rgba(0, 0, 0, 0.85);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      gap: 10px;
      box-sizing: border-box;
    }

    .page-5-com__floating-button {
      flex: 1;
      margin: 0 10px;
      background-color: var(--primary-color);
      color: var(--secondary-color);
      padding: 12px 0;
      border-radius: 5px;
      font-weight: bold;
      text-align: center;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
      max-width: 150px; /* Limit width on larger screens */
    }

    .page-5-com__floating-button:hover {
      background-color: var(--button-hover);
      transform: translateY(-2px);
    }

    .page-5-com__section-title {
      font-size: 2em;
      color: var(--primary-color);
      margin-bottom: 30px;
      position: relative;
      display: inline-block;
    }

    .page-5-com__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -10px;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: var(--primary-color);
      border-radius: 2px;
    }

    .page-5-com__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: left;
    }

    .page-5-com__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-5-com__feature-item {
      background-color: var(--secondary-color);
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-5-com__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-5-com__feature-image { /* Renamed from _icon to _image */
      width: 100%;
      max-width: 250px; /* Example size for a feature image, min 200px */
      height: auto;
      margin-bottom: 15px;
      border-radius: 8px;
    }

    .page-5-com__feature-title {
      font-size: 1.4em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-5-com__feature-description {
      font-size: 0.95em;
      color: #cccccc;
    }

    .page-5-com__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-5-com__game-card {
      background-color: var(--secondary-color);
      border-radius: 8后;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-5-com__game-image {
      width: 100%;
      height: 180px; /* Fixed height for consistency, will be overridden by height: auto for responsiveness */
      object-fit: cover;
      display: block;
      min-height: 200px; /* Ensure min height for image */
      min-width: 200px; /* Ensure min width for image */
    }

    .page-5-com__game-content {
      padding: 20px;
    }

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

    .page-5-com__game-description {
      font-size: 0.9em;
      color: #cccccc;
    }

    .page-5-com__promotions-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      margin-top: 30px;
      list-style: none; /* Remove default list style */
      padding: 0;
    }

    .page-5-com__promotion-item {
      background-color: var(--secondary-color);
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: left;
      display: flex;
      align-items: center;
      gap: 20px;
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-5-com__promotion-image {
      min-width: 200px; /* Adhering to min size */
      width: 200px; /* Specific width */
      height: auto;
      border-radius: 5px;
      object-fit: cover;
    }

    .page-5-com__promotion-details {
      flex: 1;
    }

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

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

    .page-5-com__faq-section {
      background-color: var(--background-dark);
      padding: 40px 15px;
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

    .page-5-com__faq-item {
      background-color: var(--faq-bg);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-5-com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: var(--secondary-color);
      color: var(--faq-text);
      cursor: pointer;
      user-select: none;
      border-bottom: 1px solid var(--border-color);
    }

    .page-5-com__faq-question:hover {
      background-color: #444444;
    }

    .page-5-com__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      flex-grow: 1;
      text-align: left;
      color: var(--primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-5-com__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--faq-toggle-text);
      background-color: var(--faq-toggle-bg);
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-5-com__faq-item.active .page-5-com__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or use '-' */
    }

    .page-5-com__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #cccccc;
      text-align: left;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    .page-5-com__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
    }
    .page-5-com__faq-answer p:last-child {
      padding-bottom: 0;
    }


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

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

      .page-5-com__section {
        padding: 30px 10px;
      }

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

      .page-5-com__features-grid,
      .page-5-com__games-grid {
        grid-template-columns: 1fr;
      }

      .page-5-com__feature-item,
      .page-5-com__game-card,
      .page-5-com__promotion-item,
      .page-5-com__faq-item {
        width: 100% !important; /* For list items */
        max-width: 100% !important; /* For list items */
        box-sizing: border-box !important; /* For list items */
        margin-left: 0 !important; /* For list items */
        margin-right: 0 !important; /* For list items */
        word-wrap: break-word !important; /* For text wrapping */
        overflow-wrap: break-word !important; /* For text wrapping */
        word-break: break-word !important; /* For long keywords */
      }

      .page-5-com__promotions-list {
        width: 100% !important; /* For list container */
        max-width: 100% !important; /* For list container */
        box-sizing: border-box !important; /* For list container */
        padding: 0 !important; /* For list container */
        margin-left: 0 !important; /* For list container */
        margin-right: 0 !important; /* For list container */
      }

      .page-5-com__promotion-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
      }

      .page-5-com__promotion-image {
        width: 100% !important; /* Images in list items */
        max-width: 300px !important; /* Ensure it doesn't get too big if original is huge */
        height: auto !important; /* Images in list items */
        margin-bottom: 15px;
      }

      .page-5-com__game-image {
        width: 100% !important; /* All images */
        max-width: 100% !important; /* All images */
        height: auto !important; /* All images */
      }

      .page-5-com__hero-image {
        width: 100% !important; /* All images */
        max-width: 100% !important; /* All images */
        height: auto !important; /* All images */
      }

      .page-5-com__feature-image { /* Renamed to feature-image in HTML */
        width: 100% !important; /* All images */
        max-width: 250px !important; /* All images */
        height: auto !important; /* All images */
      }

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

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

      .page-5-com__faq-toggle {
        width: 25px;
        height: 25px;
        font-size: 1.5em;
      }

      .page-5-com__faq-answer {
        padding: 15px 20px;
      }

      .page-5-com__floating-button {
        padding: 10px 0;
        font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
        .page-5-com__floating-buttons {
            padding: 8px 0;
            gap: 5px;
        }
        .page-5-com__floating-button {
            margin: 0 5px;
            padding: 10px 0;
            font-size: 0.85em;
        }
    }
  