
    .page-12play-app {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      padding-top: 10px; /* Small top padding, assuming body has padding-top from shared header */
    }

    .page-12play-app__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-12play-app__hero-section {
      background: linear-gradient(135deg, #007bff, #0056b3);
      color: #ffffff;
      text-align: center;
      padding: 60px 20px;
      border-radius: 0;
      box-shadow: none;
    }

    .page-12play-app__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      font-weight: bold;
      color: #ffffff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-12play-app__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #e0e0e0;
    }

    .page-12play-app__button-group {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .page-12play-app__button {
      background-color: #ffc107;
      color: #333;
      padding: 15px 30px;
      border: none;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      text-decoration: none;
      display: inline-block;
      text-align: center;
      min-width: 180px;
      box-sizing: border-box;
    }

    .page-12play-app__button:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
    }

    .page-12play-app__image-full-width {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 30px auto;
      border-radius: 12px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .page-12play-app__title {
      font-size: 2em;
      color: #007bff;
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .page-12play-app__content-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-12play-app__feature-item {
      text-align: center;
      padding: 25px;
      border-radius: 10px;
      background-color: #f9f9f9;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-12play-app__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-12play-app__feature-icon {
      width: 250px;
      height: auto;
      max-width: 100%;
      margin-bottom: 15px;
      border-radius: 8px;
    }

    .page-12play-app__feature-title {
      font-size: 1.4em;
      color: #0056b3;
      margin-bottom: 10px;
    }

    .page-12play-app__step-list {
      list-style: none;
      padding: 0;
      counter-reset: step-counter;
    }

    .page-12play-app__step-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 25px;
      background-color: #f9f9f9;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
      box-sizing: border-box;
    }

    .page-12play-app__step-item::before {
      counter-increment: step-counter;
      content: counter(step-counter);
      background-color: #28a745;
      color: #fff;
      font-size: 1.5em;
      font-weight: bold;
      border-radius: 50%;
      width: 45px;
      height: 45px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-right: 20px;
      flex-shrink: 0;
    }

    .page-12play-app__step-content h3 {
      margin-top: 0;
      color: #28a745;
      font-size: 1.3em;
    }

    .page-12play-app__step-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-top: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

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

    .page-12play-app__game-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-12play-app__game-card:hover {
      transform: translateY(-5px);
    }

    .page-12play-app__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .page-12play-app__game-info {
      padding: 20px;
    }

    .page-12play-app__game-title {
      font-size: 1.2em;
      color: #007bff;
      margin-bottom: 10px;
    }

    .page-12play-app__faq-list {
      margin-top: 30px;
    }

    .page-12play-app__faq-item {
      background-color: #f9f9f9;
      border: 1px solid #eee;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-12play-app__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      font-size: 1.1em;
      font-weight: bold;
      color: #333;
      cursor: pointer;
      background-color: #e9ecef;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-12play-app__faq-question:hover {
      background-color: #dee2e6;
    }

    .page-12play-app__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-12play-app__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      transition: transform 0.3s ease;
      color: #007bff;
    }

    .page-12play-app__faq-item.active .page-12play-app__faq-toggle {
      transform: rotate(45deg);
      content: '−'; /* This will be handled by JS for actual content */
    }

    .page-12play-app__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: #555;
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-12play-app__hero-title {
        font-size: 2em;
      }

      .page-12play-app__hero-subtitle {
        font-size: 1em;
      }

      .page-12play-app__button-group {
        flex-direction: column;
        gap: 15px;
      }

      .page-12play-app__button {
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
        padding: 12px 20px;
      }

      .page-12play-app__title {
        font-size: 1.6em;
      }

      .page-12play-app__section {
        padding: 30px 15px;
      }

      .page-12play-app__content-grid,
      .page-12play-app__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-12play-app__feature-item,
      .page-12play-app__game-card {
        padding: 20px 15px;
      }

      .page-12play-app__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
        margin-bottom: 20px;
      }

      .page-12play-app__step-item::before {
        margin-right: 0;
        margin-bottom: 15px;
      }

      .page-12play-app__step-content h3 {
        font-size: 1.2em;
      }

      .page-12play-app__step-image {
        margin-top: 10px;
      }

      .page-12play-app__faq-question {
        padding: 15px;
        font-size: 1em;
      }

      .page-12play-app__faq-answer {
        padding: 15px !important;
      }
      
      /* Image responsive safety */
      .page-12play-app__image-full-width,
      .page-12play-app__feature-icon,
      .page-12play-app__step-image,
      .page-12play-app__game-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-12play-app__feature-icon {
        width: 100% !important;
      }
    }

    @media (max-width: 480px) {
      .page-12play-app__hero-title {
        font-size: 1.8em;
      }

      .page-12play-app__hero-subtitle {
        font-size: 0.9em;
      }

      .page-12play-app__button {
        font-size: 1em;
        padding: 10px 15px;
      }

      .page-12play-app__title {
        font-size: 1.4em;
      }
    }
  