:root {
        --primary-color: #007bff; /* A standard blue, can be replaced by brand color */
        --secondary-color: #6c757d; /* A standard grey */
        --accent-color: #ffc107; /* A standard yellow/gold */
        --background-dark: #1a1a1a;
        --text-light: #f8f9fa;
        --text-dark: #343a40;
        --border-color: #444;
        --card-bg: #2a2a2a;
    }
    body {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: var(--text-light);
        background-color: var(--background-dark);
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        padding-top: var(--header-offset, 0px); /* Default to 0 if not set by shared.css */
    }
    .page-poppy-playtime-huggy-wuggy-r34 {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        box-sizing: border-box;
    }
    .page-poppy-playtime-huggy-wuggy-r34__section {
        padding: 40px 20px;
        margin-bottom: 30px;
        background-color: var(--card-bg);
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        box-sizing: border-box;
    }
    .page-poppy-playtime-huggy-wuggy-r34__section--alt {
        background-color: var(--background-dark);
    }
    .page-poppy-playtime-huggy-wuggy-r34__title {
        font-size: 2.5em;
        color: var(--accent-color);
        text-align: center;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    .page-poppy-playtime-huggy-wuggy-r34__subtitle {
        font-size: 1.8em;
        color: var(--text-light);
        text-align: center;
        margin-bottom: 25px;
    }
    .page-poppy-playtime-huggy-wuggy-r34__text {
        font-size: 1.1em;
        color: var(--text-light);
        margin-bottom: 15px;
        text-align: justify;
    }
    .page-poppy-playtime-huggy-wuggy-r34__text--center {
        text-align: center;
    }
    .page-poppy-playtime-huggy-wuggy-r34__button {
        display: inline-block;
        background-color: var(--accent-color);
        color: var(--background-dark);
        padding: 12px 25px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
        font-size: 1em;
    }
    .page-poppy-playtime-huggy-wuggy-r34__button:hover {
        background-color: #e0a800; /* Darker accent */
        transform: translateY(-2px);
    }
    .page-poppy-playtime-huggy-wuggy-r34__hero-section {
        position: relative;
        height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--text-light);
        overflow: hidden;
        margin-bottom: 30px;
        border-radius: 8px;
        margin-top: 10px; /* Small decorative top margin, body padding handles header offset */
    }
    .page-poppy-playtime-huggy-wuggy-r34__hero-section img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }
    .page-poppy-playtime-huggy-wuggy-r34__hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        padding: 20px;
        background: rgba(0, 0, 0, 0.6);
        border-radius: 10px;
    }
    .page-poppy-playtime-huggy-wuggy-r34__hero-content h1 {
        font-size: 3.5em;
        margin-bottom: 15px;
        color: var(--accent-color);
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    }
    .page-poppy-playtime-huggy-wuggy-r34__hero-content p {
        font-size: 1.3em;
        margin-bottom: 30px;
        color: var(--text-light);
    }
    .page-poppy-playtime-huggy-wuggy-r34__quick-access-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }
    .page-poppy-playtime-huggy-wuggy-r34__quick-access-item {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
        text-align: center;
    }
    .page-poppy-playtime-huggy-wuggy-r34__quick-access-item .page-poppy-playtime-huggy-wuggy-r34__button {
        width: 100%;
        box-sizing: border-box;
    }
    .page-poppy-playtime-huggy-wuggy-r34__games-grid,
    .page-poppy-playtime-huggy-wuggy-r34__promotions-grid,
    .page-poppy-playtime-huggy-wuggy-r34__blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }
    .page-poppy-playtime-huggy-wuggy-r34__game-card,
    .page-poppy-playtime-huggy-wuggy-r34__promo-card,
    .page-poppy-playtime-huggy-wuggy-r34__blog-card {
        background-color: var(--background-dark);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 20px;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .page-poppy-playtime-huggy-wuggy-r34__game-card:hover,
    .page-poppy-playtime-huggy-wuggy-r34__promo-card:hover,
    .page-poppy-playtime-huggy-wuggy-r34__blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }
    .page-poppy-playtime-huggy-wuggy-r34__game-card img,
    .page-poppy-playtime-huggy-wuggy-r34__promo-card img,
    .page-poppy-playtime-huggy-wuggy-r34__blog-card img {
        max-width: 100%;
        height: auto;
        border-radius: 5px;
        margin-bottom: 15px;
        object-fit: cover;
    }
    .page-poppy-playtime-huggy-wuggy-r34__game-card .gamelogo {
        width: 80px;
        height: 80px;
        margin: 0 auto 15px auto;
    }
    .page-poppy-playtime-huggy-wuggy-r34__game-card h3,
    .page-poppy-playtime-huggy-wuggy-r34__promo-card h3,
    .page-poppy-playtime-huggy-wuggy-r34__blog-card h3 {
        font-size: 1.4em;
        color: var(--accent-color);
        margin-bottom: 10px;
    }
    .page-poppy-playtime-huggy-wuggy-r34__game-card p,
    .page-poppy-playtime-huggy-wuggy-r34__promo-card p,
    .page-poppy-playtime-huggy-wuggy-r34__blog-card p {
        color: var(--text-light);
        font-size: 0.95em;
        margin-bottom: 20px;
        flex-grow: 1; /* Allow paragraph to take available space */
    }
    .page-poppy-playtime-huggy-wuggy-r34__blog-card .page-poppy-playtime-huggy-wuggy-r34__blog-date {
        font-size: 0.85em;
        color: var(--secondary-color);
        margin-bottom: 10px;
    }

    /* FAQ Styles */
    .page-poppy-playtime-huggy-wuggy-r34__faq-list {
        list-style: none;
        padding: 0;
        margin-top: 30px;
    }
    .page-poppy-playtime-huggy-wuggy-r34__faq-item {
        background-color: var(--background-dark);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-sizing: border-box;
    }
    .page-poppy-playtime-huggy-wuggy-r34__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: var(--card-bg);
        color: var(--text-light);
        cursor: pointer;
        user-select: none;
        transition: background-color 0.3s ease;
        box-sizing: border-box;
    }
    .page-poppy-playtime-huggy-wuggy-r34__faq-question:hover {
        background-color: #3a3a3a;
    }
    .page-poppy-playtime-huggy-wuggy-r34__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: var(--accent-color);
        pointer-events: none; /* Prevent h3 from blocking click event */
    }
    .page-poppy-playtime-huggy-wuggy-r34__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: var(--accent-color);
        pointer-events: none; /* Prevent toggle icon from blocking click event */
        transition: transform 0.3s ease;
    }
    .page-poppy-playtime-huggy-wuggy-r34__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: var(--text-light);
        box-sizing: border-box;
    }
    .page-poppy-playtime-huggy-wuggy-r34__faq-item.active .page-poppy-playtime-huggy-wuggy-r34__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to accommodate content */
        padding: 20px !important;
        opacity: 1;
    }
    .page-poppy-playtime-huggy-wuggy-r34__faq-item.active .page-poppy-playtime-huggy-wuggy-r34__faq-toggle {
        transform: rotate(45deg); /* Plus to X (or minus visual) */
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-poppy-playtime-huggy-wuggy-r34 {
            padding: 10px;
        }
        .page-poppy-playtime-huggy-wuggy-r34__hero-section {
            height: 350px;
        }
        .page-poppy-playtime-huggy-wuggy-r34__hero-content h1 {
            font-size: 2.5em;
        }
        .page-poppy-playtime-huggy-wuggy-r34__hero-content p {
            font-size: 1em;
        }
        .page-poppy-playtime-huggy-wuggy-r34__title {
            font-size: 2em;
        }
        .page-poppy-playtime-huggy-wuggy-r34__subtitle {
            font-size: 1.5em;
        }
        .page-poppy-playtime-huggy-wuggy-r34__text {
            font-size: 1em;
        }
        .page-poppy-playtime-huggy-wuggy-r34__quick-access-item {
            flex: 1 1 100%;
            max-width: 100%;
        }
        .page-poppy-playtime-huggy-wuggy-r34__quick-access-item .page-poppy-playtime-huggy-wuggy-r34__button {
            width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 10px 15px !important;
        }
        .page-poppy-playtime-huggy-wuggy-r34__games-grid,
        .page-poppy-playtime-huggy-wuggy-r34__promotions-grid,
        .page-poppy-playtime-huggy-wuggy-r34__blog-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }
        .page-poppy-playtime-huggy-wuggy-r34__game-card,
        .page-poppy-playtime-huggy-wuggy-r34__promo-card,
        .page-poppy-playtime-huggy-wuggy-r34__blog-card {
            padding: 15px;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-poppy-playtime-huggy-wuggy-r34__game-card img,
        .page-poppy-playtime-huggy-wuggy-r34__promo-card img,
        .page-poppy-playtime-huggy-wuggy-r34__blog-card img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-poppy-playtime-huggy-wuggy-r34__faq-question {
            padding: 12px 15px;
        }
        .page-poppy-playtime-huggy-wuggy-r34__faq-question h3 {
            font-size: 1.1em;
        }
        .page-poppy-playtime-huggy-wuggy-r34__faq-answer {
            padding: 0 15px;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        .page-poppy-playtime-huggy-wuggy-r34__faq-item.active .page-poppy-playtime-huggy-wuggy-r34__faq-answer {
            padding: 15px !important;
        }
    }