
    :root {
      --page-b52shot-primary-color: #FFD700; /* Yellow */
      --page-b52shot-secondary-color: #FFFFFF; /* White */
      --page-b52shot-background-color: #000000; /* Black */
      --page-b52shot-text-color: #FFFFFF; /* White */
      --page-b52shot-accent-color: #FF4500; /* OrangeRed for emphasis */
      --page-b52shot-dark-grey: #1a1a1a;
      --page-b52shot-medium-grey: #2a2a2a;
      --page-b52shot-light-grey: #333;
    }

    body {
      font-family: 'Arial', sans-serif;
      background-color: var(--page-b52shot-background-color);
      color: var(--page-b52shot-text-color);
      line-height: 1.6;
      margin: 0;
      padding: 0;
    }

    .page-b52shot {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-b52shot__hero-section {
      position: relative;
      text-align: center;
      padding-top: 150px; /* Safe zone for fixed header */
      padding-bottom: 50px;
      background-color: var(--page-b52shot-background-color);
    }

    .page-b52shot__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }

    .page-b52shot__hero-content {
      position: relative;
      z-index: 10;
      margin-top: 30px;
    }

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

    .page-b52shot__hero-subtitle {
      font-size: 1.5em;
      color: var(--page-b52shot-secondary-color);
      margin-bottom: 30px;
    }

    .page-b52shot__cta-button {
      display: inline-block;
      background-color: var(--page-b52shot-accent-color);
      color: var(--page-b52shot-text-color);
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.2em;
      font-weight: bold;
      text-transform: uppercase;
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      border: none;
      text-decoration: none;
    }

    .page-b52shot__cta-button:hover {
      background-color: #E63900;
      transform: translateY(-3px);
    }

    .page-b52shot__section {
      padding: 50px 0;
      text-align: center;
    }

    .page-b52shot__section--dark {
      background-color: var(--page-b52shot-dark-grey);
    }

    .page-b52shot__section-title {
      font-size: 2.5em;
      color: var(--page-b52shot-primary-color);
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-b52shot__section-text {
      font-size: 1.1em;
      color: var(--page-b52shot-secondary-color);
      max-width: 800px;
      margin: 0 auto 40px auto;
    }

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

    .page-b52shot__game-card {
      background-color: var(--page-b52shot-medium-grey);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
    }

    .page-b52shot__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(255, 215, 0, 0.7);
    }

    .page-b52shot__game-image {
      width: 100%;
      height: 200px; /* Minimum height for content images */
      object-fit: cover;
      display: block;
    }

    .page-b52shot__game-content {
      padding: 20px;
    }

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

    .page-b52shot__game-description {
      font-size: 0.95em;
      color: var(--page-b52shot-secondary-color);
      line-height: 1.5;
    }

    .page-b52shot__features-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin-top: 30px;
      text-align: left;
    }

    .page-b52shot__feature-item {
      background-color: var(--page-b52shot-medium-grey);
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
      border-left: 5px solid var(--page-b52shot-primary-color);
      box-sizing: border-box; /* Crucial for responsive lists */
    }

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

    .page-b52shot__feature-description {
      color: var(--page-b52shot-secondary-color);
      font-size: 1em;
    }

    .page-b52shot__faq-section {
      padding: 50px 0;
      background-color: var(--page-b52shot-background-color);
    }

    .page-b52shot__faq-title {
      font-size: 2.5em;
      color: var(--page-b52shot-primary-color);
      text-align: center;
      margin-bottom: 40px;
    }

    .page-b52shot__faq-list {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-b52shot__faq-item {
      background-color: var(--page-b52shot-medium-grey);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .page-b52shot__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      background-color: var(--page-b52shot-light-grey);
      color: var(--page-b52shot-secondary-color);
      font-size: 1.2em;
      font-weight: bold;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

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

    .page-b52shot__faq-question h3 {
      margin: 0;
      color: var(--page-b52shot-secondary-color);
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from interfering with click event */
    }

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

    .page-b52shot__faq-item.active .page-b52shot__faq-toggle {
      transform: rotate(45deg); /* Changes '+' to 'x' or similar effect */
    }

    .page-b52shot__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: var(--page-b52shot-medium-grey);
      color: var(--page-b52shot-text-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 1em;
    }

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

    .page-b52shot__faq-answer p {
      margin-bottom: 10px;
    }

    .page-b52shot__promotion-banner {
      background: linear-gradient(45deg, #FF4500, #FFD700);
      padding: 40px 20px;
      text-align: center;
      border-radius: 10px;
      margin: 50px auto;
      max-width: 90%;
      box-shadow: 0 5px 20px rgba(255, 69, 0, 0.5);
    }

    .page-b52shot__promotion-title {
      font-size: 2.2em;
      color: var(--page-b52shot-text-color);
      margin-bottom: 15px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }

    .page-b52shot__promotion-text {
      font-size: 1.2em;
      color: var(--page-b52shot-text-color);
      margin-bottom: 25px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-b52shot__hero-section {
        padding-top: 150px; /* Adjust for mobile header */
        padding-bottom: 30px;
      }

      .page-b52shot__hero-title {
        font-size: 2.2em;
      }

      .page-b52shot__hero-subtitle {
        font-size: 1.2em;
      }

      .page-b52shot__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

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

      .page-b52shot__section-text {
        font-size: 1em;
        margin: 0 auto 30px auto;
        padding: 0 10px;
      }

      .page-b52shot__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-b52shot__game-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-b52shot__game-title {
        font-size: 1.3em;
      }

      .page-b52shot__feature-item {
        padding: 20px;
        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;
      }

      .page-b52shot__features-list {
        padding: 0 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-b52shot__faq-question {
        font-size: 1.1em;
        padding: 15px 15px;
      }

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

      .page-b52shot__faq-answer {
        padding: 15px 15px;
      }

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

      .page-b52shot__promotion-text {
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-b52shot__hero-title {
        font-size: 1.8em;
      }
      .page-b52shot__hero-subtitle {
        font-size: 1em;
      }
      .page-b52shot__section-title {
        font-size: 1.8em;
      }
      .page-b52shot__promotion-title {
        font-size: 1.5em;
      }
    }
  