/* CSS for page-who-is-the-father-of-kuya-kim */
    :root {
        --primary-color: #FFD700; /* Gold */
        --secondary-color: #00BFFF; /* Deep Sky Blue */
        --accent-color: #FF4500; /* OrangeRed */
        --dark-bg: #1A1A2E; /* Dark Blue-Purple */
        --light-text: #E0E0E0; /* Light Grey */
        --dark-text: #1A1A2E;
        --card-bg: #2C2C4A;
        --button-hover-bg: #FFA000; /* Darker Gold */
        --button-text: #1A1A2E;
    }

    .page-who-is-the-father-of-kuya-kim {
        font-family: 'Arial', sans-serif;
        color: var(--light-text);
        background-color: var(--dark-bg);
        line-height: 1.6;
        padding-top: 10px; /* Small padding for visual separation from header */
    }

    .page-who-is-the-father-of-kuya-kim h1,
    .page-who-is-the-father-of-kuya-kim h2,
    .page-who-is-the-father-of-kuya-kim h3 {
        color: var(--primary-color);
        text-align: center;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .page-who-is-the-father-of-kuya-kim h1 {
        font-size: 2.5em;
    }

    .page-who-is-the-father-of-kuya-kim h2 {
        font-size: 2em;
    }

    .page-who-is-the-father-of-kuya-kim h3 {
        font-size: 1.5em;
    }

    .page-who-is-the-father-of-kuya-kim p {
        text-align: center;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
    }

    .page-who-is-the-father-of-kuya-kim__hero-section {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 500px;
        padding: 60px 20px;
        text-align: center;
        overflow: hidden;
    }

    .page-who-is-the-father-of-kuya-kim__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
        opacity: 0.3;
    }

    .page-who-is-the-father-of-kuya-kim__hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-who-is-the-father-of-kuya-kim__hero-title {
        font-size: 3em;
        color: var(--primary-color);
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-who-is-the-father-of-kuya-kim__hero-subtitle {
        font-size: 1.2em;
        color: var(--light-text);
        margin-bottom: 30px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-who-is-the-father-of-kuya-kim__hero-cta-group {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .page-who-is-the-father-of-kuya-kim__hero-button {
        display: inline-block;
        padding: 15px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
        font-size: 1.1em;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-who-is-the-father-of-kuya-kim__hero-button--primary {
        background-color: var(--primary-color);
        color: var(--button-text);
    }

    .page-who-is-the-father-of-kuya-kim__hero-button--primary:hover {
        background-color: var(--button-hover-bg);
        transform: translateY(-2px);
    }

    .page-who-is-the-father-of-kuya-kim__hero-button--secondary {
        background-color: transparent;
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
    }

    .page-who-is-the-father-of-kuya-kim__hero-button--secondary:hover {
        background-color: rgba(255, 215, 0, 0.1);
        transform: translateY(-2px);
    }

    .page-who-is-the-father-of-kuya-kim__introduction-section,
    .page-who-is-the-father-of-kuya-kim__quick-access-section,
    .page-who-is-the-father-of-kuya-kim__core-games-section,
    .page-who-is-the-father-of-kuya-kim__promotions-section,
    .page-who-is-the-father-of-kuya-kim__security-section,
    .page-who-is-the-father-of-kuya-kim__faq-section,
    .page-who-is-the-father-of-kuya-kim__blog-section {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-who-is-the-father-of-kuya-kim__introduction-title,
    .page-who-is-the-father-of-kuya-kim__quick-access-title,
    .page-who-is-the-father-of-kuya-kim__core-games-title,
    .page-who-is-the-father-of-kuya-kim__promotions-title,
    .page-who-is-the-father-of-kuya-kim__security-title,
    .page-who-is-the-father-of-kuya-kim__faq-title,
    .page-who-is-the-father-of-kuya-kim__blog-title {
        margin-bottom: 30px;
    }

    .page-who-is-the-father-of-kuya-kim__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-who-is-the-father-of-kuya-kim__feature-item {
        background-color: var(--card-bg);
        padding: 30px;
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
    }

    .page-who-is-the-father-of-kuya-kim__feature-item:hover {
        transform: translateY(-5px);
    }

    .page-who-is-the-father-of-kuya-kim__feature-icon {
        width: 200px; /* Minimum 200px */
        height: 200px; /* Minimum 200px */
        margin-bottom: 20px;
        object-fit: contain;
        max-width: 100%;
        height: auto;
    }

    .page-who-is-the-father-of-kuya-kim__feature-title {
        color: var(--primary-color);
        font-size: 1.3em;
        margin-bottom: 10px;
    }

    .page-who-is-the-father-of-kuya-kim__feature-description {
        color: var(--light-text);
        font-size: 0.95em;
        line-height: 1.5;
        text-align: center;
    }

    .page-who-is-the-father-of-kuya-kim__access-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
    }

    .page-who-is-the-father-of-kuya-kim__access-button {
        display: inline-block;
        padding: 14px 28px;
        background-color: var(--secondary-color);
        color: var(--button-text);
        text-decoration: none;
        border-radius: 8px;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        font-size: 1em;
    }

    .page-who-is-the-father-of-kuya-kim__access-button:hover {
        background-color: #009ACD; /* Darker secondary */
        transform: translateY(-2px);
    }

    .page-who-is-the-father-of-kuya-kim__game-categories {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }

    .page-who-is-the-father-of-kuya-kim__game-category {
        background-color: var(--card-bg);
        padding: 20px;
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
    }

    .page-who-is-the-father-of-kuya-kim__game-category:hover {
        transform: translateY(-5px);
    }

    .page-who-is-the-father-of-kuya-kim__game-icon {
        width: 100px; /* gamelogo does not have width/height in placeholder, CSS controls it */
        height: 100px;
        object-fit: contain;
        margin-bottom: 15px;
        max-width: 100%;
        height: auto;
    }

    .page-who-is-the-father-of-kuya-kim__game-name {
        color: var(--primary-color);
        font-size: 1.2em;
        margin-bottom: 8px;
    }

    .page-who-is-the-father-of-kuya-kim__game-info {
        font-size: 0.9em;
        color: var(--light-text);
        text-align: center;
    }

    .page-who-is-the-father-of-kuya-kim__all-games-button {
        display: block;
        width: fit-content;
        margin: 40px auto 0;
        padding: 15px 35px;
        background-color: var(--accent-color);
        color: #FFFFFF;
        text-decoration: none;
        border-radius: 8px;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        font-size: 1.1em;
    }

    .page-who-is-the-father-of-kuya-kim__all-games-button:hover {
        background-color: #CD3700; /* Darker accent */
        transform: translateY(-2px);
    }

    .page-who-is-the-father-of-kuya-kim__promo-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-who-is-the-father-of-kuya-kim__promo-card {
        background-color: var(--card-bg);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: column;
        text-align: center;
        transition: transform 0.3s ease;
    }

    .page-who-is-the-father-of-kuya-kim__promo-card:hover {
        transform: translateY(-5px);
    }

    .page-who-is-the-father-of-kuya-kim__promo-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        max-width: 100%;
    }

    .page-who-is-the-father-of-kuya-kim__promo-card-title {
        font-size: 1.3em;
        color: var(--primary-color);
        margin: 20px 15px 10px;
    }

    .page-who-is-the-father-of-kuya-kim__promo-card-text {
        font-size: 0.95em;
        color: var(--light-text);
        padding: 0 15px 20px;
        flex-grow: 1;
    }

    .page-who-is-the-father-of-kuya-kim__promo-button {
        display: block;
        padding: 12px 25px;
        background-color: var(--primary-color);
        color: var(--button-text);
        text-decoration: none;
        border-radius: 0 0 12px 12px;
        font-weight: bold;
        transition: background-color 0.3s ease;
        font-size: 1em;
    }

    .page-who-is-the-father-of-kuya-kim__promo-button:hover {
        background-color: var(--button-hover-bg);
    }

    .page-who-is-the-father-of-kuya-kim__security-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-who-is-the-father-of-kuya-kim__security-item {
        background-color: var(--card-bg);
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        text-align: center;
    }

    .page-who-is-the-father-of-kuya-kim__security-item-title {
        color: var(--secondary-color);
        font-size: 1.3em;
        margin-bottom: 10px;
    }

    .page-who-is-the-father-of-kuya-kim__security-item-text {
        font-size: 0.95em;
        color: var(--light-text);
        text-align: center;
    }

    .page-who-is-the-father-of-kuya-kim__contact-button {
        display: block;
        width: fit-content;
        margin: 40px auto 0;
        padding: 15px 35px;
        background-color: var(--primary-color);
        color: var(--button-text);
        text-decoration: none;
        border-radius: 8px;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        font-size: 1.1em;
    }

    .page-who-is-the-father-of-kuya-kim__contact-button:hover {
        background-color: var(--button-hover-bg);
        transform: translateY(-2px);
    }

    /* FAQ Section */
    .page-who-is-the-father-of-kuya-kim__faq-items {
        margin-top: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-who-is-the-father-of-kuya-kim__faq-item {
        background-color: var(--card-bg);
        margin-bottom: 15px;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        overflow: hidden;
    }

    .page-who-is-the-father-of-kuya-kim__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: #3A3A5E; /* Slightly lighter card bg for question */
        cursor: pointer;
        user-select: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .page-who-is-the-father-of-kuya-kim__faq-question:hover {
        background-color: #4A4A7E;
    }

    .page-who-is-the-father-of-kuya-kim__faq-question-text {
        margin: 0;
        color: var(--primary-color);
        font-size: 1.1em;
        text-align: left;
        flex-grow: 1;
        pointer-events: none; /* Crucial for click event to register on parent */
    }

    .page-who-is-the-father-of-kuya-kim__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: var(--primary-color);
        margin-left: 15px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Crucial for click event to register on parent */
    }

    .page-who-is-the-father-of-kuya-kim__faq-item.active .page-who-is-the-father-of-kuya-kim__faq-toggle {
        transform: rotate(45deg);
    }

    .page-who-is-the-father-of-kuya-kim__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(--light-text);
        text-align: left;
    }

    .page-who-is-the-father-of-kuya-kim__faq-item.active .page-who-is-the-father-of-kuya-kim__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px 20px !important;
        opacity: 1;
    }

    .page-who-is-the-father-of-kuya-kim__faq-answer p {
        margin: 0;
        text-align: left;
    }

    /* Blog Section */
    .page-who-is-the-father-of-kuya-kim__blog-posts {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-who-is-the-father-of-kuya-kim__blog-card {
        background-color: var(--card-bg);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease;
    }

    .page-who-is-the-father-of-kuya-kim__blog-card:hover {
        transform: translateY(-5px);
    }

    .page-who-is-the-father-of-kuya-kim__blog-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
        max-width: 100%;
    }

    .page-who-is-the-father-of-kuya-kim__blog-content {
        padding: 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .page-who-is-the-father-of-kuya-kim__blog-card-title {
        font-size: 1.3em;
        color: var(--primary-color);
        margin: 0 0 10px;
        text-align: left;
    }

    .page-who-is-the-father-of-kuya-kim__blog-excerpt {
        font-size: 0.95em;
        color: var(--light-text);
        margin-bottom: 15px;
        text-align: left;
        flex-grow: 1;
    }

    .page-who-is-the-father-of-kuya-kim__blog-link {
        display: inline-block;
        padding: 10px 20px;
        background-color: var(--secondary-color);
        color: var(--button-text);
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        transition: background-color 0.3s ease;
        font-size: 0.9em;
        align-self: flex-start;
        margin-top: 10px;
    }

    .page-who-is-the-father-of-kuya-kim__blog-link:hover {
        background-color: #009ACD;
    }

    .page-who-is-the-father-of-kuya-kim__blog-date {
        font-size: 0.85em;
        color: #AAAAAA;
        margin-top: 15px;
        text-align: left;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
        .page-who-is-the-father-of-kuya-kim__hero-title {
            font-size: 2.5em;
        }
        .page-who-is-the-father-of-kuya-kim h1 {
            font-size: 2.2em;
        }
        .page-who-is-the-father-of-kuya-kim h2 {
            font-size: 1.8em;
        }
        .page-who-is-the-father-of-kuya-kim h3 {
            font-size: 1.3em;
        }
    }

    @media (max-width: 768px) {
        .page-who-is-the-father-of-kuya-kim__hero-section {
            padding: 40px 15px;
            min-height: 400px;
        }
        .page-who-is-the-father-of-kuya-kim__hero-title {
            font-size: 2em;
        }
        .page-who-is-the-father-of-kuya-kim__hero-subtitle {
            font-size: 1em;
        }
        .page-who-is-the-father-of-kuya-kim__hero-cta-group {
            flex-direction: column;
            gap: 15px;
        }
        .page-who-is-the-father-of-kuya-kim__hero-button {
            width: 100%;
            max-width: 300px;
            margin: 0 auto;
        }

        .page-who-is-the-father-of-kuya-kim__introduction-section,
        .page-who-is-the-father-of-kuya-kim__quick-access-section,
        .page-who-is-the-father-of-kuya-kim__core-games-section,
        .page-who-is-the-father-of-kuya-kim__promotions-section,
        .page-who-is-the-father-of-kuya-kim__security-section,
        .page-who-is-the-father-of-kuya-kim__faq-section,
        .page-who-is-the-father-of-kuya-kim__blog-section {
            padding: 40px 15px;
        }

        .page-who-is-the-father-of-kuya-kim h1 {
            font-size: 1.8em;
        }
        .page-who-is-the-father-of-kuya-kim h2 {
            font-size: 1.5em;
        }
        .page-who-is-the-father-of-kuya-kim h3 {
            font-size: 1.1em;
        }
        .page-who-is-the-father-of-kuya-kim p {
            font-size: 0.9em;
        }

        /* List item responsive styles */
        .page-who-is-the-father-of-kuya-kim__features-grid,
        .page-who-is-the-father-of-kuya-kim__game-categories,
        .page-who-is-the-father-of-kuya-kim__promo-cards,
        .page-who-is-the-father-of-kuya-kim__security-features,
        .page-who-is-the-father-of-kuya-kim__blog-posts {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .page-who-is-the-father-of-kuya-kim__feature-item,
        .page-who-is-the-father-of-kuya-kim__game-category,
        .page-who-is-the-father-of-kuya-kim__promo-card,
        .page-who-is-the-father-of-kuya-kim__security-item,
        .page-who-is-the-father-of-kuya-kim__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-father-of-kuya-kim__access-buttons {
            flex-direction: column;
            gap: 15px;
        }

        .page-who-is-the-father-of-kuya-kim__access-button {
            width: 100%;
            max-width: 300px;
            margin: 0 auto;
        }

        .page-who-is-the-father-of-kuya-kim__game-icon {
            width: 80px;
            height: 80px;
        }
        .page-who-is-the-father-of-kuya-kim__feature-icon {
            width: 150px;
            height: 150px;
        }

        .page-who-is-the-father-of-kuya-kim__faq-question-text {
            font-size: 1em;
        }
        .page-who-is-the-father-of-kuya-kim__faq-answer {
            padding: 0 15px; /* Adjust padding for smaller screens */
        }
        .page-who-is-the-father-of-kuya-kim__faq-item.active .page-who-is-the-father-of-kuya-kim__faq-answer {
            padding: 15px 15px !important;
        }

        .page-who-is-the-father-of-kuya-kim__blog-card-title {
            font-size: 1.1em;
        }
        .page-who-is-the-father-of-kuya-kim__blog-excerpt {
            font-size: 0.85em;
        }

        /* Images responsiveness */
        .page-who-is-the-father-of-kuya-kim img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
            word-wrap: break-word !important; /* For text within images if any, though not applicable here */
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
    }

    /* Ensure all text supports wrapping for long words/keywords */
    .page-who-is-the-father-of-kuya-kim p,
    .page-who-is-the-father-of-kuya-kim h1,
    .page-who-is-the-father-of-kuya-kim h2,
    .page-who-is-the-father-of-kuya-kim h3,
    .page-who-is-the-father-of-kuya-kim span,
    .page-who-is-the-father-of-kuya-kim a {
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
    }