:root {
      --primary-color: #FFD700; /* Gold */
      --secondary-color: #007bff; /* Blue */
      --dark-background: #1a1a1a; /* Dark Grey */
      --light-text: #ffffff;
      --dark-text: #333333;
      --accent-color: #e6e6e6; /* Light grey for borders/dividers */
      --button-hover-color: #e0b800; /* Darker gold for hover */
    }

    .page-who-is-the-strongest-in-poppy-playtime {
      font-family: 'Arial', sans-serif;
      color: var(--light-text);
      background-color: var(--dark-background);
      line-height: 1.6;
      overflow-x: hidden; /* Prevent horizontal scroll from padding */
    }

    /* General Section Styling */
    .page-who-is-the-strongest-in-poppy-playtime section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-who-is-the-strongest-in-poppy-playtime h1,
    .page-who-is-the-strongest-in-poppy-playtime h2,
    .page-who-is-the-strongest-in-poppy-playtime h3 {
      color: var(--primary-color);
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .page-who-is-the-strongest-in-poppy-playtime h1 {
      font-size: 3em;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-who-is-the-strongest-in-poppy-playtime h2 {
      font-size: 2.5em;
      color: var(--light-text);
      border-bottom: 2px solid var(--primary-color);
      padding-bottom: 10px;
      display: inline-block;
      margin-bottom: 30px;
    }

    .page-who-is-the-strongest-in-poppy-playtime h3 {
      font-size: 1.8em;
      color: var(--primary-color);
    }

    .page-who-is-the-strongest-in-poppy-playtime p {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: var(--accent-color);
    }

    /* Buttons */
    .page-who-is-the-strongest-in-poppy-playtime__hero-button,
    .page-who-is-the-strongest-in-poppy-playtime__quick-access-button,
    .page-who-is-the-strongest-in-poppy-playtime__game-card-button,
    .page-who-is-the-strongest-in-poppy-playtime__promo-card-button,
    .page-who-is-the-strongest-in-poppy-playtime__blog-card-link {
      display: inline-block;
      padding: 12px 25px;
      background-color: var(--primary-color);
      color: var(--dark-background);
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-who-is-the-strongest-in-poppy-playtime__hero-button:hover,
    .page-who-is-the-strongest-in-poppy-playtime__quick-access-button:hover,
    .page-who-is-the-strongest-in-poppy-playtime__game-card-button:hover,
    .page-who-is-the-strongest-in-poppy-playtime__promo-card-button:hover,
    .page-who-is-the-strongest-in-poppy-playtime__blog-card-link:hover {
      background-color: var(--button-hover-color);
      transform: translateY(-2px);
    }

    /* Image base styles */
    .page-who-is-the-strongest-in-poppy-playtime img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
      object-fit: cover;
    }

    /* HERO Section */
    .page-who-is-the-strongest-in-poppy-playtime__hero-section {
      position: relative;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding: 10px 20px 60px; /* Small top padding for decorative spacing, main padding is bottom */
    }

    .page-who-is-the-strongest-in-poppy-playtime__hero-image-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .page-who-is-the-strongest-in-poppy-playtime__hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.5); /* Darken image for text readability */
      border-radius: 0;
    }

    .page-who-is-the-strongest-in-poppy-playtime__hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 800px;
      padding: 20px;
      background: rgba(0, 0, 0, 0.4);
      border-radius: 10px;
    }

    .page-who-is-the-strongest-in-poppy-playtime__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--light-text);
    }

    /* Intro Section */
    .page-who-is-the-strongest-in-poppy-playtime__intro-section {
      background-color: #222222;
      padding: 80px 20px;
    }

    .page-who-is-the-strongest-in-poppy-playtime__intro-features {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }

    .page-who-is-the-strongest-in-poppy-playtime__intro-feature-item {
      flex: 1 1 calc(33% - 40px); /* 3 items per row on desktop */
      max-width: calc(33% - 40px);
      background-color: #333333;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      box-sizing: border-box;
    }

    .page-who-is-the-strongest-in-poppy-playtime__intro-feature-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      filter: drop-shadow(0 0 5px var(--primary-color));
      border-radius: 0;
    }

    .page-who-is-the-strongest-in-poppy-playtime__intro-feature-heading {
      color: var(--primary-color);
      font-size: 1.5em;
      margin-bottom: 10px;
    }

    .page-who-is-the-strongest-in-poppy-playtime__intro-feature-description {
      font-size: 0.95em;
      color: var(--accent-color);
    }

    /* Quick Access */
    .page-who-is-the-strongest-in-poppy-playtime__quick-access-section {
      padding: 60px 20px;
    }

    .page-who-is-the-strongest-in-poppy-playtime__quick-access-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-top: 30px;
    }

    /* Game Categories */
    .page-who-is-the-strongest-in-poppy-playtime__games-section {
      background-color: #222222;
      padding: 80px 20px;
    }

    .page-who-is-the-strongest-in-poppy-playtime__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-who-is-the-strongest-in-poppy-playtime__game-card {
      background-color: #333333;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-sizing: border-box;
    }

    .page-who-is-the-strongest-in-poppy-playtime__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 3px solid var(--primary-color);
      border-radius: 0; /* Remove border-radius from image itself for full width */
    }

    .page-who-is-the-strongest-in-poppy-playtime__game-card-title {
      font-size: 1.6em;
      margin: 20px 15px 10px;
    }

    .page-who-is-the-strongest-in-poppy-playtime__game-card-text {
      font-size: 0.95em;
      color: var(--accent-color);
      padding: 0 15px;
      flex-grow: 1; /* Allow text to grow */
    }

    .page-who-is-the-strongest-in-poppy-playtime__game-card-button {
      margin: 20px 15px;
      width: calc(100% - 30px);
    }

    /* Promotions */
    .page-who-is-the-strongest-in-poppy-playtime__promo-section {
      padding: 80px 20px;
    }

    .page-who-is-the-strongest-in-poppy-playtime__promo-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-who-is-the-strongest-in-poppy-playtime__promo-card {
      background-color: #333333;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-sizing: border-box;
    }

    .page-who-is-the-strongest-in-poppy-playtime__promo-card-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-bottom: 3px solid var(--primary-color);
      border-radius: 0;
    }

    .page-who-is-the-strongest-in-poppy-playtime__promo-card-title {
      font-size: 1.5em;
      margin: 20px 15px 10px;
    }

    .page-who-is-the-strongest-in-poppy-playtime__promo-card-text {
      font-size: 0.95em;
      color: var(--accent-color);
      padding: 0 15px;
      flex-grow: 1;
    }

    .page-who-is-the-strongest-in-poppy-playtime__promo-card-button {
      margin: 20px 15px;
      width: calc(100% - 30px);
    }

    /* Security Section */
    .page-who-is-the-strongest-in-poppy-playtime__security-section {
      background-color: #222222;
      padding: 80px 20px;
    }

    .page-who-is-the-strongest-in-poppy-playtime__security-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-who-is-the-strongest-in-poppy-playtime__security-item {
      background-color: #333333;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      box-sizing: border-box;
    }

    .page-who-is-the-strongest-in-poppy-playtime__security-icon {
      width: 120px;
      height: 120px;
      margin-bottom: 20px;
      filter: drop-shadow(0 0 5px var(--primary-color));
      border-radius: 0;
    }

    .page-who-is-the-strongest-in-poppy-playtime__security-item-title {
      font-size: 1.4em;
      margin-bottom: 10px;
      color: var(--primary-color);
    }

    .page-who-is-the-strongest-in-poppy-playtime__security-item-text {
      font-size: 0.9em;
      color: var(--accent-color);
    }

    /* FAQ Section */
    .page-who-is-the-strongest-in-poppy-playtime__faq-section {
      padding: 80px 20px;
    }

    .page-who-is-the-strongest-in-poppy-playtime__faq-container {
      margin-top: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-who-is-the-strongest-in-poppy-playtime__faq-item {
      background-color: #333333;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-who-is-the-strongest-in-poppy-playtime__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #444444;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-who-is-the-strongest-in-poppy-playtime__faq-question:hover {
      background-color: #555555;
    }

    .page-who-is-the-strongest-in-poppy-playtime__faq-question-text {
      margin: 0;
      font-size: 1.2em;
      color: var(--light-text);
      pointer-events: none; /* Prevent text from blocking click */
      flex-grow: 1;
      text-align: left;
    }

    .page-who-is-the-strongest-in-poppy-playtime__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--primary-color);
      margin-left: 20px;
      pointer-events: none; /* Prevent icon from blocking click */
      transition: transform 0.3s ease;
    }

    .page-who-is-the-strongest-in-poppy-playtime__faq-item.active .page-who-is-the-strongest-in-poppy-playtime__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or similar on active */
    }

    .page-who-is-the-strongest-in-poppy-playtime__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #3a3a3a;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      text-align: left;
      color: var(--accent-color);
      font-size: 1em;
    }

    .page-who-is-the-strongest-in-poppy-playtime__faq-item.active .page-who-is-the-strongest-in-poppy-playtime__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Blog Section */
    .page-who-is-the-strongest-in-poppy-playtime__blog-section {
      background-color: #1a1a1a;
      padding: 80px 20px;
    }

    .page-who-is-the-strongest-in-poppy-playtime__blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-who-is-the-strongest-in-poppy-playtime__blog-card {
      background-color: #333333;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .page-who-is-the-strongest-in-poppy-playtime__blog-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 3px solid var(--primary-color);
      border-radius: 0;
    }

    .page-who-is-the-strongest-in-poppy-playtime__blog-card-title {
      font-size: 1.4em;
      margin: 20px 15px 10px;
      color: var(--primary-color);
    }

    .page-who-is-the-strongest-in-poppy-playtime__blog-card-excerpt {
      font-size: 0.9em;
      color: var(--accent-color);
      padding: 0 15px;
      flex-grow: 1;
    }

    .page-who-is-the-strongest-in-poppy-playtime__blog-card-link {
      margin: 20px 15px;
      align-self: flex-start; /* Align button to the left */
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-who-is-the-strongest-in-poppy-playtime h1 {
        font-size: 2.5em;
      }
      .page-who-is-the-strongest-in-poppy-playtime h2 {
        font-size: 2em;
      }
      .page-who-is-the-strongest-in-poppy-playtime__intro-feature-item {
        flex: 1 1 calc(50% - 20px); /* 2 items per row */
        max-width: calc(50% - 20px);
      }
    }

    @media (max-width: 768px) {
      .page-who-is-the-strongest-in-poppy-playtime section {
        padding: 40px 15px;
      }
      .page-who-is-the-strongest-in-poppy-playtime h1 {
        font-size: 2em;
      }
      .page-who-is-the-strongest-in-poppy-playtime h2 {
        font-size: 1.8em;
      }
      .page-who-is-the-strongest-in-poppy-playtime p {
        font-size: 1em;
      }
      .page-who-is-the-strongest-in-poppy-playtime__hero-section {
        min-height: 400px;
      }
      .page-who-is-the-strongest-in-poppy-playtime__hero-subtitle {
        font-size: 1.1em;
      }
      .page-who-is-the-strongest-in-poppy-playtime__hero-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }

      /* List item responsive - applies to intro features, games, promos, security grid */
      .page-who-is-the-strongest-in-poppy-playtime__intro-feature-item,
      .page-who-is-the-strongest-in-poppy-playtime__game-card,
      .page-who-is-the-strongest-in-poppy-playtime__promo-card,
      .page-who-is-the-strongest-in-poppy-playtime__security-item,
      .page-who-is-the-strongest-in-poppy-playtime__blog-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-who-is-the-strongest-in-poppy-playtime__intro-features,
      .page-who-is-the-strongest-in-poppy-playtime__game-categories,
      .page-who-is-the-strongest-in-poppy-playtime__promo-cards,
      .page-who-is-the-strongest-in-poppy-playtime__security-grid,
      .page-who-is-the-strongest-in-poppy-playtime__blog-grid {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important; /* Remove padding for parent grid/flex containers */
        margin-left: 0 !important;
        margin-right: 0 !important;
        display: block; /* Force single column layout */
      }
      
      .page-who-is-the-strongest-in-poppy-playtime__intro-feature-item,
      .page-who-is-the-strongest-in-poppy-playtime__game-card,
      .page-who-is-the-strongest-in-poppy-playtime__promo-card,
      .page-who-is-the-strongest-in-poppy-playtime__security-item,
      .page-who-is-the-strongest-in-poppy-playtime__blog-card {
        margin-bottom: 20px; /* Add some vertical spacing */
      }

      .page-who-is-the-strongest-in-poppy-playtime__quick-access-buttons {
        flex-direction: column;
      }

      .page-who-is-the-strongest-in-poppy-playtime__quick-access-button {
        width: 100%;
      }

      .page-who-is-the-strongest-in-poppy-playtime__faq-question,
      .page-who-is-the-strongest-in-poppy-playtime__faq-answer {
        padding-left: 15px;
        padding-right: 15px;
      }
      .page-who-is-the-strongest-in-poppy-playtime__faq-question-text {
        font-size: 1.1em;
      }
      .page-who-is-the-strongest-in-poppy-playtime__faq-toggle {
        font-size: 1.5em;
      }
      .page-who-is-the-strongest-in-poppy-playtime__faq-item.active .page-who-is-the-strongest-in-poppy-playtime__faq-answer {
        padding: 15px !important;
      }
      /* Ensure text wrapping */
      .page-who-is-the-strongest-in-poppy-playtime p,
      .page-who-is-the-strongest-in-poppy-playtime__intro-feature-description,
      .page-who-is-the-strongest-in-poppy-playtime__game-card-text,
      .page-who-is-the-strongest-in-poppy-playtime__promo-card-text,
      .page-who-is-the-strongest-in-poppy-playtime__security-item-text,
      .page-who-is-the-strongest-in-poppy-playtime__faq-answer p,
      .page-who-is-the-strongest-in-poppy-playtime__blog-card-excerpt {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }