
    :root {
      --page-1bmw-me-primary-color: #e44d26; /* A vibrant red/orange for accents */
      --page-1bmw-me-secondary-color: #f7931e; /* A complementary orange */
      --page-1bmw-me-dark-bg: #1a1a1a;
      --page-1bmw-me-light-text: #f0f0f0;
      --page-1bmw-me-gray-text: #cccccc;
      --page-1bmw-me-border-color: #333333;
      --page-1bmw-me-button-hover: #ff6a00;
    }

    .page-1bmw-me {
      font-family: 'Arial', sans-serif;
      background-color: var(--page-1bmw-me-dark-bg);
      color: var(--page-1bmw-me-light-text);
      line-height: 1.6;
      padding-bottom: 50px; /* Add some padding at the bottom */
    }

    .page-1bmw-me__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-1bmw-me__section:nth-of-type(odd) {
      background-color: #222222;
    }

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

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

    /* Hero Section */
    .page-1bmw-me__hero-section {
      padding-top: 10px; /* Small top padding, assuming body has header offset */
      background-size: cover;
      background-position: center;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

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

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

    .page-1bmw-me__hero-title {
      font-size: 3.5em;
      color: var(--page-1bmw-me-light-text);
      margin-bottom: 20px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-1bmw-me__hero-description {
      font-size: 1.3em;
      color: var(--page-1bmw-me-gray-text);
      margin-bottom: 30px;
    }

    .page-1bmw-me__button-group {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .page-1bmw-me__button {
      background-color: var(--page-1bmw-me-primary-color);
      color: var(--page-1bmw-me-light-text);
      padding: 15px 30px;
      border: none;
      border-radius: 8px;
      font-size: 1.1em;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      display: inline-block;
      font-weight: bold;
    }

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

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

    .page-1bmw-me__game-card {
      background-color: #2a2a2a;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-1bmw-me__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    }

    .page-1bmw-me__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 2px solid var(--page-1bmw-me-primary-color);
    }

    .page-1bmw-me__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .page-1bmw-me__game-card-title {
      font-size: 1.5em;
      color: var(--page-1bmw-me-secondary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-1bmw-me__game-card-description {
      font-size: 0.95em;
      color: var(--page-1bmw-me-gray-text);
      margin-bottom: 15px;
      flex-grow: 1;
    }

    /* Promotions */
    .page-1bmw-me__promotion-list {
      list-style: none;
      padding: 0;
      margin: 40px 0 0 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }

    .page-1bmw-me__promotion-item {
      background-color: #2a2a2a;
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      text-align: left;
      display: flex;
      gap: 20px;
      align-items: center;
    }

    .page-1bmw-me__promotion-item-image {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 8px;
      flex-shrink: 0;
    }

    .page-1bmw-me__promotion-item-content h3 {
      font-size: 1.4em;
      color: var(--page-1bmw-me-secondary-color);
      margin-top: 0;
      margin-bottom: 8px;
    }

    .page-1bmw-me__promotion-item-content p {
      font-size: 0.9em;
      color: var(--page-1bmw-me-gray-text);
      margin-bottom: 0;
    }

    /* About Section */
    .page-1bmw-me__about-content {
      text-align: left;
      font-size: 1.1em;
      color: var(--page-1bmw-me-gray-text);
      margin-top: 30px;
    }

    .page-1bmw-me__about-content p {
      margin-bottom: 20px;
    }

    /* Providers & Payments */
    .page-1bmw-me__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
      justify-items: center;
      align-items: center;
    }

    .page-1bmw-me__logo-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      padding: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px;
      width: 100%;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease;
      box-sizing: border-box; /* Crucial for width calculation */
    }

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

    .page-1bmw-me__logo-image {
      max-width: 100%;
      max-height: 70px;
      object-fit: contain;
    }

    /* FAQ Section */
    .page-1bmw-me__faq-container {
      margin-top: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-1bmw-me__faq-item {
      background-color: #2a2a2a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-1bmw-me__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      cursor: pointer;
      background-color: #333333;
      border-bottom: 1px solid var(--page-1bmw-me-border-color);
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-1bmw-me__faq-question:hover {
      background-color: #444444;
    }

    .page-1bmw-me__faq-question h3 {
      margin: 0;
      font-size: 1.15em;
      color: var(--page-1bmw-me-light-text);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

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

    .page-1bmw-me__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--page-1bmw-me-gray-text);
      opacity: 0;
    }

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

    .page-1bmw-me__faq-item.active .page-1bmw-me__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-1bmw-me__hero-title {
        font-size: 3em;
      }
      .page-1bmw-me__hero-description {
        font-size: 1.2em;
      }
      .page-1bmw-me__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-1bmw-me__hero-title {
        font-size: 2.5em;
      }
      .page-1bmw-me__hero-description {
        font-size: 1em;
      }
      .page-1bmw-me__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-1bmw-me__section {
        padding: 30px 15px;
      }
      .page-1bmw-me__section-title {
        font-size: 1.8em;
      }
      .page-1bmw-me__section-subtitle {
        font-size: 1em;
        margin-bottom: 20px;
      }

      /* Mobile list specific styles */
      .page-1bmw-me__game-grid,
      .page-1bmw-me__promotion-list,
      .page-1bmw-me__logo-grid {
        grid-template-columns: 1fr; /* Stack items */
        gap: 20px;
      }

      .page-1bmw-me__game-card,
      .page-1bmw-me__promotion-item,
      .page-1bmw-me__logo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for smaller screens */
        word-wrap: break-word !important; /* Ensure text wraps */
        overflow-wrap: break-word !important;
      }

      .page-1bmw-me__promotion-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
      }

      .page-1bmw-me__promotion-item-image {
        margin-bottom: 10px;
      }
      
      .page-1bmw-me__promotion-item-content h3 {
        font-size: 1.2em;
      }
      .page-1bmw-me__promotion-item-content p {
        font-size: 0.85em;
      }

      .page-1bmw-me__faq-question {
        padding: 15px;
      }
      .page-1bmw-me__faq-question h3 {
        font-size: 1em;
      }
      .page-1bmw-me__faq-answer {
        padding: 0 15px;
        font-size: 0.9em;
      }
      .page-1bmw-me__faq-item.active .page-1bmw-me__faq-answer {
        padding: 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-1bmw-me__hero-title {
        font-size: 2em;
      }
      .page-1bmw-me__hero-description {
        font-size: 0.9em;
      }
      .page-1bmw-me__button {
        width: 100%;
        margin-bottom: 10px;
      }
      .page-1bmw-me__button-group {
        flex-direction: column;
        gap: 10px;
      }
      .page-1bmw-me__game-card-title {
        font-size: 1.3em;
      }
    }
  