
    .page-12play12 {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f0f2f5;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-12play12__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-12play12__hero-section {
      background-color: #004d40; /* Dark teal */
      color: #fff;
      text-align: center;
      padding: 60px 20px 40px; /* Adjusted padding-top */
      position: relative;
      overflow: hidden;
      margin-bottom: 20px;
      border-radius: 0 0 8px 8px;
      background-image: linear-gradient(to right, #00796b, #004d40);
    }

    .page-12play12__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
      max-width: 100% !important;
      height: auto !important;
      box-sizing: border-box !important;
    }

    .page-12play12__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-12play12__h1 {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: #ffeb3b; /* Yellow accent */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-12play12__hero-text {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #e0f2f1;
    }

    .page-12play12__button-group {
      display: flex;
      justify-content: center;
      gap: 15px;
    }

    .page-12play12__button {
      display: inline-block;
      padding: 12px 25px;
      background-color: #ff9800; /* Orange */
      color: #fff;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
      box-sizing: border-box;
    }

    .page-12play12__button:hover {
      background-color: #fb8c00;
      transform: translateY(-2px);
    }

    .page-12play12__button--primary {
      background-color: #4caf50; /* Green */
    }

    .page-12play12__button--primary:hover {
      background-color: #43a047;
    }

    .page-12play12__h2 {
      font-size: 2em;
      color: #004d40;
      margin-bottom: 25px;
      text-align: center;
      position: relative;
      padding-bottom: 10px;
    }

    .page-12play12__h2::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: #ff9800;
      border-radius: 2px;
    }

    .page-12play12__text-content {
      font-size: 1em;
      color: #555;
      margin-bottom: 20px;
      text-align: justify;
    }

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

    .page-12play12__game-card {
      background-color: #e0f2f1;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 20px;
    }

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

    .page-12play12__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      margin-bottom: 15px;
      max-width: 100% !important;
      height: auto !important;
      box-sizing: border-box !important;
    }

    .page-12play12__game-title {
      font-size: 1.3em;
      color: #004d40;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-12play12__game-description {
      font-size: 0.9em;
      color: #555;
      padding: 0 15px;
    }

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

    .page-12play12__promotion-item {
      background-color: #f9f9f9;
      padding: 20px;
      border-left: 5px solid #ff9800;
      border-radius: 5px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
      transition: border-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-12play12__promotion-item:hover {
      border-left-color: #4caf50;
    }

    .page-12play12__promotion-title {
      font-size: 1.2em;
      color: #004d40;
      margin-bottom: 10px;
    }

    .page-12play12__promotion-description {
      font-size: 0.95em;
      color: #666;
    }

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

    .page-12play12__feature-item {
      background-color: #e8f5e9; /* Light green */
      padding: 20px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-12play12__feature-item:hover {
      background-color: #dcedc8;
    }

    .page-12play12__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
      object-fit: contain;
      max-width: 100% !important;
      height: auto !important;
      box-sizing: border-box !important;
    }

    .page-12play12__feature-title {
      font-size: 1.1em;
      color: #004d40;
      margin-bottom: 10px;
    }

    .page-12play12__feature-description {
      font-size: 0.9em;
      color: #666;
    }

    .page-12play12__faq-section {
      background-color: #e0f2f1;
      padding: 40px 20px;
      max-width: 900px;
      margin: 20px auto;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .page-12play12__faq-item {
      margin-bottom: 10px;
      border: 1px solid #b2dfdb;
      border-radius: 5px;
      background-color: #fff;
      box-sizing: border-box;
    }

    .page-12play12__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px;
      cursor: pointer;
      background-color: #00796b;
      color: #fff;
      font-weight: bold;
      border-radius: 5px;
      user-select: none;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-12play12__faq-question:hover {
      background-color: #00695c;
    }

    .page-12play12__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click event */
      color: #fff;
    }

    .page-12play12__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-12play12__faq-item.active .page-12play12__faq-toggle {
      transform: rotate(45deg);
    }

    .page-12play12__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: #e0f2f1;
      color: #333;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      border-radius: 0 0 5px 5px;
      box-sizing: border-box;
    }

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

    .page-12play12__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      width: calc(100% - 40px);
      max-width: 350px;
      justify-content: center;
    }

    .page-12play12__floating-button {
      flex: 1;
      padding: 12px 15px;
      background-color: #ff5722; /* Deep Orange */
      color: #fff;
      text-align: center;
      text-decoration: none;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      box-sizing: border-box;
    }

    .page-12play12__floating-button:hover {
      background-color: #e64a19;
      transform: translateY(-3px);
    }

    .page-12play12__floating-button--login {
      background-color: #2196f3; /* Blue */
    }

    .page-12play12__floating-button--login:hover {
      background-color: #1976d2;
    }

    @media (max-width: 768px) {
      .page-12play12__h1 {
        font-size: 2em;
      }

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

      .page-12play12__h2 {
        font-size: 1.7em;
      }

      .page-12play12__section {
        padding: 30px 15px;
        margin-left: 10px;
        margin-right: 10px;
      }

      .page-12play12__button-group {
        flex-direction: column;
        gap: 10px;
      }

      .page-12play12__button {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
      }

      .page-12play12__game-grid,
      .page-12play12__promotion-list,
      .page-12play12__feature-list {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .page-12play12__promotion-item,
      .page-12play12__feature-item,
      .page-12play12__game-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px;
      }

      .page-12play12__promotion-list,
      .page-12play12__feature-list {
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-12play12__promotion-description,
      .page-12play12__feature-description,
      .page-12play12__game-description {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-12play12__faq-section {
        padding: 30px 15px;
        margin-left: 10px;
        margin-right: 10px;
      }

      .page-12play12__faq-question {
        padding: 12px;
      }

      .page-12play12__faq-question h3 {
        font-size: 1em;
      }

      .page-12play12__faq-answer {
        padding: 15px 12px;
      }

      .page-12play12__floating-buttons {
        width: calc(100% - 30px);
        bottom: 15px;
        gap: 10px;
      }

      .page-12play12__floating-button {
        font-size: 1em;
        padding: 10px 12px;
      }

      .page-12play12__hero-section {
        padding: 40px 15px 30px;
      }

      .page-12play12__game-image {
        height: 180px;
      }
    }

    @media (max-width: 480px) {
      .page-12play12__h1 {
        font-size: 1.8em;
      }
      .page-12play12__h2 {
        font-size: 1.5em;
      }
    }
  