:root {
        --primary-color: #FFD700; /* Gold */
        --secondary-color: #8B0000; /* Dark Red */
        --dark-bg: #1A1A1A;
        --light-text: #FFFFFF;
        --gray-text: #CCCCCC;
        --border-color: #333333;
        --button-hover-bg: #FFA500;
        --header-offset: 122px; /* Default value, shared.css should define this */
    }

    body {
        font-family: 'Arial', sans-serif;
        background-color: var(--dark-bg);
        color: var(--light-text);
        margin: 0;
        padding-top: var(--header-offset); /* Ensure content is below fixed header */
        line-height: 1.6;
    }

    .page-is-there-chapter-2-of-poppy-playtime {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .page-is-there-chapter-2-of-poppy-playtime__section {
        padding: 40px 0;
        margin-bottom: 20px;
        border-bottom: 1px solid var(--border-color);
    }

    .page-is-there-chapter-2-of-poppy-playtime__section:last-of-type {
        border-bottom: none;
    }

    .page-is-there-chapter-2-of-poppy-playtime__heading {
        color: var(--primary-color);
        text-align: center;
        margin-bottom: 30px;
        font-size: 2.5em;
        font-weight: bold;
        text-transform: uppercase;
    }

    .page-is-there-chapter-2-of-poppy-playtime__subheading {
        color: var(--light-text);
        text-align: center;
        margin-bottom: 20px;
        font-size: 1.8em;
    }

    .page-is-there-chapter-2-of-poppy-playtime__paragraph {
        font-size: 1.1em;
        line-height: 1.8;
        margin-bottom: 15px;
        color: var(--gray-text);
    }

    .page-is-there-chapter-2-of-poppy-playtime__button {
        display: inline-block;
        background-color: var(--secondary-color);
        color: var(--light-text);
        padding: 15px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-align: center;
        white-space: nowrap;
        box-sizing: border-box;
        border: none;
        cursor: pointer;
        font-size: 1.1em;
    }

    .page-is-there-chapter-2-of-poppy-playtime__button:hover {
        background-color: var(--button-hover-bg);
        transform: translateY(-2px);
    }

    /* HERO Section */
    .page-is-there-chapter-2-of-poppy-playtime__hero-section {
        position: relative;
        width: 100%;
        height: 600px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-top: 10px; /* Small decorative padding, body handles main offset */
        box-sizing: border-box;
    }

    .page-is-there-chapter-2-of-poppy-playtime__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
        filter: brightness(0.6);
    }

    .page-is-there-chapter-2-of-poppy-playtime__hero-content {
        z-index: 1;
        max-width: 800px;
        padding: 20px;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 10px;
    }

    .page-is-there-chapter-2-of-poppy-playtime__hero-title {
        font-size: 3.5em;
        color: var(--primary-color);
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .page-is-there-chapter-2-of-poppy-playtime__hero-description {
        font-size: 1.3em;
        color: var(--light-text);
        margin-bottom: 30px;
    }

    /* Payment Providers / Game Logos */
    .page-is-there-chapter-2-of-poppy-playtime__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: 20px 0;
    }
    .page-is-there-chapter-2-of-poppy-playtime__payment-logo {
        flex: 0 0 auto;
        width: 80px;
        height: 80px;
        max-width: 80px;
        max-height: 80px;
        box-sizing: border-box;
    }
    .page-is-there-chapter-2-of-poppy-playtime__payment-logo img {
        display: block;
        width: 80px !important;
        height: 80px !important;
        max-width: 80px !important;
        max-height: 80px !important;
        object-fit: contain;
    }

    /* Quick Access Links */
    .page-is-there-chapter-2-of-poppy-playtime__quick-access-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }

    .page-is-there-chapter-2-of-poppy-playtime__quick-access-item {
        background-color: #2A2A2A;
        padding: 25px;
        border-radius: 8px;
        text-align: center;
        border: 1px solid var(--border-color);
        transition: transform 0.3s ease;
    }

    .page-is-there-chapter-2-of-poppy-playtime__quick-access-item:hover {
        transform: translateY(-5px);
    }

    .page-is-there-chapter-2-of-poppy-playtime__quick-access-link {
        display: block;
        font-size: 1.2em;
        color: var(--primary-color);
        text-decoration: none;
        margin-bottom: 15px;
    }

    /* Game Categories */
    .page-is-there-chapter-2-of-poppy-playtime__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .page-is-there-chapter-2-of-poppy-playtime__game-card {
        background-color: #2A2A2A;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease;
        border: 1px solid var(--border-color);
    }

    .page-is-there-chapter-2-of-poppy-playtime__game-card:hover {
        transform: translateY(-8px);
    }

    .page-is-there-chapter-2-of-poppy-playtime__game-image-container {
        width: 100%;
        height: 200px;
        overflow: hidden;
    }

    .page-is-there-chapter-2-of-poppy-playtime__game-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .page-is-there-chapter-2-of-poppy-playtime__game-content {
        padding: 20px;
        text-align: center;
    }

    .page-is-there-chapter-2-of-poppy-playtime__game-title {
        font-size: 1.5em;
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    .page-is-there-chapter-2-of-poppy-playtime__game-description {
        font-size: 0.95em;
        color: var(--gray-text);
        margin-bottom: 20px;
    }

    /* Promotions */
    .page-is-there-chapter-2-of-poppy-playtime__promo-list {
        list-style: none;
        padding: 0;
        margin-top: 30px;
    }

    .page-is-there-chapter-2-of-poppy-playtime__promo-item {
        background-color: #2A2A2A;
        margin-bottom: 15px;
        padding: 20px;
        border-radius: 8px;
        border: 1px solid var(--border-color);
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .page-is-there-chapter-2-of-poppy-playtime__promo-icon {
        flex-shrink: 0;
        width: 60px;
        height: 60px;
        object-fit: contain;
    }

    .page-is-there-chapter-2-of-poppy-playtime__promo-details {
        flex-grow: 1;
    }

    .page-is-there-chapter-2-of-poppy-playtime__promo-title {
        font-size: 1.3em;
        color: var(--primary-color);
        margin-bottom: 5px;
    }

    .page-is-there-chapter-2-of-poppy-playtime__promo-description {
        font-size: 1em;
        color: var(--gray-text);
    }

    /* FAQ Section */
    .page-is-there-chapter-2-of-poppy-playtime__faq-container {
        margin-top: 30px;
    }

    .page-is-there-chapter-2-of-poppy-playtime__faq-item {
        background-color: #2A2A2A;
        margin-bottom: 10px;
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid var(--border-color);
    }

    .page-is-there-chapter-2-of-poppy-playtime__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        user-select: none;
        font-size: 1.1em;
        color: var(--light-text);
        background-color: #333333;
        transition: background-color 0.3s ease;
    }

    .page-is-there-chapter-2-of-poppy-playtime__faq-question:hover {
        background-color: #444444;
    }

    .page-is-there-chapter-2-of-poppy-playtime__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        color: var(--primary-color);
        pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-is-there-chapter-2-of-poppy-playtime__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: var(--primary-color);
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-is-there-chapter-2-of-poppy-playtime__faq-item.active .page-is-there-chapter-2-of-poppy-playtime__faq-toggle {
        transform: rotate(45deg); /* Plus to X/Minus */
    }

    .page-is-there-chapter-2-of-poppy-playtime__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 15px;
        opacity: 0;
        color: var(--gray-text);
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

    .page-is-there-chapter-2-of-poppy-playtime__faq-item.active .page-is-there-chapter-2-of-poppy-playtime__faq-answer {
        max-height: 2000px !important;
        padding: 20px 15px !important;
        opacity: 1;
    }

    /* Blog Section */
    .page-is-there-chapter-2-of-poppy-playtime__blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .page-is-there-chapter-2-of-poppy-playtime__blog-card {
        background-color: #2A2A2A;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease;
        border: 1px solid var(--border-color);
    }

    .page-is-there-chapter-2-of-poppy-playtime__blog-card:hover {
        transform: translateY(-8px);
    }

    .page-is-there-chapter-2-of-poppy-playtime__blog-image-container {
        width: 100%;
        height: 180px;
        overflow: hidden;
    }

    .page-is-there-chapter-2-of-poppy-playtime__blog-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .page-is-there-chapter-2-of-poppy-playtime__blog-content {
        padding: 20px;
    }

    .page-is-there-chapter-2-of-poppy-playtime__blog-title {
        font-size: 1.3em;
        color: var(--primary-color);
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .page-is-there-chapter-2-of-poppy-playtime__blog-excerpt {
        font-size: 0.9em;
        color: var(--gray-text);
        margin-bottom: 15px;
    }

    .page-is-there-chapter-2-of-poppy-playtime__blog-date {
        font-size: 0.8em;
        color: #888;
        text-align: right;
        display: block;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .page-is-there-chapter-2-of-poppy-playtime {
            padding: 0 15px;
        }

        .page-is-there-chapter-2-of-poppy-playtime__heading {
            font-size: 2em;
        }

        .page-is-there-chapter-2-of-poppy-playtime__subheading {
            font-size: 1.5em;
        }

        .page-is-there-chapter-2-of-poppy-playtime__hero-section {
            height: 450px;
            padding-top: 5px; /* Adjust for smaller screens */
        }

        .page-is-there-chapter-2-of-poppy-playtime__hero-title {
            font-size: 2.5em;
        }

        .page-is-there-chapter-2-of-poppy-playtime__hero-description {
            font-size: 1.1em;
        }

        .page-is-there-chapter-2-of-poppy-playtime__button {
            padding: 12px 25px;
            font-size: 1em;
        }

        .page-is-there-chapter-2-of-poppy-playtime__payment-providers {
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
        }
        .page-is-there-chapter-2-of-poppy-playtime__payment-logo,
        .page-is-there-chapter-2-of-poppy-playtime__payment-logo img {
            width: 80px !important;
            height: 80px !important;
            max-width: 80px !important;
            max-height: 80px !important;
        }

        /* List item responsive */
        .page-is-there-chapter-2-of-poppy-playtime__quick-access-grid,
        .page-is-there-chapter-2-of-poppy-playtime__game-grid,
        .page-is-there-chapter-2-of-poppy-playtime__blog-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .page-is-there-chapter-2-of-poppy-playtime__quick-access-item,
        .page-is-there-chapter-2-of-poppy-playtime__game-card,
        .page-is-there-chapter-2-of-poppy-playtime__blog-card {
            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-is-there-chapter-2-of-poppy-playtime__promo-list {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-is-there-chapter-2-of-poppy-playtime__promo-item {
            flex-direction: column;
            text-align: center;
            padding: 15px;
        }

        .page-is-there-chapter-2-of-poppy-playtime__promo-icon {
            margin-bottom: 10px;
        }

        .page-is-there-chapter-2-of-poppy-playtime__game-image-container,
        .page-is-there-chapter-2-of-poppy-playtime__blog-image-container {
            height: 150px;
        }

        .page-is-there-chapter-2-of-poppy-playtime__faq-question {
            font-size: 1em;
            padding: 12px 15px;
        }

        .page-is-there-chapter-2-of-poppy-playtime__faq-question h3 {
            font-size: 1em;
        }

        .page-is-there-chapter-2-of-poppy-playtime__faq-answer {
            padding: 15px !important;
        }

        /* Image responsiveness */
        .page-is-there-chapter-2-of-poppy-playtime img:not(.page-is-there-chapter-2-of-poppy-playtime__payment-logo img) {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

        .page-is-there-chapter-2-of-poppy-playtime__game-image-container,
        .page-is-there-chapter-2-of-poppy-playtime__blog-image-container {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }
    }

    @media (max-width: 480px) {
        .page-is-there-chapter-2-of-poppy-playtime__hero-title {
            font-size: 2em;
        }

        .page-is-there-chapter-2-of-poppy-playtime__hero-description {
            font-size: 1em;
        }
    }