.page-playtime-stickers {
      font-family: Arial, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    .page-playtime-stickers__section-title {
      font-size: 2.5em;
      color: #1a1a1a;
      text-align: center;
      margin-bottom: 40px;
      padding-top: 20px;
      font-weight: bold;
    }

    .page-playtime-stickers__paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: center;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      color: #555;
    }

    .page-playtime-stickers__highlight {
      color: #e60000; /* A vibrant red for emphasis */
      font-weight: bold;
    }

    .page-playtime-stickers__text-link {
      color: #007bff;
      text-decoration: none;
      font-weight: bold;
    }

    .page-playtime-stickers__text-link:hover {
      text-decoration: underline;
      color: #0056b3;
    }

    .page-playtime-stickers__button {
      display: inline-block;
      background-color: #e60000; /* Red */
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      text-align: center;
    }

    .page-playtime-stickers__button:hover {
      background-color: #cc0000; /* Darker Red */
      color: #fff;
    }

    .page-playtime-stickers__button--large {
      padding: 15px 30px;
      font-size: 1.2em;
    }

    .page-playtime-stickers__button--small {
      padding: 8px 15px;
      font-size: 0.9em;
    }

    .page-playtime-stickers__center-cta {
      text-align: center;
      margin-top: 40px;
      margin-bottom: 40px;
    }

    /* Hero Section */
    .page-playtime-stickers__hero-section {
      position: relative;
      width: 100%;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-align: center;
      overflow: hidden;
      padding-top: 10px; /* Small top padding, relying on body padding for header offset */
      background-color: #333; /* Fallback background */
    }

    .page-playtime-stickers__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.6); /* Darken image for text readability */
    }

    .page-playtime-stickers__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
      border-radius: 10px;
    }

    .page-playtime-stickers__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      font-weight: bold;
      line-height: 1.2;
      color: #fff;
    }

    .page-playtime-stickers__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-playtime-stickers__hero-cta-button {
      display: inline-block;
      background-color: #e60000;
      color: #fff;
      padding: 15px 35px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.3em;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-playtime-stickers__hero-cta-button:hover {
      background-color: #cc0000;
      transform: translateY(-3px);
    }

    /* Partner/Provider Logo Section */
    .page-playtime-stickers__payment-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 30px;
      width: 100%;
      max-width: 1200px; /* Adjusted max-width for better desktop layout */
      margin: 50px auto;
      box-sizing: border-box;
      padding: 20px;
    }

    .page-playtime-stickers__payment-logo-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 30px;
      width: 100%;
    }

    .page-playtime-stickers__payment-logo {
      flex: 0 0 auto;
      width: 80px;
      height: 80px;
      max-width: 80px;
      max-height: 80px;
      box-sizing: border-box;
      display: flex; /* To center the image if smaller than container */
      justify-content: center;
      align-items: center;
    }
    .page-playtime-stickers__payment-logo img {
      display: block;
      width: 80px !important;
      height: 80px !important;
      max-width: 80px !important;
      max-height: 80px !important;
      object-fit: contain;
    }

    /* General Content Sections */
    .page-playtime-stickers__introduction-section,
    .page-playtime-stickers__quick-access-section,
    .page-playtime-stickers__games-section,
    .page-playtime-stickers__promotions-section,
    .page-playtime-stickers__security-section,
    .page-playtime-stickers__blog-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      background-color: #fff;
      border-radius: 10px;
      margin-bottom: 30px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    }

    .page-playtime-stickers__introduction-section,
    .page-playtime-stickers__security-section {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 40px;
      text-align: left;
    }

    .page-playtime-stickers__introduction-content,
    .page-playtime-stickers__security-content {
      flex: 1;
      min-width: 300px;
    }

    .page-playtime-stickers__image {
      flex: 1;
      max-width: 50%;
      height: auto;
      border-radius: 8px;
      object-fit: cover;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .page-playtime-stickers__introduction-section .page-playtime-stickers__section-title,
    .page-playtime-stickers__security-section .page-playtime-stickers__section-title {
      text-align: left;
      margin-top: 0;
    }

    .page-playtime-stickers__introduction-section .page-playtime-stickers__paragraph,
    .page-playtime-stickers__security-section .page-playtime-stickers__paragraph {
      text-align: left;
      margin-left: 0;
      margin-right: 0;
    }

    /* Quick Access Section */
    .page-playtime-stickers__quick-access-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
      margin-bottom: 30px;
    }

    /* Games Section */
    .page-playtime-stickers__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-playtime-stickers__game-category-card {
      background-color: #f9f9f9;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-playtime-stickers__game-category-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0,0,0,0.12);
    }

    .page-playtime-stickers__game-category-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 20px;
      object-fit: cover;
    }

    .page-playtime-stickers__game-category-title {
      font-size: 1.8em;
      color: #1a1a1a;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-playtime-stickers__game-category-description {
      font-size: 1em;
      color: #666;
      margin-bottom: 20px;
      text-align: center;
    }

    /* Promotions Section */
    .page-playtime-stickers__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-playtime-stickers__promotion-card {
      background-color: #f9f9f9;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-playtime-stickers__promotion-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0,0,0,0.12);
    }

    .page-playtime-stickers__promotion-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 20px;
      object-fit: cover;
    }

    .page-playtime-stickers__promotion-title {
      font-size: 1.8em;
      color: #1a1a1a;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-playtime-stickers__promotion-description {
      font-size: 1em;
      color: #666;
      margin-bottom: 20px;
      text-align: center;
    }

    /* Security Features List */
    .page-playtime-stickers__security-features {
      list-style: none;
      padding: 0;
      margin-top: 20px;
      text-align: left;
    }

    .page-playtime-stickers__security-feature-item {
      font-size: 1.1em;
      margin-bottom: 10px;
      color: #333;
      position: relative;
      padding-left: 25px;
    }

    .page-playtime-stickers__security-feature-item::before {
      content: '✓';
      color: #e60000;
      font-weight: bold;
      position: absolute;
      left: 0;
      top: 0;
    }

    /* FAQ Section */
    .page-playtime-stickers__faq-section {
      padding: 60px 20px;
      max-width: 900px;
      margin: 0 auto 30px auto;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    }

    .page-playtime-stickers__faq-list {
      margin-top: 40px;
    }

    .page-playtime-stickers__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 15px;
    }

    .page-playtime-stickers__faq-item:last-child {
      border-bottom: none;
    }

    .page-playtime-stickers__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      padding: 15px 0;
      font-size: 1.2em;
      color: #1a1a1a;
      font-weight: bold;
      transition: color 0.3s ease;
      user-select: none;
    }

    .page-playtime-stickers__faq-question:hover {
      color: #e60000;
    }

    .page-playtime-stickers__faq-title {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevents text selection from interfering with click */
    }

    .page-playtime-stickers__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #e60000;
      margin-left: 15px;
      pointer-events: none; /* Prevents toggle icon from interfering with click */
      transition: transform 0.3s ease;
    }

    .page-playtime-stickers__faq-item.active .page-playtime-stickers__faq-toggle {
      transform: rotate(45deg); /* Plus sign becomes an X or minus */
    }

    .page-playtime-stickers__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      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-playtime-stickers__faq-item.active .page-playtime-stickers__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain any content */
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-playtime-stickers__faq-answer .page-playtime-stickers__paragraph {
      text-align: left;
      margin-left: 0;
      margin-right: 0;
      margin-bottom: 0;
    }

    /* Blog Section */
    .page-playtime-stickers__blog-articles {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-playtime-stickers__blog-card {
      background-color: #f9f9f9;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      overflow: hidden;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-playtime-stickers__blog-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0,0,0,0.12);
    }

    .page-playtime-stickers__blog-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .page-playtime-stickers__blog-card-title {
      font-size: 1.4em;
      color: #1a1a1a;
      margin: 20px 20px 10px 20px;
      font-weight: bold;
    }

    .page-playtime-stickers__blog-card-excerpt {
      font-size: 0.95em;
      color: #666;
      margin: 0 20px 20px 20px;
      flex-grow: 1;
      line-height: 1.5;
    }

    .page-playtime-stickers__blog-card .page-playtime-stickers__button {
      margin: 0 20px 20px 20px;
      align-self: flex-start;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-playtime-stickers__hero-title {
        font-size: 3em;
      }
      .page-playtime-stickers__hero-description {
        font-size: 1.2em;
      }
      .page-playtime-stickers__section-title {
        font-size: 2em;
      }
      .page-playtime-stickers__introduction-section,
      .page-playtime-stickers__security-section {
        flex-direction: column;
      }
      .page-playtime-stickers__image {
        max-width: 80%;
        margin-top: 30px;
      }
      .page-playtime-stickers__introduction-section .page-playtime-stickers__section-title,
      .page-playtime-stickers__security-section .page-playtime-stickers__section-title {
        text-align: center;
      }
      .page-playtime-stickers__introduction-section .page-playtime-stickers__paragraph,
      .page-playtime-stickers__security-section .page-playtime-stickers__paragraph {
        text-align: center;
      }
      .page-playtime-stickers__security-features {
        text-align: center;
        padding-left: 0;
      }
      .page-playtime-stickers__security-feature-item {
        padding-left: 0;
      }
      .page-playtime-stickers__security-feature-item::before {
        position: static;
        margin-right: 10px;
      }
    }

    @media (max-width: 768px) {
      .page-playtime-stickers {
        padding: 0 10px;
      }
      .page-playtime-stickers__hero-section {
        min-height: 400px;
        padding-top: 10px; /* Keep consistent with desktop */
      }
      .page-playtime-stickers__hero-content {
        padding: 15px;
      }
      .page-playtime-stickers__hero-title {
        font-size: 2.2em;
      }
      .page-playtime-stickers__hero-description {
        font-size: 1em;
      }
      .page-playtime-stickers__hero-cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-playtime-stickers__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
      }
      .page-playtime-stickers__paragraph {
        font-size: 0.95em;
        padding: 0 10px;
      }
      .page-playtime-stickers__button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-playtime-stickers__button--large {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-playtime-stickers__payment-providers {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        padding: 15px 10px;
      }
      .page-playtime-stickers__payment-logo,
      .page-playtime-stickers__payment-logo img {
        width: 80px !important;
        height: 80px !important;
        max-width: 80px !important;
        max-height: 80px !important;
      }
      .page-playtime-stickers__introduction-section,
      .page-playtime-stickers__quick-access-section,
      .page-playtime-stickers__games-section,
      .page-playtime-stickers__promotions-section,
      .page-playtime-stickers__security-section,
      .page-playtime-stickers__blog-section {
        padding: 40px 15px;
      }
      .page-playtime-stickers__image {
        max-width: 100% !important; /* Force responsive for all images */
        height: auto !important;
        box-sizing: border-box !important;
      }
      /* List items responsive requirements */
      .page-playtime-stickers__security-features {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-playtime-stickers__security-feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0; /* Remove specific padding-left */
        text-align: center; /* Center text for mobile list items */
      }
      .page-playtime-stickers__security-feature-item::before {
        margin-right: 5px; /* Adjust checkmark spacing */
      }

      .page-playtime-stickers__quick-access-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-playtime-stickers__quick-access-buttons .page-playtime-stickers__button {
        width: 100%;
      }

      .page-playtime-stickers__game-categories,
      .page-playtime-stickers__promotions-grid,
      .page-playtime-stickers__blog-articles {
        grid-template-columns: 1fr;
        gap: 25px;
      }
      .page-playtime-stickers__game-category-card,
      .page-playtime-stickers__promotion-card,
      .page-playtime-stickers__blog-card {
        padding: 20px;
      }
      .page-playtime-stickers__game-category-title,
      .page-playtime-stickers__promotion-title {
        font-size: 1.5em;
      }
      .page-playtime-stickers__blog-card-title {
        font-size: 1.2em;
        margin: 15px 15px 8px 15px;
      }
      .page-playtime-stickers__blog-card-excerpt {
        margin: 0 15px 15px 15px;
      }
      .page-playtime-stickers__blog-card .page-playtime-stickers__button {
        margin: 0 15px 15px 15px;
      }

      .page-playtime-stickers__faq-section {
        padding: 40px 15px;
      }
      .page-playtime-stickers__faq-question {
        font-size: 1.1em;
        padding: 12px 0;
      }
      .page-playtime-stickers__faq-toggle {
        font-size: 1.3em;
      }
      .page-playtime-stickers__faq-answer {
        padding: 0 10px;
      }
      .page-playtime-stickers__faq-item.active .page-playtime-stickers__faq-answer {
        padding: 15px 10px !important;
      }
    }