
    :root {
      --primary-color: #f7b32b; /* Gold/Orange */
      --secondary-color: #333; /* Dark Grey */
      --background-dark: #1a1a1a; /* Very dark background */
      --text-light: #ffffff;
      --text-dark: #333333;
      --border-color: #444;
      --button-hover-color: #e0a225;
      --header-offset: 122px; /* Default fallback, will be overridden by shared.css */
    }

    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-light);
      background-color: var(--background-dark);
      margin: 0;
      padding-top: var(--header-offset); /* Ensure content is below fixed header */
    }

    /* General page styles */
    .page-1-bmw-win {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-1-bmw-win__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-1-bmw-win__section--dark {
      background-color: var(--secondary-color);
      color: var(--text-light);
    }

    .page-1-bmw-win__section-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: var(--primary-color);
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-1-bmw-win__section-subtitle {
      font-size: 1.2em;
      margin-bottom: 40px;
      color: var(--text-light);
    }

    .page-1-bmw-win__button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--text-dark);
      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-1-bmw-win__button:hover {
      background-color: var(--button-hover-color);
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-1-bmw-win__hero-section {
      position: relative;
      padding: 10px 0 80px 0; /* Only 10px top padding as body already has header offset */
      background-size: cover;
      background-position: center;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--text-light);
      overflow: hidden; /* Ensure image doesn't overflow */
      box-sizing: border-box;
      width: 100%;
      max-width: 100%;
    }

    .page-1-bmw-win__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .page-1-bmw-win__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 20px;
    }

    .page-1-bmw-win__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: var(--primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }

    .page-1-bmw-win__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: var(--text-light);
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-1-bmw-win__hero-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    /* About Section */
    .page-1-bmw-win__about-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 30px;
      text-align: left;
    }

    .page-1-bmw-win__about-text {
      flex: 1;
      min-width: 300px;
    }

    .page-1-bmw-win__about-image-wrapper {
      flex: 1;
      min-width: 300px;
      text-align: center;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-1-bmw-win__about-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    /* Game Categories */
    .page-1-bmw-win__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-1-bmw-win__game-card {
      background-color: var(--secondary-color);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
      width: 100%;
      box-sizing: border-box;
    }

    .page-1-bmw-win__game-card:hover {
      transform: translateY(-5px);
    }

    .page-1-bmw-win__game-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
    }

    .page-1-bmw-win__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-1-bmw-win__game-content {
      padding: 20px;
      text-align: left;
    }

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

    .page-1-bmw-win__game-description {
      font-size: 0.95em;
      color: var(--text-light);
    }

    /* Promotions Section */
    .page-1-bmw-win__promotion-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
      padding: 0;
      list-style: none;
    }

    .page-1-bmw-win__promotion-item {
      background-color: var(--secondary-color);
      border-radius: 10px;
      padding: 25px;
      text-align: left;
      flex: 1;
      min-width: 280px;
      max-width: 350px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      border-left: 5px solid var(--primary-color);
      box-sizing: border-box;
    }

    .page-1-bmw-win__promotion-item h3 {
      color: var(--primary-color);
      margin-top: 0;
      font-size: 1.3em;
    }

    .page-1-bmw-win__promotion-item p {
      color: var(--text-light);
      font-size: 0.9em;
    }

    /* Features Section */
    .page-1-bmw-win__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-1-bmw-win__feature-card {
      background-color: var(--secondary-color);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      text-align: center;
      box-sizing: border-box;
    }

    .page-1-bmw-win__feature-icon-wrapper {
        margin-bottom: 15px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
    }

    .page-1-bmw-win__feature-icon {
      width: 100px; /* Minimum size requirement */
      height: 100px;
      object-fit: contain;
      max-width: 100%;
      height: auto;
    }

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

    .page-1-bmw-win__feature-description {
      color: var(--text-light);
      font-size: 0.95em;
    }

    /* Call to Action Section */
    .page-1-bmw-win__cta-section {
      background: linear-gradient(45deg, #2a2a2a, #4a4a4a);
      color: var(--text-light);
      padding: 60px 20px;
      text-align: center;
      border-radius: 10px;
      margin: 40px auto;
      max-width: 900px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-1-bmw-win__cta-title {
      font-size: 2.2em;
      color: var(--primary-color);
      margin-bottom: 20px;
    }

    .page-1-bmw-win__cta-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Floating Buttons */
    .page-1-bmw-win__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-1-bmw-win__floating-button {
      background-color: var(--primary-color);
      color: var(--text-dark);
      padding: 10px 20px;
      border-radius: 50px;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      white-space: nowrap;
      font-size: 1em;
      border: none;
    }

    .page-1-bmw-win__floating-button:hover {
      background-color: var(--button-hover-color);
      transform: translateY(-2px);
    }

    /* FAQ Section */
    .page-1-bmw-win__faq-section {
      background-color: var(--secondary-color);
      padding: 50px 0;
      margin-top: 40px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    }

    .page-1-bmw-win__faq-container {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-1-bmw-win__faq-item {
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      background-color: #2a2a2a;
    }

    .page-1-bmw-win__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #3a3a3a;
      color: var(--text-light);
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-1-bmw-win__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-1-bmw-win__faq-question h3 {
      margin: 0;
      color: var(--primary-color);
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

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

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

    .page-1-bmw-win__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      color: var(--text-light);
      background-color: #2a2a2a;
      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: 0.95em;
    }

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

    .page-1-bmw-win__faq-answer p {
        margin-top: 0;
        margin-bottom: 10px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-1-bmw-win__hero-title {
        font-size: 2.5em;
      }

      .page-1-bmw-win__hero-subtitle {
        font-size: 1.2em;
      }

      .page-1-bmw-win__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-1-bmw-win__button {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
      }

      .page-1-bmw-win__section-title {
        font-size: 2em;
      }

      .page-1-bmw-win__about-content {
        flex-direction: column;
      }

      .page-1-bmw-win__about-text,
      .page-1-bmw-win__about-image-wrapper {
        min-width: unset;
        width: 100%;
      }

      .page-1-bmw-win__game-grid,
      .page-1-bmw-win__features-grid {
        grid-template-columns: 1fr;
      }

      .page-1-bmw-win__game-card,
      .page-1-bmw-win__promotion-item,
      .page-1-bmw-win__feature-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-1-bmw-win__promotion-list {
        flex-direction: column;
        align-items: center;
        padding: 0;
      }

      .page-1-bmw-win__promotion-item {
        padding: 15px;
      }

      .page-1-bmw-win__cta-title {
        font-size: 1.8em;
      }

      .page-1-bmw-win__cta-description {
        font-size: 1em;
      }

      /* Image responsive adjustments */
      .page-1-bmw-win__about-image,
      .page-1-bmw-win__game-image,
      .page-1-bmw-win__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-1-bmw-win__about-image-wrapper,
      .page-1-bmw-win__game-image-wrapper,
      .page-1-bmw-win__feature-icon-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        padding: 0 !important; /* Adjust padding if necessary */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-1-bmw-win__faq-answer {
        padding: 0 15px; /* Adjust padding for mobile */
      }
      .page-1-bmw-win__faq-item.active .page-1-bmw-win__faq-answer {
        padding: 15px !important; /* Adjust padding for mobile active state */
      }
      .page-1-bmw-win__faq-question {
        padding: 12px 15px;
      }
      .page-1-bmw-win__faq-question h3 {
        font-size: 1em;
      }
    }
  