.page-project-playtime-mobile-v0-1-0 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-top: 10px; /* Adjust as per fixed header offset */
    }

    .page-project-playtime-mobile-v0-1-0__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-project-playtime-mobile-v0-1-0__section {
      background-color: #ffffff;
      margin-bottom: 30px;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .page-project-playtime-mobile-v0-1-0__section-title {
      color: #0056b3;
      text-align: center;
      margin-bottom: 25px;
      font-size: 2.2em;
      font-weight: 700;
    }

    .page-project-playtime-mobile-v0-1-0__hero-section {
      position: relative;
      color: #ffffff;
      text-align: center;
      padding: 80px 20px;
      border-radius: 0;
      box-shadow: none;
      overflow: hidden;
      background: linear-gradient(135deg, #007bff, #00c6ff);
      min-height: 400px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .page-project-playtime-mobile-v0-1-0__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0.3;
    }

    .page-project-playtime-mobile-v0-1-0__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
    }

    .page-project-playtime-mobile-v0-1-0__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      font-weight: 900;
      line-height: 1.1;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-project-playtime-mobile-v0-1-0__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      font-weight: 300;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }

    .page-project-playtime-mobile-v0-1-0__cta-button {
      display: inline-block;
      background-color: #ffc107;
      color: #333;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-project-playtime-mobile-v0-1-0__cta-button:hover {
      background-color: #e0a800;
      transform: translateY(-3px);
    }

    .page-project-playtime-mobile-v0-1-0__intro-text {
      font-size: 1.1em;
      color: #555;
      text-align: center;
      max-width: 900px;
      margin: 0 auto 30px auto;
    }

    .page-project-playtime-mobile-v0-1-0__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-project-playtime-mobile-v0-1-0__feature-item {
      text-align: center;
      padding: 25px;
      border-radius: 8px;
      background-color: #f0f8ff;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    }

    .page-project-playtime-mobile-v0-1-0__feature-item h3 {
      color: #007bff;
      margin-top: 15px;
      margin-bottom: 10px;
      font-size: 1.4em;
    }

    .page-project-playtime-mobile-v0-1-0__feature-item p {
      color: #666;
      font-size: 0.95em;
    }

    .page-project-playtime-mobile-v0-1-0__quick-access-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-project-playtime-mobile-v0-1-0__quick-access-button {
      display: block;
      width: 100%;
      padding: 15px 10px;
      background-color: #28a745;
      color: #ffffff;
      text-align: center;
      text-decoration: none;
      border-radius: 8px;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-project-playtime-mobile-v0-1-0__quick-access-button:nth-child(even) {
      background-color: #17a2b8;
    }

    .page-project-playtime-mobile-v0-1-0__quick-access-button:hover {
      background-color: #218838;
      transform: translateY(-2px);
    }

    .page-project-playtime-mobile-v0-1-0__quick-access-button:nth-child(even):hover {
      background-color: #138496;
    }

    .page-project-playtime-mobile-v0-1-0__game-category-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-project-playtime-mobile-v0-1-0__game-category-card {
      background-color: #f0f0f0;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
    }

    .page-project-playtime-mobile-v0-1-0__game-category-card:hover {
      transform: translateY(-5px);
    }

    .page-project-playtime-mobile-v0-1-0__game-category-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .page-project-playtime-mobile-v0-1-0__game-category-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-project-playtime-mobile-v0-1-0__game-category-title {
      font-size: 1.5em;
      color: #0056b3;
      margin-bottom: 10px;
    }

    .page-project-playtime-mobile-v0-1-0__game-category-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
    }

    .page-project-playtime-mobile-v0-1-0__game-category-link {
      display: inline-block;
      background-color: #007bff;
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 0.9em;
      align-self: flex-start;
      transition: background-color 0.3s ease;
    }

    .page-project-playtime-mobile-v0-1-0__game-category-link:hover {
      background-color: #0056b3;
    }

    .page-project-playtime-mobile-v0-1-0__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-project-playtime-mobile-v0-1-0__promo-card {
      background-color: #f9f9f9;
      border: 1px solid #eee;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      text-decoration: none;
      color: inherit;
      transition: transform 0.3s ease;
    }

    .page-project-playtime-mobile-v0-1-0__promo-card:hover {
      transform: translateY(-5px);
    }

    .page-project-playtime-mobile-v0-1-0__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    .page-project-playtime-mobile-v0-1-0__promo-content {
      padding: 20px;
    }

    .page-project-playtime-mobile-v0-1-0__promo-title {
      font-size: 1.4em;
      color: #dc3545;
      margin-bottom: 10px;
    }

    .page-project-playtime-mobile-v0-1-0__promo-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 15px;
    }

    .page-project-playtime-mobile-v0-1-0__promo-button {
      display: inline-block;
      background-color: #dc3545;
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
    }

    .page-project-playtime-mobile-v0-1-0__promo-button:hover {
      background-color: #c82333;
    }

    .page-project-playtime-mobile-v0-1-0__security-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-project-playtime-mobile-v0-1-0__security-item {
      text-align: center;
      padding: 25px;
      border-radius: 8px;
      background-color: #e6f7ff;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    }

    .page-project-playtime-mobile-v0-1-0__security-item h3 {
      color: #007bff;
      margin-top: 15px;
      margin-bottom: 10px;
      font-size: 1.4em;
    }

    .page-project-playtime-mobile-v0-1-0__security-item p {
      color: #666;
      font-size: 0.95em;
    }

    .page-project-playtime-mobile-v0-1-0__faq-item {
      margin-bottom: 15px;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      overflow: hidden;
    }

    .page-project-playtime-mobile-v0-1-0__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #f5f5f5;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      color: #333;
      transition: background-color 0.3s ease;
    }

    .page-project-playtime-mobile-v0-1-0__faq-question:hover {
      background-color: #e9e9e9;
    }

    .page-project-playtime-mobile-v0-1-0__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      flex-grow: 1;
      pointer-events: none;
    }

    .page-project-playtime-mobile-v0-1-0__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none;
      transition: transform 0.3s ease;
    }

    .page-project-playtime-mobile-v0-1-0__faq-item.active .page-project-playtime-mobile-v0-1-0__faq-toggle {
      transform: rotate(45deg);
    }

    .page-project-playtime-mobile-v0-1-0__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: #ffffff;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #555;
    }

    .page-project-playtime-mobile-v0-1-0__faq-item.active .page-project-playtime-mobile-v0-1-0__faq-answer {
      max-height: 2000px !important;
      padding: 20px !important;
      opacity: 1;
    }

    .page-project-playtime-mobile-v0-1-0__blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-project-playtime-mobile-v0-1-0__blog-card {
      background-color: #fefefe;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      text-decoration: none;
      color: inherit;
      transition: transform 0.3s ease;
    }

    .page-project-playtime-mobile-v0-1-0__blog-card:hover {
      transform: translateY(-5px);
    }

    .page-project-playtime-mobile-v0-1-0__blog-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .page-project-playtime-mobile-v0-1-0__blog-content {
      padding: 20px;
    }

    .page-project-playtime-mobile-v0-1-0__blog-title {
      font-size: 1.3em;
      color: #0056b3;
      margin-bottom: 10px;
    }

    .page-project-playtime-mobile-v0-1-0__blog-summary {
      font-size: 0.9em;
      color: #666;
      margin-bottom: 15px;
    }

    .page-project-playtime-mobile-v0-1-0__blog-readmore {
      display: inline-block;
      background-color: #6c757d;
      color: #ffffff;
      padding: 8px 15px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 0.85em;
      transition: background-color 0.3s ease;
    }

    .page-project-playtime-mobile-v0-1-0__blog-readmore:hover {
      background-color: #5a6268;
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .page-project-playtime-mobile-v0-1-0__container {
        padding: 15px;
      }

      .page-project-playtime-mobile-v0-1-0__hero-section {
        padding: 60px 15px;
        min-height: 300px;
      }

      .page-project-playtime-mobile-v0-1-0__hero-title {
        font-size: 2.5em;
      }

      .page-project-playtime-mobile-v0-1-0__hero-subtitle {
        font-size: 1.2em;
      }

      .page-project-playtime-mobile-v0-1-0__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-project-playtime-mobile-v0-1-0__section-title {
        font-size: 1.8em;
      }

      .page-project-playtime-mobile-v0-1-0__section {
        padding: 20px;
      }

      .page-project-playtime-mobile-v0-1-0__feature-grid,
      .page-project-playtime-mobile-v0-1-0__quick-access-grid,
      .page-project-playtime-mobile-v0-1-0__game-category-grid,
      .page-project-playtime-mobile-v0-1-0__promo-grid,
      .page-project-playtime-mobile-v0-1-0__security-grid,
      .page-project-playtime-mobile-v0-1-0__blog-grid {
        grid-template-columns: 1fr;
      }

      .page-project-playtime-mobile-v0-1-0__quick-access-button {
        font-size: 0.95em;
        padding: 12px 8px;
      }

      .page-project-playtime-mobile-v0-1-0__game-category-image,
      .page-project-playtime-mobile-v0-1-0__promo-image,
      .page-project-playtime-mobile-v0-1-0__blog-image {
        height: 180px;
      }

      .page-project-playtime-mobile-v0-1-0__faq-question {
        padding: 12px 15px;
      }

      .page-project-playtime-mobile-v0-1-0__faq-question h3 {
        font-size: 1em;
      }

      .page-project-playtime-mobile-v0-1-0__faq-answer {
        padding: 15px !important;
      }

      .page-project-playtime-mobile-v0-1-0__feature-item,
      .page-project-playtime-mobile-v0-1-0__security-item,
      .page-project-playtime-mobile-v0-1-0__game-category-card,
      .page-project-playtime-mobile-v0-1-0__promo-card,
      .page-project-playtime-mobile-v0-1-0__blog-card {
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-project-playtime-mobile-v0-1-0__feature-grid > div, 
      .page-project-playtime-mobile-v0-1-0__security-grid > div,
      .page-project-playtime-mobile-v0-1-0__quick-access-grid > a,
      .page-project-playtime-mobile-v0-1-0__game-category-grid > a,
      .page-project-playtime-mobile-v0-1-0__promo-grid > a,
      .page-project-playtime-mobile-v0-1-0__blog-grid > a {
          box-sizing: border-box !important;
          width: 100% !important;
          max-width: 100% !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
          word-wrap: break-word !important;
          overflow-wrap: break-word !important;
          word-break: break-word !important;
      }
    }