.page-play-the-puppy-playtime {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e;
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Ensures content starts below fixed header */
    }

    .page-play-the-puppy-playtime__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-play-the-puppy-playtime__section {
      padding: 40px 0;
      margin-bottom: 30px;
      background-color: #16213e;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .page-play-the-puppy-playtime__section:nth-child(even) {
      background-color: #0f3460;
    }

    .page-play-the-puppy-playtime__title {
      text-align: center;
      color: #e94560;
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-play-the-puppy-playtime__subtitle {
      text-align: center;
      color: #ffc107;
      margin-bottom: 25px;
      font-size: 1.8em;
      font-weight: 600;
    }

    .page-play-the-puppy-playtime__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: justify;
      padding: 0 15px;
    }

    .page-play-the-puppy-playtime__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .page-play-the-puppy-playtime__list-item {
      background-color: #0a1128;
      padding: 20px;
      border-radius: 5px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
      flex: 1 1 calc(33% - 40px);
      min-width: 280px;
      box-sizing: border-box;
      text-align: center;
    }

    .page-play-the-puppy-playtime__list-item-title {
      color: #ffc107;
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-play-the-puppy-playtime__list-item-text {
      color: #c0c0c0;
      font-size: 0.95em;
    }

    .page-play-the-puppy-playtime__cta-button {
      display: inline-block;
      background-color: #e94560;
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      margin-top: 20px;
      text-align: center;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-play-the-puppy-playtime__cta-button:hover {
      background-color: #ff6b81;
      transform: translateY(-2px);
    }

    .page-play-the-puppy-playtime__hero-section {
      position: relative;
      height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      border-radius: 0;
      margin-bottom: 0;
      padding: 0;
      background-color: #1a1a2e;
    }

    .page-play-the-puppy-playtime__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.6;
    }

    .page-play-the-puppy-playtime__hero-content {
      position: relative;
      z-index: 2;
      color: #ffffff;
      max-width: 800px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.5);
      border-radius: 10px;
    }

    .page-play-the-puppy-playtime__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: #ffc107;
      text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    }

    .page-play-the-puppy-playtime__hero-description {
      font-size: 1.4em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-play-the-puppy-playtime__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      padding: 0 15px;
    }

    .page-play-the-puppy-playtime__game-card {
      background-color: #0a1128;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-play-the-puppy-playtime__game-card:hover {
      transform: translateY(-5px);
    }

    .page-play-the-puppy-playtime__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-play-the-puppy-playtime__game-card-content {
      padding: 20px;
    }

    .page-play-the-puppy-playtime__game-card-title {
      font-size: 1.4em;
      color: #ffc107;
      margin-bottom: 10px;
    }

    .page-play-the-puppy-playtime__game-card-description {
      font-size: 0.95em;
      color: #c0c0c0;
      margin-bottom: 15px;
    }

    .page-play-the-puppy-playtime__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      padding: 0 15px;
    }

    .page-play-the-puppy-playtime__promo-card {
      background-color: #0a1128;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-play-the-puppy-playtime__promo-card:hover {
      transform: translateY(-5px);
    }

    .page-play-the-puppy-playtime__promo-card-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .page-play-the-puppy-playtime__promo-card-content {
      padding: 20px;
    }

    .page-play-the-puppy-playtime__promo-card-title {
      font-size: 1.4em;
      color: #ffc107;
      margin-bottom: 10px;
    }

    .page-play-the-puppy-playtime__promo-card-description {
      font-size: 0.95em;
      color: #c0c0c0;
      margin-bottom: 15px;
    }

    .page-play-the-puppy-playtime__faq-item {
      background-color: #0a1128;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      border: 1px solid #0f3460;
    }

    .page-play-the-puppy-playtime__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      background-color: #0f3460;
      color: #ffc107;
      font-size: 1.2em;
      font-weight: 600;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-play-the-puppy-playtime__faq-question:hover {
      background-color: #1a2e4e;
    }

    .page-play-the-puppy-playtime__faq-question h3 {
      margin: 0;
      color: inherit;
      font-size: inherit;
      pointer-events: none; /* Prevents h3 from blocking click event */
    }

    .page-play-the-puppy-playtime__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevents toggle icon from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-play-the-puppy-playtime__faq-item.active .page-play-the-puppy-playtime__faq-toggle {
      transform: rotate(45deg);
    }

    .page-play-the-puppy-playtime__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;
      color: #c0c0c0;
      opacity: 0;
    }

    .page-play-the-puppy-playtime__faq-item.active .page-play-the-puppy-playtime__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px !important;
      opacity: 1;
    }

    .page-play-the-puppy-playtime__blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      padding: 0 15px;
    }

    .page-play-the-puppy-playtime__blog-card {
      background-color: #0a1128;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
    }

    .page-play-the-puppy-playtime__blog-card:hover {
      transform: translateY(-5px);
    }

    .page-play-the-puppy-playtime__blog-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-play-the-puppy-playtime__blog-card-content {
      padding: 20px;
    }

    .page-play-the-puppy-playtime__blog-card-title {
      font-size: 1.3em;
      color: #ffc107;
      margin-bottom: 10px;
    }

    .page-play-the-puppy-playtime__blog-card-description {
      font-size: 0.9em;
      color: #c0c0c0;
      margin-bottom: 15px;
    }

    /* Responsive Adjustments */
    @media (max-width: 992px) {
      .page-play-the-puppy-playtime__hero-title {
        font-size: 3em;
      }
      .page-play-the-puppy-playtime__hero-description {
        font-size: 1.2em;
      }
      .page-play-the-puppy-playtime__title {
        font-size: 2em;
      }
      .page-play-the-puppy-playtime__subtitle {
        font-size: 1.5em;
      }
      .page-play-the-puppy-playtime__list-item {
        flex: 1 1 calc(50% - 30px);
      }
    }

    @media (max-width: 768px) {
      .page-play-the-puppy-playtime__hero-section {
        height: 400px;
      }
      .page-play-the-puppy-playtime__hero-title {
        font-size: 2.5em;
      }
      .page-play-the-puppy-playtime__hero-description {
        font-size: 1em;
      }
      .page-play-the-puppy-playtime__title {
        font-size: 1.8em;
      }
      .page-play-the-puppy-playtime__subtitle {
        font-size: 1.3em;
      }
      .page-play-the-puppy-playtime__text {
        font-size: 1em;
      }
      .page-play-the-puppy-playtime__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
      .page-play-the-puppy-playtime__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important;
      }
      .page-play-the-puppy-playtime__list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        flex-direction: column;
        align-items: center;
      }
      .page-play-the-puppy-playtime__game-card, .page-play-the-puppy-playtime__promo-card, .page-play-the-puppy-playtime__blog-card {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
      }
      .page-play-the-puppy-playtime__games-grid, .page-play-the-puppy-playtime__promotions-grid, .page-play-the-puppy-playtime__blog-grid {
        grid-template-columns: 1fr;
      }
      .page-play-the-puppy-playtime__game-card-image, .page-play-the-puppy-playtime__promo-card-image, .page-play-the-puppy-playtime__blog-card-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-play-the-puppy-playtime__faq-question {
        font-size: 1.1em;
        padding: 15px;
      }
      .page-play-the-puppy-playtime__faq-answer {
        padding: 15px !important;
      }
      .page-play-the-puppy-playtime__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-play-the-puppy-playtime__hero-title {
        font-size: 2em;
      }
      .page-play-the-puppy-playtime__hero-description {
        font-size: 0.9em;
      }
      .page-play-the-puppy-playtime__title {
        font-size: 1.5em;
      }
      .page-play-the-puppy-playtime__subtitle {
        font-size: 1.1em;
      }
    }