@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');:root {    --primary-color: #e50914; /* A dark red, inspired by horror/danger */    --secondary-color: #333;    --text-light: #f0f0f0;    --text-dark: #1a1a1a;    --background-dark: #121212;    --background-light-gray: #1e1e1e;    --border-color: #444;    --accent-color: #ffcc00; /* For highlights */    --transition-speed: 0.3s;}body {    font-family: 'Roboto', sans-serif;    line-height: 1.6;    color: var(--text-light);    background-color: var(--background-dark);    margin: 0;    padding: 0;}.page-poppy-playtime-chapter-2-story-explained__container {    max-width: 1200px;    margin: 0 auto;    padding: 0 20px;}.page-poppy-playtime-chapter-2-story-explained__hero-section {    position: relative;    padding: 100px 0 50px;    text-align: center;    overflow: hidden;    background-color: var(--background-dark);    display: flex;    flex-direction: column;    justify-content: center;    align-items: center;    min-height: 500px;    box-sizing: border-box;}.page-poppy-playtime-chapter-2-story-explained__hero-image-wrapper {    position: absolute;    top: 0;    left: 0;    width: 100%;    height: 100%;    z-index: 0;    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8));}.page-poppy-playtime-chapter-2-story-explained__hero-image-wrapper img {    width: 100%;    height: 100%;    object-fit: cover;    opacity: 0.3;}.page-poppy-playtime-chapter-2-story-explained__hero-content {    position: relative;    z-index: 1;    max-width: 800px;    margin: 0 auto;    padding: 20px;}.page-poppy-playtime-chapter-2-story-explained__hero-title {    font-size: 3.5em;    margin-bottom: 20px;    color: var(--text-light);    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);    word-wrap: break-word;    overflow-wrap: break-word;}.page-poppy-playtime-chapter-2-story-explained__hero-description {    font-size: 1.2em;    color: var(--text-light);    max-width: 900px;    margin: 0 auto 30px;    word-wrap: break-word;    overflow-wrap: break-word;}.page-poppy-playtime-chapter-2-story-explained__overview-section,.page-poppy-playtime-chapter-2-story-explained__character-section,.page-poppy-playtime-chapter-2-story-explained__lore-section,.page-poppy-playtime-chapter-2-story-explained__faq-section,.page-poppy-playtime-chapter-2-story-explained__cta-section {    padding: 60px 0;    background-color: var(--background-dark);    border-bottom: 1px solid var(--border-color);}.page-poppy-playtime-chapter-2-story-explained__overview-section:last-of-type,.page-poppy-playtime-chapter-2-story-explained__character-section:last-of-type,.page-poppy-playtime-chapter-2-story-explained__lore-section:last-of-type,.page-poppy-playtime-chapter-2-story-explained__faq-section:last-of-type,.page-poppy-playtime-chapter-2-story-explained__cta-section:last-of-type {    border-bottom: none;}.page-poppy-playtime-chapter-2-story-explained__section-title {    font-size: 2.5em;    color: var(--primary-color);    text-align: center;    margin-bottom: 40px;    word-wrap: break-word;    overflow-wrap: break-word;}.page-poppy-playtime-chapter-2-story-explained__paragraph {    font-size: 1.1em;    margin-bottom: 20px;    color: var(--text-light);    word-wrap: break-word;    overflow-wrap: break-word;}.page-poppy-playtime-chapter-2-story-explained__container img {    max-width: 100%;    height: auto;    display: block;    margin: 40px auto;    border-radius: 8px;    box-shadow: 0 5px 15px rgba(0,0,0,0.5);    box-sizing: border-box;}/* FAQ Section */.page-poppy-playtime-chapter-2-story-explained__faq-section {    background-color: var(--background-light-gray);}.page-poppy-playtime-chapter-2-story-explained__faq-item {    background-color: var(--secondary-color);    margin-bottom: 15px;    border-radius: 8px;    overflow: hidden;    border: 1px solid var(--border-color);}.page-poppy-playtime-chapter-2-story-explained__faq-question {    display: flex;    justify-content: space-between;    align-items: center;    padding: 20px 25px;    cursor: pointer;    user-select: none;    background-color: var(--secondary-color);    transition: background-color var(--transition-speed) ease;}.page-poppy-playtime-chapter-2-story-explained__faq-question:hover {    background-color: #444;}.page-poppy-playtime-chapter-2-story-explained__faq-question h3 {    margin: 0;    font-size: 1.2em;    color: var(--text-light);    pointer-events: none;    word-wrap: break-word;    overflow-wrap: break-word;    flex-grow: 1;}.page-poppy-playtime-chapter-2-story-explained__faq-toggle {    font-size: 1.8em;    font-weight: bold;    color: var(--primary-color);    transition: transform var(--transition-speed) ease;    pointer-events: none;    margin-left: 15px;}.page-poppy-playtime-chapter-2-story-explained__faq-item.active .page-poppy-playtime-chapter-2-story-explained__faq-toggle {    transform: rotate(45deg);    color: var(--accent-color);}.page-poppy-playtime-chapter-2-story-explained__faq-answer {    max-height: 0;    overflow: hidden;    padding: 0 25px;    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;    background-color: #2a2a2a;    opacity: 0;}.page-poppy-playtime-chapter-2-story-explained__faq-item.active .page-poppy-playtime-chapter-2-story-explained__faq-answer {    max-height: 2000px !important;    padding: 20px 25px !important;    opacity: 1;}.page-poppy-playtime-chapter-2-story-explained__faq-answer p {    margin: 0;    color: var(--text-light);    font-size: 1em;    word-wrap: break-word;    overflow-wrap: break-word;}/* Call to Action Section */.page-poppy-playtime-chapter-2-story-explained__cta-section {    text-align: center;    background-color: var(--background-dark);    padding: 80px 0;}.page-poppy-playtime-chapter-2-story_explained__cta-content {    background-color: var(--secondary-color);    padding: 40px;    border-radius: 10px;    box-shadow: 0 5px 20px rgba(0,0,0,0.6);    max-width: 800px;}.page-poppy-playtime-chapter-2-story-explained__cta-section .page-poppy-playtime-chapter-2-story-explained__section-title {    color: var(--accent-color);    margin-bottom: 20px;}.page-poppy-playtime-chapter-2-story_explained__paragraph {    font-size: 1.1em;    margin-bottom: 30px;    color: var(--text-light);}.page-poppy-playtime-chapter-2-story-explained__cta-buttons {    display: flex;    justify-content: center;    gap: 20px;    flex-wrap: wrap;}.page-poppy-playtime-chapter-2-story-explained__button {    display: inline-block;    background-color: var(--primary-color);    color: #fff;    padding: 15px 30px;    border-radius: 5px;    text-decoration: none;    font-weight: bold;    font-size: 1.1em;    transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease;    box-shadow: 0 4px 10px rgba(0,0,0,0.3);}.page-poppy-playtime-chapter-2-story-explained__button:hover {    background-color: #d40812;    transform: translateY(-2px);}.page-poppy-playtime-chapter-2-story-explained__button--secondary {    background-color: #555;}.page-poppy-playtime-chapter-2-story-explained__button--secondary:hover {    background-color: #666;}/* Floating Buttons */.page-poppy-playtime-chapter-2-story-explained__floating-buttons {    position: fixed;    bottom: 20px;    right: 20px;    display: flex;    flex-direction: column;    gap: 10px;    z-index: 1000;}.page-poppy-playtime-chapter-2-story-explained__floating-button {    display: flex;    align-items: center;    justify-content: center;    width: 60px;    height: 60px;    border-radius: 50%;    background-color: var(--primary-color);    color: #fff;    font-size: 0.9em;    text-align: center;    text-decoration: none;    box-shadow: 0 4px 15px rgba(0,0,0,0.4);    transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease;    word-wrap: break-word;    overflow-wrap: break-word;    line-height: 1.2;    padding: 5px;    box-sizing: border-box;}.page-poppy-playtime-chapter-2-story-explained__floating-button:hover {    background-color: #d40812;    transform: translateY(-3px);}.page-poppy-playtime-chapter-2-story-explained__floating-button--login {    background-color: #007bff;}.page-poppy-playtime-chapter-2-story-explained__floating-button--login:hover {    background-color: #0056b3;}/* Responsive adjustments */@media (max-width: 1024px) {    .page-poppy-playtime-chapter-2-story-explained__hero-title {        font-size: 2.8em;    }    .page-poppy-playtime-chapter-2-story-explained__section-title {        font-size: 2em;    }}@media (max-width: 768px) {    .page-poppy-playtime-chapter-2-story-explained__hero-section {        padding: 80px 0 30px;        min-height: 400px;    }    .page-poppy-playtime-chapter-2-story-explained__hero-title {        font-size: 2.2em;    }    .page-poppy-playtime-chapter-2-story-explained__hero-description {        font-size: 1em;    }    .page-poppy-playtime-chapter-2-story-explained__section-title {        font-size: 1.8em;    }    .page-poppy-playtime-chapter-2-story-explained__paragraph {        font-size: 1em;    }    .page-poppy-playtime-chapter-2-story-explained__container {        padding: 0 15px;    }    .page-poppy-playtime-chapter-2-story-explained__faq-question {        padding: 15px 20px;    }    .page-poppy-playtime-chapter-2-story-explained__faq-question h3 {        font-size: 1.1em;    }    .page-poppy-playtime-chapter-2-story-explained__faq-answer {        padding: 0 20px;    }    .page-poppy-playtime-chapter-2-story-explained__faq-item.active .page-poppy-playtime-chapter-2-story-explained__faq-answer {        padding: 15px 20px !important;    }    .page-poppy-playtime-chapter-2-story-explained__cta-content {        padding: 30px 20px;    }    .page-poppy-playtime-chapter-2-story-explained__cta-buttons {        flex-direction: column;        gap: 15px;    }    .page-poppy-playtime-chapter-2-story-explained__button {        width: 100%;        max-width: 300px;        box-sizing: border-box;        margin: 0 auto;    }    .page-poppy-playtime-chapter-2-story-explained__floating-buttons {        bottom: 15px;        right: 15px;        gap: 8px;    }    .page-poppy-playtime-chapter-2-story-explained__floating-button {        width: 50px;        height: 50px;        font-size: 0.8em;    }}.page-poppy-playtime-chapter-2-story-explained__paragraph {    word-wrap: break-word !important;    overflow-wrap: break-word !important;}.page-poppy-playtime-chapter-2-story-explained__list-item {    box-sizing: border-box;    word-wrap: break-word !important;    overflow-wrap: break-word !important;}@media (max-width: 768px) {    .page-poppy-playtime-chapter-2-story-explained__list-item {        width: 100% !important;        max-width: 100% !important;        box-sizing: border-box !important;        margin-left: 0 !important;        margin-right: 0 !important;        padding-left: 15px !important;        padding-right: 15px !important;    }    .page-poppy-playtime-chapter-2-story-explained__list-container {        width: 100% !important;        max-width: 100% !important;        box-sizing: border-box !important;        padding: 0 !important;        margin-left: 0 !important;        margin-right: 0 !important;    }}@media (max-width: 480px) {    .page-poppy-playtime-chapter-2-story-explained__hero-title {        font-size: 1.8em;    }    .page-poppy-playtime-chapter-2-story-explained__section-title {        font-size: 1.5em;    }    .page-poppy-playtime-chapter-2-story-explained__faq-question h3 {        font-size: 1em;    }}