.page-playtime-apps-free-download {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0; /* Light text for dark background */
      background-color: #1a1a2e; /* Dark background */
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    /* Header offset handling */
    .page-playtime-apps-free-download__hero-section {
      padding-top: 10px; /* Small decorative padding, assuming body has padding-top from shared.css */
    }

    @media (max-width: 768px) {
      .page-playtime-apps-free-download {
        padding-bottom: 120px; /* More space for floating buttons on mobile */
      }
    }

    /* Hero Section */
    .page-playtime-apps-free-download__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 40px 20px;
      background-image: linear-gradient(to bottom, rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 1));
      position: relative;
      overflow: hidden;
    }

    .page-playtime-apps-free-download__hero-content {
      max-width: 900px;
      z-index: 1;
    }

    .page-playtime-apps-free-download__hero-title {
      font-size: 2.8em;
      color: #ffcc00; /* Gold accent */
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-playtime-apps-free-download__hero-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-playtime-apps-free-download__cta-button {
      display: inline-block;
      background-color: #ffcc00; /* Gold accent */
      color: #1a1a2e; /* Dark text for gold button */
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-playtime-apps-free-download__cta-button:hover {
      background-color: #e6b800; /* Darker gold */
      transform: translateY(-2px);
    }

    .page-playtime-apps-free-download__hero-image-wrapper {
      margin-top: 40px;
      width: 100%;
      max-width: 800px;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-playtime-apps-free-download__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    /* Features Section */
    .page-playtime-apps-free-download__features-section {
      padding: 60px 20px;
      text-align: center;
      background-color: #2a2a4a; /* Slightly lighter dark background */
    }

    .page-playtime-apps-free-download__features-title {
      font-size: 2.2em;
      color: #ffcc00;
      margin-bottom: 40px;
    }

    .page-playtime-apps-free-download__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-playtime-apps-free-download__feature-item {
      background-color: #1a1a2e;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-playtime-apps-free-download__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .page-playtime-apps-free-download__feature-icon {
      width: 200px; /* Minimum 200px */
      height: 200px; /* Minimum 200px */
      object-fit: contain;
      margin-bottom: 20px;
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }

    .page-playtime-apps-free-download__feature-heading {
      font-size: 1.5em;
      color: #ffcc00;
      margin-bottom: 15px;
    }

    .page-playtime-apps-free-download__feature-description {
      font-size: 1em;
      color: #cccccc;
    }

    /* How-to Download Section */
    .page-playtime-apps-free-download__how-to-download-section {
      padding: 60px 20px;
      text-align: center;
      background-color: #1a1a2e;
    }

    .page-playtime-apps-free-download__how-to-download-title {
      font-size: 2.2em;
      color: #ffcc00;
      margin-bottom: 40px;
    }

    .page-playtime-apps-free-download__download-steps {
      list-style: none;
      padding: 0;
      max-width: 800px;
      margin: 0 auto 40px auto;
      counter-reset: step-counter;
    }

    .page-playtime-apps-free-download__step-item {
      background-color: #2a2a4a;
      padding: 30px;
      margin-bottom: 20px;
      border-radius: 10px;
      text-align: left;
      position: relative;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-playtime-apps-free-download__step-item::before {
      counter-increment: step-counter;
      content: counter(step-counter);
      position: absolute;
      left: 20px;
      top: 20px;
      background-color: #ffcc00;
      color: #1a1a2e;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.2em;
    }

    .page-playtime-apps-free-download__step-heading {
      font-size: 1.4em;
      color: #ffcc00;
      margin-bottom: 10px;
      margin-left: 60px; /* Offset for number */
    }

    .page-playtime-apps-free-download__step-description {
      font-size: 1em;
      color: #cccccc;
      margin-left: 60px; /* Offset for number */
    }

    .page-playtime-apps-free-download__cta-button--bottom {
      margin-top: 20px;
    }

    /* Game Providers Section */
    .page-playtime-apps-free-download__game-providers-section {
      padding: 60px 20px;
      text-align: center;
      background-color: #2a2a4a;
    }

    .page-playtime-apps-free-download__game-providers-title {
      font-size: 2.2em;
      color: #ffcc00;
      margin-bottom: 20px;
    }

    .page-playtime-apps-free-download__game-providers-description {
      max-width: 800px;
      margin: 0 auto 40px auto;
      font-size: 1.1em;
      color: #cccccc;
    }

    .page-playtime-apps-free-download__provider-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-playtime-apps-free-download__provider-logo {
      width: 120px; /* gamelogo type doesn't have WxH, CSS controls size */
      height: 60px;
      object-fit: contain;
      filter: grayscale(100%) brightness(150%); /* Make logos fit theme, but no color change */
      transition: filter 0.3s ease;
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }

    .page-playtime-apps-free-download__provider-logo:hover {
      filter: grayscale(0%) brightness(100%); /* Restore color on hover */
    }

    /* FAQ Section */
    .page-playtime-apps-free-download__faq-section {
      padding: 60px 20px;
      background-color: #1a1a2e;
    }

    .page-playtime-apps-free-download__faq-main-title {
      text-align: center;
      font-size: 2.2em;
      color: #ffcc00;
      margin-bottom: 40px;
    }

    .page-playtime-apps-free-download__faq-list {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-playtime-apps-free-download__faq-item {
      background-color: #2a2a4a;
      margin-bottom: 15px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-playtime-apps-free-download__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      cursor: pointer;
      user-select: none;
      background-color: #3a3a5a;
      transition: background-color 0.3s ease;
    }

    .page-playtime-apps-free-download__faq-question:hover {
      background-color: #4a4a6a;
    }

    .page-playtime-apps-free-download__faq-question-text {
      font-size: 1.2em;
      color: #ffcc00;
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-playtime-apps-free-download__faq-toggle {
      font-size: 1.8em;
      color: #ffcc00;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click */
      line-height: 1; /* Align + - properly */
    }

    .page-playtime-apps-free-download__faq-item.active .page-playtime-apps-free-download__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
    }

    .page-playtime-apps-free-download__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;
      opacity: 0;
      color: #cccccc;
    }

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

    .page-playtime-apps-free-download__faq-answer p {
      margin: 0;
    }

    /* Floating Buttons */
    .page-playtime-apps-free-download__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: rgba(26, 26, 46, 0.95); /* Semi-transparent dark background */
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
    }

    .page-playtime-apps-free-download__floating-button {
      flex: 1;
      text-align: center;
      padding: 12px 0;
      margin: 0 5px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      transition: background-color 0.3s ease;
      color: #1a1a2e; /* Dark text */
      background-color: #ffcc00; /* Gold */
    }

    .page-playtime-apps-free-download__floating-button:hover {
      background-color: #e6b800;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-playtime-apps-free-download__hero-title {
        font-size: 2em;
      }
      .page-playtime-apps-free-download__hero-description {
        font-size: 1em;
      }
      .page-playtime-apps-free-download__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-playtime-apps-free-download__features-grid {
        grid-template-columns: 1fr;
      }
      .page-playtime-apps-free-download__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
      }
      .page-playtime-apps-free-download__download-steps {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 10px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-playtime-apps-free-download__step-item {
        padding: 20px;
      }
      .page-playtime-apps-free-download__step-heading {
        font-size: 1.2em;
        margin-left: 50px;
      }
      .page-playtime-apps-free-download__step-description {
        margin-left: 50px;
      }
      .page-playtime-apps-free-download__step-item::before {
        width: 35px;
        height: 35px;
        font-size: 1.1em;
        left: 15px;
        top: 15px;
      }
      .page-playtime-apps-free-download__provider-logo {
        width: 100px;
        height: 50px;
      }
      .page-playtime-apps-free-download__faq-question {
        padding: 15px;
      }
      .page-playtime-apps-free-download__faq-question-text {
        font-size: 1.1em;
      }
      .page-playtime-apps-free-download__faq-answer {
        padding: 15px !important; /* Adjusted for mobile */
      }
    }

    /* Ensure text wrapping for all elements */
    .page-playtime-apps-free-download p,
    .page-playtime-apps-free-download li,
    .page-playtime-apps-free-download h1,
    .page-playtime-apps-free-download h2,
    .page-playtime-apps-free-download h3,
    .page-playtime-apps-free-download a {
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
      word-break: break-word !important;
    }