:root {
      --page-primary-color: #FFD700; /* Gold/Yellow, often associated with luxury/gaming */
      --page-secondary-color: #333; /* Dark grey for text */
      --page-background-color: #1a1a1a; /* Dark background */
      --page-accent-color: #dc143c; /* Crimson for highlights/buttons */
      --page-text-color: #f0f0f0; /* Light text on dark background */
      --page-light-text-color: #ffffff; /* White text */
      --page-dark-text-color: #000000; /* Black text */
      --page-border-radius: 8px;
      --page-padding-section: 60px 20px;
      --page-padding-section-mobile: 40px 15px;
    }

    .page-dogday-poppy-playtime-with-legs {
      font-family: 'Arial', sans-serif;
      color: var(--page-text-color);
      background-color: var(--page-background-color);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-dogday-poppy-playtime-with-legs__section-title {
      font-size: 2.5em;
      color: var(--page-primary-color);
      text-align: center;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-dogday-poppy-playtime-with-legs__section-description {
      font-size: 1.1em;
      color: var(--page-text-color);
      text-align: center;
      max-width: 800px;
      margin: 0 auto 40px auto;
      line-height: 1.8;
    }

    /* Hero Section */
    .page-dogday-poppy-playtime-with-legs__hero-section {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 100px 20px;
      background-color: #000;
      overflow: hidden;
      min-height: 70vh;
      padding-top: 10px; /* Small decorative padding as per instructions */
    }

    .page-dogday-poppy-playtime-with-legs__hero-image-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }

    .page-dogday-poppy-playtime-with-legs__hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
      max-width: 100% !important;
      box-sizing: border-box !important;
    }

    .page-dogday-poppy-playtime-with-legs__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
      background: rgba(0, 0, 0, 0.6);
      border-radius: var(--page-border-radius);
    }

    .page-dogday-poppy-playtime-with-legs__hero-title {
      font-size: 3.5em;
      color: var(--page-primary-color);
      margin-bottom: 20px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-dogday-poppy-playtime-with-legs__hero-description {
      font-size: 1.3em;
      color: var(--page-light-text-color);
      margin-bottom: 40px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    }

    .page-dogday-poppy-playtime-with-legs__hero-cta-button {
      display: inline-block;
      background-color: var(--page-accent-color);
      color: var(--page-light-text-color);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: 2px solid var(--page-accent-color);
    }

    .page-dogday-poppy-playtime-with-legs__hero-cta-button:hover {
      background-color: #b20e2f;
      transform: translateY(-3px);
      border-color: #b20e2f;
    }

    /* Payment Providers Section */
    .page-dogday-poppy-playtime-with-legs__payment-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 30px;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      padding: var(--page-padding-section);
      background-color: #222;
      border-bottom: 1px solid #333;
    }

    .page-dogday-poppy-playtime-with-legs__payment-providers-title {
      width: 100%;
      text-align: center;
      font-size: 1.8em;
      color: var(--page-primary-color);
      margin-bottom: 30px;
    }

    .page-dogday-poppy-playtime-with-legs__payment-logo {
      flex: 0 0 auto;
      width: 80px;
      height: 80px;
      max-width: 80px;
      max-height: 80px;
      box-sizing: border-box;
      object-fit: contain;
      filter: grayscale(100%) brightness(150%);
      transition: filter 0.3s ease;
    }

    .page-dogday-poppy-playtime-with-legs__payment-logo:hover {
      filter: grayscale(0%) brightness(100%);
    }

    /* Introduction Section */
    .page-dogday-poppy-playtime-with-legs__introduction-section {
      padding: var(--page-padding-section);
      background-color: var(--page-background-color);
    }

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

    .page-dogday-poppy-playtime-with-legs__feature-item {
      background-color: #2a2a2a;
      padding: 25px;
      border-radius: var(--page-border-radius);
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-dogday-poppy-playtime-with-legs__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-dogday-poppy-playtime-with-legs__feature-image {
      width: 100%;
      max-width: 250px;
      height: auto;
      object-fit: contain;
      margin-bottom: 20px;
      max-width: 100% !important;
      box-sizing: border-box !important;
    }

    .page-dogday-poppy-playtime-with-legs__feature-title {
      font-size: 1.5em;
      color: var(--page-primary-color);
      margin-bottom: 15px;
    }

    .page-dogday-poppy-playtime-with-legs__feature-text {
      font-size: 1em;
      color: var(--page-text-color);
    }

    /* Quick Access Section */
    .page-dogday-poppy-playtime-with-legs__quick-access-section {
      padding: var(--page-padding-section);
      background-color: #222;
      text-align: center;
    }

    .page-dogday-poppy-playtime-with-legs__access-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .page-dogday-poppy-playtime-with-legs__access-button {
      display: inline-block;
      background-color: var(--page-primary-color);
      color: var(--page-dark-text-color);
      padding: 12px 25px;
      border-radius: var(--page-border-radius);
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: 2px solid var(--page-primary-color);
      flex-grow: 1;
      max-width: 220px;
      text-align: center;
    }

    .page-dogday-poppy-playtime-with-legs__access-button:hover {
      background-color: #e6b800;
      transform: translateY(-3px);
      border-color: #e6b800;
    }

    /* Games Section */
    .page-dogday-poppy-playtime-with-legs__games-section {
      padding: var(--page-padding-section);
      background-color: var(--page-background-color);
    }

    .page-dogday-poppy-playtime-with-legs__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-dogday-poppy-playtime-with-legs__game-card {
      background-color: #2a2a2a;
      border-radius: var(--page-border-radius);
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-dogday-poppy-playtime-with-legs__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-dogday-poppy-playtime-with-legs__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100% !important;
      box-sizing: border-box !important;
    }

    .page-dogday-poppy-playtime-with-legs__game-title {
      font-size: 1.4em;
      color: var(--page-primary-color);
      margin: 15px 10px 10px 10px;
    }

    .page-dogday-poppy-playtime-with-legs__game-text {
      font-size: 0.95em;
      color: var(--page-text-color);
      padding: 0 15px;
      margin-bottom: 20px;
    }

    .page-dogday-poppy-playtime-with-legs__game-cta {
      display: inline-block;
      background-color: var(--page-accent-color);
      color: var(--page-light-text-color);
      padding: 10px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      margin-bottom: 20px;
      transition: background-color 0.3s ease;
    }

    .page-dogday-poppy-playtime-with-legs__game-cta:hover {
      background-color: #b20e2f;
    }

    /* Promotions Section */
    .page-dogday-poppy-playtime-with-legs__promotions-section {
      padding: var(--page-padding-section);
      background-color: #222;
    }

    .page-dogday-poppy-playtime-with-legs__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-dogday-poppy-playtime-with-legs__promo-card {
      background-color: #2a2a2a;
      border-radius: var(--page-border-radius);
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-dogday-poppy-playtime-with-legs__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-dogday-poppy-playtime-with-legs__promo-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100% !important;
      box-sizing: border-box !important;
    }

    .page-dogday-poppy-playtime-with-legs__promo-title {
      font-size: 1.4em;
      color: var(--page-primary-color);
      margin: 15px 10px 10px 10px;
    }

    .page-dogday-poppy-playtime-with-legs__promo-text {
      font-size: 0.95em;
      color: var(--page-text-color);
      padding: 0 15px;
      margin-bottom: 20px;
    }

    .page-dogday-poppy-playtime-with-legs__promo-cta {
      display: inline-block;
      background-color: var(--page-primary-color);
      color: var(--page-dark-text-color);
      padding: 10px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      margin-bottom: 20px;
      transition: background-color 0.3s ease;
    }

    .page-dogday-poppy-playtime-with-legs__promo-cta:hover {
      background-color: #e6b800;
    }

    /* Security & Customer Service Section */
    .page-dogday-poppy-playtime-with-legs__security-customer-section {
      padding: var(--page-padding-section);
      background-color: var(--page-background-color);
      text-align: center;
    }

    .page-dogday-poppy-playtime-with-legs__security-list {
      list-style: none;
      padding: 0;
      margin: 0 auto 40px auto;
      max-width: 1000px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .page-dogday-poppy-playtime-with-legs__security-item {
      background-color: #2a2a2a;
      padding: 25px;
      border-radius: var(--page-border-radius);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      box-sizing: border-box;
    }

    .page-dogday-poppy-playtime-with-legs__security-item-title {
      font-size: 1.3em;
      color: var(--page-primary-color);
      margin-bottom: 10px;
    }

    .page-dogday-poppy-playtime-with-legs__security-item-text {
      font-size: 0.95em;
      color: var(--page-text-color);
    }

    .page-dogday-poppy-playtime-with-legs__contact-cta {
      margin-top: 40px;
    }

    .page-dogday-poppy-playtime-with-legs__contact-button {
      display: inline-block;
      background-color: var(--page-accent-color);
      color: var(--page-light-text-color);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: 2px solid var(--page-accent-color);
    }

    .page-dogday-poppy-playtime-with-legs__contact-button:hover {
      background-color: #b20e2f;
      transform: translateY(-3px);
      border-color: #b20e2f;
    }

    /* FAQ Section */
    .page-dogday-poppy-playtime-with-legs__faq-section {
      padding: var(--page-padding-section);
      background-color: #222;
    }

    .page-dogday-poppy-playtime-with-legs__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-dogday-poppy-playtime-with-legs__faq-item {
      background-color: #2a2a2a;
      margin-bottom: 15px;
      border-radius: var(--page-border-radius);
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-dogday-poppy-playtime-with-legs__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #3a3a3a;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-dogday-poppy-playtime-with-legs__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-dogday-poppy-playtime-with-legs__faq-question-text {
      font-size: 1.2em;
      color: var(--page-primary-color);
      margin: 0;
      pointer-events: none;
    }

    .page-dogday-poppy-playtime-with-legs__faq-toggle {
      font-size: 1.5em;
      color: var(--page-primary-color);
      font-weight: bold;
      pointer-events: none;
    }

    .page-dogday-poppy-playtime-with-legs__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: var(--page-text-color);
    }

    .page-dogday-poppy-playtime-with-legs__faq-item.active .page-dogday-poppy-playtime-with-legs__faq-answer {
      max-height: 2000px !important;
      padding: 20px !important;
      opacity: 1;
    }

    .page-dogday-poppy-playtime-with-legs__faq-answer p {
      margin: 0;
      font-size: 1em;
    }

    /* Blog Section */
    .page-dogday-poppy-playtime-with-legs__blog-section {
      padding: var(--page-padding-section);
      background-color: var(--page-background-color);
    }

    .page-dogday-poppy-playtime-with-legs__blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-dogday-poppy-playtime-with-legs__blog-post {
      background-color: #2a2a2a;
      border-radius: var(--page-border-radius);
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-dogday-poppy-playtime-with-legs__blog-post:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-dogday-poppy-playtime-with-legs__blog-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100% !important;
      box-sizing: border-box !important;
    }

    .page-dogday-poppy-playtime-with-legs__blog-title {
      font-size: 1.3em;
      color: var(--page-primary-color);
      margin: 15px 15px 10px 15px;
    }

    .page-dogday-poppy-playtime-with-legs__blog-title a {
      color: var(--page-primary-color);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-dogday-poppy-playtime-with-legs__blog-title a:hover {
      color: var(--page-accent-color);
    }

    .page-dogday-poppy-playtime-with-legs__blog-excerpt {
      font-size: 0.9em;
      color: var(--page-text-color);
      padding: 0 15px;
      margin-bottom: 15px;
    }

    .page-dogday-poppy-playtime-with-legs__blog-read-more {
      display: inline-block;
      background-color: var(--page-accent-color);
      color: var(--page-light-text-color);
      padding: 8px 15px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      margin: 0 15px 20px 15px;
      transition: background-color 0.3s ease;
    }

    .page-dogday-poppy-playtime-with-legs__blog-read-more:hover {
      background-color: #b20e2f;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-dogday-poppy-playtime-with-legs__hero-title {
        font-size: 2.8em;
      }
      .page-dogday-poppy-playtime-with-legs__hero-description {
        font-size: 1.1em;
      }
      .page-dogday-poppy-playtime-with-legs__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-dogday-poppy-playtime-with-legs__hero-section {
        padding: 80px 15px;
        min-height: 60vh;
      }
      .page-dogday-poppy-playtime-with-legs__hero-content {
        padding: 15px;
      }
      .page-dogday-poppy-playtime-with-legs__hero-title {
        font-size: 2.2em;
      }
      .page-dogday-poppy-playtime-with-legs__hero-description {
        font-size: 1em;
        margin-bottom: 30px;
      }
      .page-dogday-poppy-playtime-with-legs__hero-cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-dogday-poppy-playtime-with-legs__payment-providers {
        padding: var(--page-padding-section-mobile);
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
      }
      .page-dogday-poppy-playtime-with-legs__payment-logo {
        width: 80px !important;
        height: 80px !important;
        max-width: 80px !important;
        max-height: 80px !important;
      }
      .page-dogday-poppy-playtime-with-legs__payment-logo img {
        width: 80px !important;
        height: 80px !important;
        max-width: 80px !important;
        max-height: 80px !important;
      }

      .page-dogday-poppy-playtime-with-legs__introduction-section,
      .page-dogday-poppy-playtime-with-legs__quick-access-section,
      .page-dogday-poppy-playtime-with-legs__games-section,
      .page-dogday-poppy-playtime-with-legs__promotions-section,
      .page-dogday-poppy-playtime-with-legs__security-customer-section,
      .page-dogday-poppy-playtime-with-legs__faq-section,
      .page-dogday-poppy-playtime-with-legs__blog-section {
        padding: var(--page-padding-section-mobile);
      }

      .page-dogday-poppy-playtime-with-legs__section-title {
        font-size: 1.8em;
        margin-bottom: 15px;
      }
      .page-dogday-poppy-playtime-with-legs__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
      }

      .page-dogday-poppy-playtime-with-legs__features-grid,
      .page-dogday-poppy-playtime-with-legs__game-categories,
      .page-dogday-poppy-playtime-with-legs__promo-grid,
      .page-dogday-poppy-playtime-with-legs__blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-dogday-poppy-playtime-with-legs__feature-item,
      .page-dogday-poppy-playtime-with-legs__game-card,
      .page-dogday-poppy-playtime-with-legs__promo-card,
      .page-dogday-poppy-playtime-with-legs__blog-post {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-dogday-poppy-playtime-with-legs__security-list {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-dogday-poppy-playtime-with-legs__security-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-dogday-poppy-playtime-with-legs__access-buttons {
        flex-direction: column;
      }
      .page-dogday-poppy-playtime-with-legs__access-button {
        max-width: 100%;
      }

      .page-dogday-poppy-playtime-with-legs__faq-question {
        padding: 12px 15px;
      }
      .page-dogday-poppy-playtime-with-legs__faq-question-text {
        font-size: 1.1em;
      }
      .page-dogday-poppy-playtime-with-legs__faq-answer {
        padding: 0 15px;
      }
      .page-dogday-poppy-playtime-with-legs__faq-item.active .page-dogday-poppy-playtime-with-legs__faq-answer {
        padding: 15px !important;
      }

      /* Image responsiveness for all general images */
      .page-dogday-poppy-playtime-with-legs img:not(.page-dogday-poppy-playtime-with-legs__payment-logo) {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }