
    .page-8-live {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f8f8f8;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-8-live__header-brand {
      text-align: center;
      padding: 15px 0;
      background-color: #0d47a1; /* Dark blue */
      color: #fff;
      font-size: 1.8em;
      font-weight: bold;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      width: 100%;
      box-sizing: border-box;
    }

    .page-8-live__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: #0d47a1; /* Dark blue */
      box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      box-sizing: border-box;
    }

    .page-8-live__button {
      background-color: #ffc107; /* Amber */
      color: #0d47a1; /* Dark blue */
      border: none;
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      text-decoration: none;
      text-align: center;
      transition: background-color 0.3s ease, transform 0.2s ease;
      width: 45%;
      max-width: 180px;
      box-sizing: border-box;
      display: inline-block;
    }

    .page-8-live__button:hover {
      background-color: #ffca28; /* Lighter amber */
      transform: translateY(-2px);
    }

    .page-8-live__hero-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding-top: 10px; /* Small decorative padding, relying on body for header offset */
      box-sizing: border-box;
    }

    .page-8-live__hero-image {
      width: 100%;
      height: auto;
      display: block;
      max-width: 100%;
      object-fit: cover;
    }

    .page-8-live__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: #fff;
      text-align: center;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-8-live__hero-title {
      font-size: 2.5em;
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      color: #ffc107; /* Amber for contrast */
    }

    .page-8-live__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 20px;
      max-width: 800px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

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

    .page-8-live__section-title {
      font-size: 2em;
      color: #0d47a1; /* Dark blue */
      text-align: center;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-8-live__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;
      width: 60px;
      height: 4px;
      background-color: #ffc107; /* Amber */
      border-radius: 2px;
    }

    .page-8-live__intro-content p {
      margin-bottom: 15px;
      text-align: justify;
      color: #555;
    }

    .page-8-live__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-8-live__game-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 10px 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;
      align-items: center;
      padding-bottom: 15px;
    }

    .page-8-live__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .page-8-live__game-image-wrapper {
      width: 100%;
      height: 180px;
      overflow: hidden;
      margin-bottom: 15px;
    }

    .page-8-live__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-8-live__game-title {
      font-size: 1.3em;
      color: #0d47a1; /* Dark blue */
      margin-top: 0;
      padding: 0 15px;
    }

    .page-8-live__game-description {
      font-size: 0.9em;
      color: #666;
      padding: 0 15px;
    }

    .page-8-live__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }

    .page-8-live__promo-item {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8-live__promo-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .page-8-live__promo-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
    }

    .page-8-live__promo-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .page-8-live__promo-content {
      padding: 20px;
      flex-grow: 1;
    }

    .page-8-live__promo-title {
      font-size: 1.4em;
      color: #0d47a1; /* Dark blue */
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-8-live__promo-description {
      font-size: 0.95em;
      color: #555;
    }

    .page-8-live__news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .page-8-live__news-article {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8-live__news-article:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .page-8-live__news-image-wrapper {
      width: 100%;
      height: 180px;
      overflow: hidden;
    }

    .page-8-live__news-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .page-8-live__news-content {
      padding: 20px;
      flex-grow: 1;
    }

    .page-8-live__news-title {
      font-size: 1.3em;
      color: #0d47a1; /* Dark blue */
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-8-live__news-date {
      font-size: 0.85em;
      color: #888;
      margin-bottom: 15px;
    }

    .page-8-live__news-summary {
      font-size: 0.95em;
      color: #555;
    }

    .page-8-live__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      list-style: none;
      padding: 0;
    }

    .page-8-live__feature-item {
      background-color: #fff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      text-align: center;
      box-sizing: border-box;
    }

    .page-8-live__feature-item h3 {
      color: #0d47a1; /* Dark blue */
      font-size: 1.3em;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-8-live__feature-item p {
      color: #555;
      font-size: 0.95em;
    }

    .page-8-live__faq-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
    }

    .page-8-live__faq-item {
      background-color: #fff;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    .page-8-live__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #e3f2fd; /* Light blue */
      color: #0d47a1; /* Dark blue */
      font-weight: bold;
      border-bottom: 1px solid #c8e6c9;
      transition: background-color 0.3s ease;
    }

    .page-8-live__faq-question:hover {
      background-color: #bbdefb; /* Slightly darker light blue */
    }

    .page-8-live__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8-live__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-8-live__faq-item.active .page-8-live__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or '-' */
    }

    .page-8-live__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;
      color: #555;
      background-color: #fff;
    }

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

    .page-8-live__faq-answer p {
      margin: 0;
    }

    .page-8-live__cta-section {
      text-align: center;
      padding: 40px 20px;
      background-color: #0d47a1; /* Dark blue */
      color: #fff;
      border-radius: 10px;
      margin-top: 40px;
    }

    .page-8-live__cta-title {
      font-size: 2.2em;
      margin-bottom: 15px;
      color: #ffc107; /* Amber */
    }

    .page-8-live__cta-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8-live__cta-button {
      background-color: #ffc107; /* Amber */
      color: #0d47a1; /* Dark blue */
      border: none;
      padding: 15px 40px;
      border-radius: 30px;
      font-size: 1.2em;
      font-weight: bold;
      cursor: pointer;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: inline-block;
    }

    .page-8-live__cta-button:hover {
      background-color: #ffca28; /* Lighter amber */
      transform: translateY(-2px);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-8-live__header-brand {
        font-size: 1.5em;
        padding: 10px 0;
      }

      .page-8-live__floating-buttons {
        padding: 8px 0;
      }

      .page-8-live__button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-8-live__hero-title {
        font-size: 1.8em;
      }

      .page-8-live__hero-subtitle {
        font-size: 1em;
      }

      .page-8-live__section-title {
        font-size: 1.8em;
      }

      .page-8-live__section {
        padding: 15px;
      }

      .page-8-live__game-categories,
      .page-8-live__promotions-grid,
      .page-8-live__news-grid,
      .page-8-live__feature-list {
        grid-template-columns: 1fr; /* Stack columns on mobile */
        gap: 15px;
      }

      .page-8-live__feature-item,
      .page-8-live__game-card,
      .page-8-live__promo-item,
      .page-8-live__news-article {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8-live__game-image,
      .page-8-live__promo-image,
      .page-8-live__news-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8-live__game-image-wrapper,
      .page-8-live__promo-image-wrapper,
      .page-8-live__news-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-8-live__faq-question,
      .page-8-live__faq-answer {
        padding: 15px !important;
      }

      .page-8-live__faq-answer {
        padding: 15px !important;
      }

      .page-8-live__cta-title {
        font-size: 1.8em;
      }

      .page-8-live__cta-description {
        font-size: 1em;
      }

      .page-8-live__cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
      }

      .page-8-live__intro-content p,
      .page-8-live__game-description,
      .page-8-live__promo-description,
      .page-8-live__news-summary,
      .page-8-live__feature-item p,
      .page-8-live__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-8-live__hero-title {
        font-size: 1.5em;
      }

      .page-8-live__hero-subtitle {
        font-size: 0.9em;
      }

      .page-8-live__section-title {
        font-size: 1.6em;
      }

      .page-8-live__button {
        padding: 8px 15px;
        font-size: 0.9em;
      }

      .page-8-live__cta-title {
        font-size: 1.6em;
      }

      .page-8-live__cta-button {
        padding: 10px 25px;
        font-size: 1em;
      }
    }
  