
    :root {
      --primary-color: #FFD700; /* Gold/Yellow */
      --secondary-color: #00BFFF; /* Deep Sky Blue */
      --dark-bg: #1A1A1A; /* Dark Grey */
      --light-text: #FFFFFF;
      --medium-text: #CCCCCC;
      --accent-color: #FF4500; /* OrangeRed */
      --border-color: #333;
    }

    .page-8k8-3 {
      font-family: 'Arial', sans-serif;
      color: var(--light-text);
      background-color: var(--dark-bg);
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: var(--header-offset, 122px); /* Fallback if shared.css doesn't set body padding-top */
    }

    /* General Section Styling */
    .page-8k8-3__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-8k8-3__section--dark {
      background-color: #222;
    }

    .page-8k8-3__section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-8k8-3__section-subtitle {
      font-size: 1.2em;
      color: var(--medium-text);
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-8k8-3__hero-section {
      position: relative;
      padding: 10px 20px 80px; /* Adjusted padding-top to avoid double offset, relying on body for main offset */
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      overflow: hidden;
      min-height: 500px; /* Ensure sufficient height */
    }

    .page-8k8-3__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }

    .page-8k8-3__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
    }

    .page-8k8-3__hero-title {
      font-size: 3.5em;
      color: var(--primary-color);
      margin-bottom: 15px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-3__hero-description {
      font-size: 1.3em;
      color: var(--light-text);
      margin-bottom: 30px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-3__button-group {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .page-8k8-3__button {
      background-color: var(--primary-color);
      color: var(--dark-bg);
      padding: 15px 30px;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      border: none;
      display: inline-block; /* For button styling consistency */
    }

    .page-8k8-3__button:hover {
      background-color: #FFC107; /* Slightly darker gold */
      transform: translateY(-2px);
    }

    .page-8k8-3__button--secondary {
      background-color: var(--secondary-color);
      color: var(--light-text);
    }

    .page-8k8-3__button--secondary:hover {
      background-color: #009ACD; /* Slightly darker blue */
      transform: translateY(-2px);
    }

    /* Content Area */
    .page-8k8-3__content-area {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: left;
    }

    .page-8k8-3__content-heading {
      font-size: 2em;
      color: var(--primary-color);
      margin-bottom: 20px;
      text-align: center;
    }

    .page-8k8-3__content-paragraph {
      font-size: 1.1em;
      color: var(--medium-text);
      margin-bottom: 20px;
      text-align: center;
    }

    /* Game Categories/Features Grid */
    .page-8k8-3__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-3__game-card {
      background-color: #2A2A2A;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding-bottom: 20px;
    }

    .page-8k8-3__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-3__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      border-bottom: 3px solid var(--primary-color);
    }

    .page-8k8-3__game-card-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin: 20px 15px 10px;
      line-height: 1.3;
    }

    .page-8k8-3__game-card-description {
      font-size: 0.95em;
      color: var(--medium-text);
      padding: 0 15px;
    }

    /* Promotions Section */
    .page-8k8-3__promo-section {
      padding: 60px 20px;
      background-color: #222;
    }

    .page-8k8-3__promo-card {
      background-color: #2A2A2A;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      display: flex;
      flex-direction: column;
      align-items: center;
      overflow: hidden;
      max-width: 900px;
      margin: 40px auto 0;
      text-align: center;
    }

    .page-8k8-3__promo-image {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-bottom: 3px solid var(--primary-color);
    }

    .page-8k8-3__promo-content {
      padding: 30px;
    }

    .page-8k8-3__promo-title {
      font-size: 2em;
      color: var(--primary-color);
      margin-bottom: 15px;
    }

    .page-8k8-3__promo-description {
      font-size: 1.1em;
      color: var(--medium-text);
      margin-bottom: 25px;
    }

    .page-8k8-3__promo-link {
      background-color: var(--accent-color);
      color: var(--light-text);
      padding: 12px 25px;
      border-radius: 5px;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: inline-block;
    }

    .page-8k8-3__promo-link:hover {
      background-color: #CC3700;
      transform: translateY(-2px);
    }

    /* FAQ Section */
    .page-8k8-3__faq-section {
      padding: 60px 20px;
    }

    .page-8k8-3__faq-container {
      max-width: 800px;
      margin: 40px auto 0;
    }

    .page-8k8-3__faq-item {
      background-color: #2A2A2A;
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-3__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #333;
      color: var(--light-text);
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8-3__faq-question:hover {
      background-color: #444;
    }

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

    .page-8k8-3__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-8k8-3__faq-item.active .page-8k8-3__faq-toggle {
      transform: rotate(45deg); /* Changes + to x or - */
    }

    .page-8k8-3__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #2A2A2A;
      color: var(--medium-text);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      text-align: left;
    }

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

    .page-8k8-3__faq-answer p {
      margin-bottom: 10px;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-3__hero-title {
        font-size: 3em;
      }
      .page-8k8-3__hero-description {
        font-size: 1.2em;
      }
      .page-8k8-3__section-title {
        font-size: 2.2em;
      }
      .page-8k8-3__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-8k8-3 {
        padding-top: var(--header-offset, 100px); /* Adjust for smaller header on mobile if needed */
      }
      .page-8k8-3__hero-section {
        padding: 10px 15px 60px;
      }
      .page-8k8-3__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-3__hero-description {
        font-size: 1em;
      }
      .page-8k8-3__button-group {
        flex-direction: column;
        gap: 15px;
      }
      .page-8k8-3__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 12px 20px;
      }
      .page-8k8-3__section,
      .page-8k8-3__content-area,
      .page-8k8-3__promo-section,
      .page-8k8-3__faq-section {
        padding: 30px 15px;
      }
      .page-8k8-3__section-title {
        font-size: 1.8em;
      }
      .page-8k8-3__section-subtitle {
        font-size: 1em;
        margin-bottom: 30px;
      }
      .page-8k8-3__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-8k8-3__game-card-image {
        height: 180px;
      }
      .page-8k8-3__game-card-title {
        font-size: 1.3em;
      }
      .page-8k8-3__promo-image {
        height: 200px;
      }
      .page-8k8-3__promo-title {
        font-size: 1.8em;
      }
      .page-8k8-3__promo-description {
        font-size: 1em;
      }
      .page-8k8-3__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-8k8-3__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-3__faq-answer {
        padding: 15px 20px;
      }

      /* List item responsive requirements */
      .page-8k8-3__game-grid > .page-8k8-3__game-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-3__game-card-description {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-8k8-3__faq-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important;
      }
      .page-8k8-3__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-3__faq-question h3 {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8-3__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-3__hero-title {
        font-size: 2em;
      }
      .page-8k8-3__section-title {
        font-size: 1.5em;
      }
      .page-8k8-3__promo-title {
        font-size: 1.5em;
      }
      .page-8k8-3__faq-question h3 {
        font-size: 1em;
      }
      .page-8k8-3__faq-toggle {
        font-size: 1.2em;
      }
    }
  