
    :root {
      --primary-color: #e03a3e; /* Đỏ rực */
      --secondary-color: #2c3e50; /* Xám đậm */
      --accent-color: #f39c12; /* Vàng cam */
      --background-dark: #1a1a1a;
      --background-light: #f4f4f4;
      --text-light: #ffffff;
      --text-dark: #333333;
      --border-color: #444444;
    }

    .page-1bmw-me {
      font-family: 'Arial', sans-serif;
      color: var(--text-light);
      background-color: var(--background-dark);
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: 10px; /* Nhỏ để tránh đúp padding với body */
    }

    .page-1bmw-me__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #222222;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      text-align: center;
    }

    .page-1bmw-me__section--dark {
      background-color: #1c1c1c;
    }

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

    .page-1bmw-me__section-subtitle {
      color: var(--accent-color);
      font-size: 1.8em;
      margin-bottom: 15px;
    }

    .page-1bmw-me__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: #cccccc;
    }

    .page-1bmw-me__hero-section {
      position: relative;
      height: 60vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      background-size: cover;
      background-position: center;
      color: var(--text-light);
      padding: 20px;
      min-height: 400px;
    }

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

    .page-1bmw-me__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
    }

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

    .page-1bmw-me__hero-description {
      font-size: 1.3em;
      color: #f0f0f0;
      margin-bottom: 30px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    }

    .page-1bmw-me__promo-banner {
      padding: 15px 20px;
      background-color: var(--accent-color);
      color: var(--text-dark);
      font-weight: bold;
      font-size: 1.2em;
      border-radius: 5px;
      margin-top: 20px;
      animation: pulse 1.5s infinite;
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

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

    .page-1bmw-me__button {
      background-color: var(--primary-color);
      color: var(--text-light);
      border: none;
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      display: inline-block;
      text-align: center;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    }

    .page-1bmw-me__button:hover {
      background-color: #c72d31;
      transform: translateY(-2px);
    }

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

    .page-1bmw-me__button--secondary:hover {
      background-color: #e08e0b;
    }

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

    .page-1bmw-me__game-card {
      background-color: #333333;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
      text-align: left;
      transition: transform 0.3s ease;
    }

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

    .page-1bmw-me__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-1bmw-me__game-card-content {
      padding: 20px;
    }

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

    .page-1bmw-me__game-card-description {
      font-size: 0.95em;
      color: #bbbbbb;
    }

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

    .page-1bmw-me__list-item {
      background-color: #333333;
      padding: 20px;
      border-radius: 8px;
      text-align: left;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-1bmw-me__list-item strong {
      color: var(--accent-color);
      font-size: 1.2em;
      display: block;
      margin-bottom: 5px;
    }

    .page-1bmw-me__faq-container {
      margin-top: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

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

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

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

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

    .page-1bmw-me__faq-item.active .page-1bmw-me__faq-toggle {
      transform: rotate(45deg);
    }

    .page-1bmw-me__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: #cccccc;
      text-align: left;
    }

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

    .page-1bmw-me__payment-providers {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-1bmw-me__logo-item {
      background-color: #333333;
      padding: 15px;
      border-radius: 8px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 80px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease;
    }

    .page-1bmw-me__logo-item:hover {
      transform: scale(1.05);
    }

    .page-1bmw-me__logo-item img {
      max-width: 100%;
      max-height: 100%;
      height: auto;
      display: block;
    }

    .page-1bmw-me__cta-button {
      margin-top: 30px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-1bmw-me__section {
        padding: 30px 15px;
      }

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

      .page-1bmw-me__section-subtitle {
        font-size: 1.5em;
      }

      .page-1bmw-me__hero-section {
        height: auto;
        min-height: 350px;
        padding: 80px 15px 40px;
      }

      .page-1bmw-me__hero-title {
        font-size: 2.2em;
      }

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

      .page-1bmw-me__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row;
        gap: 8px;
      }

      .page-1bmw-me__button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-1bmw-me__game-grid {
        grid-template-columns: 1fr;
      }

      .page-1bmw-me__list {
        grid-template-columns: 1fr;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-1bmw-me__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-1bmw-me__faq-question {
        padding: 12px 15px;
      }

      .page-1bmw-me__faq-question h3 {
        font-size: 1.1em;
      }

      .page-1bmw-me__faq-answer {
        padding: 0 15px;
      }

      .page-1bmw-me__faq-item.active .page-1bmw-me__faq-answer {
        padding: 15px !important;
      }

      .page-1bmw-me__payment-providers {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }

      .page-1bmw-me__logo-item {
        height: 60px;
        padding: 10px;
      }

      .page-1bmw-me__game-card-image {
        height: 180px;
      }

      .page-1bmw-me__game-card-content {
        padding: 15px;
      }

      .page-1bmw-me__game-card-title {
        font-size: 1.3em;
      }

      .page-1bmw-me__game-card-description {
        font-size: 0.9em;
      }

      /* Ensure all images are responsive */
      .page-1bmw-me img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-1bmw-me__hero-section img,
      .page-1bmw-me__game-card-image,
      .page-1bmw-me__logo-item img {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-1bmw-me__floating-buttons {
        flex-direction: column;
        align-items: stretch;
        left: 15px;
        right: 15px;
      }

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

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