:root {        --primary-color: #FFD700; /* Gold/Yellow */        --secondary-color: #00BFFF; /* Deep Sky Blue */        --dark-background: #1a1a2e; /* Dark purple-blue */        --light-text: #e0e0e0;        --accent-color: #E94560; /* Reddish-pink */        --soft-gray: #ccc;        --header-offset: 0px; /* Default, will be set by shared.css */    }    /* Base styles for the page content, ensuring it respects the header offset */    .page-poppy-playtime-chapter-5-story {        background-color: var(--dark-background);        color: var(--light-text);        font-family: 'Arial', sans-serif;        line-height: 1.6;        padding-top: var(--header-offset, 10px); /* Fallback for body padding */    }    .page-poppy-playtime-chapter-5-story__container {        max-width: 1200px;        margin: 0 auto;        padding: 20px;    }    .page-poppy-playtime-chapter-5-story__section {        padding: 60px 20px;        margin-bottom: 30px;        border-radius: 10px;        background-color: rgba(0, 0, 0, 0.3);        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);    }    .page-poppy-playtime-chapter-5-story__section--alt {        background-color: rgba(0, 0, 0, 0.4);    }    .page-poppy-playtime-chapter-5-story__title {        font-size: 2.8em;        color: var(--primary-color);        text-align: center;        margin-bottom: 20px;        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);    }    .page-poppy-playtime-chapter-5-story__subtitle {        font-size: 1.8em;        color: var(--secondary-color);        text-align: center;        margin-bottom: 40px;    }    .page-poppy-playtime-chapter-5-story__text {        font-size: 1.1em;        margin-bottom: 15px;        color: var(--soft-gray);    }    .page-poppy-playtime-chapter-5-story__button {        display: inline-block;        background-color: var(--accent-color);        color: #ffffff;        padding: 15px 30px;        border-radius: 5px;        text-decoration: none;        font-weight: bold;        transition: background-color 0.3s ease, transform 0.3s ease;        text-align: center;        border: none;        cursor: pointer;    }    .page-poppy-playtime-chapter-5-story__button:hover {        background-color: #C73850;        transform: translateY(-2px);    }    /* Hero Section */    .page-poppy-playtime-chapter-5-story__hero-section {        position: relative;        text-align: center;        color: #ffffff;        padding: 100px 20px;        min-height: 500px;        display: flex;        flex-direction: column;        justify-content: center;        align-items: center;        overflow: hidden;        border-radius: 0;        background-color: transparent; /* Background handled by image */    }    .page-poppy-playtime-chapter-5-story__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-poppy-playtime-chapter-5-story__hero-content {        position: relative;        z-index: 1;        max-width: 900px;        margin: 0 auto;    }    .page-poppy-playtime-chapter-5-story__hero-title {        font-size: 3.5em;        margin-bottom: 20px;        color: var(--primary-color);        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);    }    .page-poppy-playtime-chapter-5-story__hero-description {        font-size: 1.4em;        margin-bottom: 40px;        color: var(--light-text);        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);    }    /* General Content Sections */    .page-poppy-playtime-chapter-5-story__content-grid {        display: grid;        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));        gap: 30px;        margin-top: 40px;    }    .page-poppy-playtime-chapter-5-story__card {        background-color: rgba(255, 255, 255, 0.08);        border-radius: 8px;        padding: 25px;        text-align: center;        transition: transform 0.3s ease, box-shadow 0.3s ease;        display: flex;        flex-direction: column;        justify-content: space-between;        align-items: center;        min-height: 250px;    }    .page-poppy-playtime-chapter-5-story__card:hover {        transform: translateY(-5px);        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);    }    .page-poppy-playtime-chapter-5-story__card-image {        max-width: 100%;        height: auto;        border-radius: 5px;        margin-bottom: 15px;        object-fit: cover;        max-height: 200px;    }    .page-poppy-playtime-chapter-5-story__card-title {        color: var(--primary-color);        font-size: 1.4em;        margin-bottom: 10px;    }    .page-poppy-playtime-chapter-5-story__card-description {        color: var(--soft-gray);        font-size: 0.95em;        margin-bottom: 20px;        flex-grow: 1;    }    .page-poppy-playtime-chapter-5-story__card .page-poppy-playtime-chapter-5-story__button {        padding: 10px 20px;        font-size: 0.9em;    }    /* Quick Access Links */    .page-poppy-playtime-chapter-5-story__quick-access-list {        display: flex;        flex-wrap: wrap;        justify-content: center;        gap: 20px;        list-style: none;        padding: 0;        margin-top: 30px;    }    .page-poppy-playtime-chapter-5-story__quick-access-item {        flex: 1 1 auto;        min-width: 220px;        max-width: 280px;        text-align: center;    }    .page-poppy-playtime-chapter-5-story__quick-access-link {        display: block;        background-color: var(--secondary-color);        color: #ffffff;        padding: 15px 20px;        border-radius: 5px;        text-decoration: none;        font-weight: bold;        transition: background-color 0.3s ease, transform 0.3s ease;    }    .page-poppy-playtime-chapter-5-story__quick-access-link:hover {        background-color: #008CBA;        transform: translateY(-2px);    }    /* FAQ Section */    .page-poppy-playtime-chapter-5-story__faq-list {        list-style: none;        padding: 0;        margin-top: 30px;    }    .page-poppy-playtime-chapter-5-story__faq-item {        background-color: rgba(255, 255, 255, 0.05);        border-radius: 8px;        margin-bottom: 15px;        overflow: hidden;        border: 1px solid rgba(255, 255, 255, 0.1);    }    .page-poppy-playtime-chapter-5-story__faq-question {        display: flex;        justify-content: space-between;        align-items: center;        padding: 18px 20px;        cursor: pointer;        background-color: rgba(255, 255, 255, 0.08);        transition: background-color 0.3s ease;        user-select: none;    }    .page-poppy-playtime-chapter-5-story__faq-question:hover {        background-color: rgba(255, 255, 255, 0.12);    }    .page-poppy-playtime-chapter-5-story__faq-question h3 {        margin: 0;        color: var(--primary-color);        font-size: 1.2em;        pointer-events: none; /* Prevent text from blocking click event */    }    .page-poppy-playtime-chapter-5-story__faq-toggle {        font-size: 1.8em;        font-weight: bold;        color: var(--secondary-color);        transition: transform 0.3s ease;        pointer-events: none; /* Prevent icon from blocking click event */    }    .page-poppy-playtime-chapter-5-story__faq-item.active .page-poppy-playtime-chapter-5-story__faq-toggle {        transform: rotate(45deg); /* Change '+' to 'x' or similar effect */    }    .page-poppy-playtime-chapter-5-story__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(--soft-gray);        font-size: 1em;    }    .page-poppy-playtime-chapter-5-story__faq-item.active .page-poppy-playtime-chapter-5-story__faq-answer {        max-height: 2000px !important; /* Sufficiently large value */        padding: 20px !important;        opacity: 1;    }    /* Blog Section */    .page-poppy-playtime-chapter-5-story__blog-grid {        display: grid;        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));        gap: 30px;        margin-top: 40px;    }    .page-poppy-playtime-chapter-5-story__blog-card {        background-color: rgba(255, 255, 255, 0.08);        border-radius: 8px;        overflow: hidden;        transition: transform 0.3s ease, box-shadow 0.3s ease;        display: flex;        flex-direction: column;    }    .page-poppy-playtime-chapter-5-story__blog-card:hover {        transform: translateY(-5px);        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);    }    .page-poppy-playtime-chapter-5-story__blog-image {        width: 100%;        height: 200px;        object-fit: cover;    }    .page-poppy-playtime-chapter-5-story__blog-content {        padding: 20px;        flex-grow: 1;        display: flex;        flex-direction: column;    }    .page-poppy-playtime-chapter-5-story__blog-title {        font-size: 1.3em;        color: var(--primary-color);        margin-bottom: 10px;        line-height: 1.3;    }    .page-poppy-playtime-chapter-5-story__blog-title a {        color: inherit;        text-decoration: none;    }    .page-poppy-playtime-chapter-5-story__blog-title a:hover {        text-decoration: underline;    }    .page-poppy-playtime-chapter-5-story__blog-excerpt {        color: var(--soft-gray);        font-size: 0.9em;        margin-bottom: 15px;        flex-grow: 1;    }    .page-poppy-playtime-chapter-5-story__blog-date {        font-size: 0.85em;        color: #888;        text-align: right;    }    /* Responsive Design */    @media (max-width: 768px) {        .page-poppy-playtime-chapter-5-story__hero-title {            font-size: 2.5em;        }        .page-poppy-playtime-chapter-5-story__hero-description {            font-size: 1.1em;        }        .page-poppy-playtime-chapter-5-story__title {            font-size: 2em;        }        .page-poppy-playtime-chapter-5-story__subtitle {            font-size: 1.5em;        }        .page-poppy-playtime-chapter-5-story__section {            padding: 40px 15px;        }        .page-poppy-playtime-chapter-5-story__content-grid,        .page-poppy-playtime-chapter-5-story__blog-grid {            grid-template-columns: 1fr;        }        .page-poppy-playtime-chapter-5-story__quick-access-list {            flex-direction: column;            align-items: center;        }        .page-poppy-playtime-chapter-5-story__quick-access-item {            width: 100% !important;            max-width: 100% !important;            box-sizing: border-box !important;            margin-left: 0 !important;            margin-right: 0 !important;        }        /* List item responsive requirements */        .page-poppy-playtime-chapter-5-story__faq-list,        .page-poppy-playtime-chapter-5-story__quick-access-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-poppy-playtime-chapter-5-story__faq-item,        .page-poppy-playtime-chapter-5-story__blog-card,        .page-poppy-playtime-chapter-5-story__card {            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;        }        .page-poppy-playtime-chapter-5-story__faq-answer {            padding: 15px !important;        }        .page-poppy-playtime-chapter-5-story__faq-question {            padding: 15px;        }        .page-poppy-playtime-chapter-5-story__faq-question h3 {            font-size: 1.1em;        }        /* Image responsive requirements */        .page-poppy-playtime-chapter-5-story__hero-image,        .page-poppy-playtime-chapter-5-story__card-image,        .page-poppy-playtime-chapter-5-story__blog-image {            max-width: 100% !important;            height: auto !important;            box-sizing: border-box !important;        }    }    @media (max-width: 480px) {        .page-poppy-playtime-chapter-5-story__hero-title {            font-size: 2em;        }        .page-poppy-playtime-chapter-5-story__hero-description {            font-size: 1em;        }        .page-poppy-playtime-chapter-5-story__button {            padding: 12px 25px;            font-size: 0.9em;        }    }