.page-blog-ph365-guide-for-beginners {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding for internal content below body's padding-top */
}

.page-blog-ph365-guide-for-beginners__hero-section {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column; /* Main image on top, content below */
    align-items: center;
    text-align: center;
}

.page-blog-ph365-guide-for-beginners__hero-image-wrapper {
    width: 100%;
    max-height: 500px; /* Limit height for hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-blog-ph365-guide-for-beginners__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    min-height: 200px; /* Ensure image meets min size requirement */
}

.page-blog-ph365-guide-for-beginners__hero-content {
    padding: 20px;
    max-width: 960px;
    margin: 0 auto;
    position: relative; /* Ensure content is in normal flow below image */
    z-index: 1; /* Ensure text is above any potential background elements if any */
}

.page-blog-ph365-guide-for-beginners__main-title {
    font-weight: bold;
    color: #F2C14E;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: 1px;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.5);
    /* No fixed font-size, relying on browser defaults and font-weight for hierarchy */
}

.page-blog-ph365-guide-for-beginners__intro-text {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-ph365-guide-for-beginners__cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-blog-ph365-guide-for-beginners__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111; /* Dark text for bright button */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

.page-blog-ph365-guide-for-beginners__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-blog-ph365-guide-for-beginners__button--secondary {
    background: #111111;
    color: #F2C14E;
    border: 1px solid #3A2A12;
}

.page-blog-ph365-guide-for-beginners__button--secondary:hover {
    background: #1A1A1A;
    box-shadow: 0 5px 15px rgba(242, 193, 78, 0.2);
}

.page-blog-ph365-guide-for-beginners__button--small {
    padding: 8px 18px;
    font-size: 0.9em;
}

.page-blog-ph365-guide-for-beginners__section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 40px;
    border-bottom: 1px solid #3A2A12;
}

.page-blog-ph365-guide-for-beginners__section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.page-blog-ph365-guide-for-beginners__section-title {
    font-size: 2em;
    color: #F2C14E;
    text-align: center;
    margin-bottom: 25px;
    text-shadow: 0 0 5px rgba(242, 193, 78, 0.3);
}

.page-blog-ph365-guide-for-beginners__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #E5E5E5;
}

.page-blog-ph365-guide-for-beginners__grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-blog-ph365-guide-for-beginners__card {
    background-color: #111111;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #3A2A12;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-blog-ph365-guide-for-beginners__card-image {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-blog-ph365-guide-for-beginners__card-title {
    font-size: 1.5em;
    color: #FFD36B;
    margin-bottom: 15px;
}

.page-blog-ph365-guide-for-beginners__card-text {
    font-size: 0.95em;
    color: #E5E5E5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-blog-ph365-guide-for-beginners__list {
    text-align: left;
    list-style: decimal;
    margin: 0 0 20px 20px;
    padding: 0;
    color: #FFF6D6;
    width: 100%;
    max-width: 400px; /* Limit list width for readability */
}

.page-blog-ph365-guide-for-beginners__list li {
    margin-bottom: 10px;
}

.page-blog-ph365-guide-for-beginners__game-card {
    background-color: #111111;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #3A2A12;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.page-blog-ph365-guide-for-beginners__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(242, 193, 78, 0.4);
}

.page-blog-ph365-guide-for-beginners__game-image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-blog-ph365-guide-for-beginners__game-title {
    font-size: 1.3em;
    margin-bottom: 10px;
    flex-grow: 1; /* Allow title to take up available space */
}

.page-blog-ph365-guide-for-beginners__game-title a {
    color: #FFD36B;
    text-decoration: none;
    transition: color 0.2s ease;
}

.page-blog-ph365-guide-for-beginners__game-title a:hover {
    color: #F2C14E;
}

.page-blog-ph365-guide-for-beginners__game-text {
    font-size: 0.9em;
    color: #E5E5E5;
}

.page-blog-ph365-guide-for-beginners__view-all-games {
    text-align: center;
    margin-top: 40px;
}

.page-blog-ph365-guide-for-beginners__tip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-blog-ph365-guide-for-beginners__tip-card {
    background-color: #111111;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #3A2A12;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.page-blog-ph365-guide-for-beginners__tip-image {
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-blog-ph365-guide-for-beginners__tip-title {
    font-size: 1.3em;
    margin-bottom: 10px;
    flex-grow: 1;
}

.page-blog-ph365-guide-for-beginners__tip-title a {
    color: #FFD36B;
    text-decoration: none;
    transition: color 0.2s ease;
}

.page-blog-ph365-guide-for-beginners__tip-title a:hover {
    color: #F2C14E;
}

.page-blog-ph365-guide-for-beginners__tip-text {
    font-size: 0.9em;
    color: #E5E5E5;
}

.page-blog-ph365-guide-for-beginners__faq {
    padding-bottom: 60px; /* More padding at the bottom for FAQ section */
}

.page-blog-ph365-guide-for-beginners__faq-item {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-ph365-guide-for-beginners__faq-question {
    font-size: 1.2em;
    color: #F2C14E;
    margin-bottom: 10px;
}

.page-blog-ph365-guide-for-beginners__faq-answer {
    font-size: 1em;
    color: #E5E5E5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-blog-ph365-guide-for-beginners__hero-content {
        padding: 15px;
    }

    .page-blog-ph365-guide-for-beginners__main-title {
        font-size: 1.8em;
    }

    .page-blog-ph365-guide-for-beginners__intro-text {
        font-size: 1em;
    }

    .page-blog-ph365-guide-for-beginners__cta-buttons {
        flex-direction: column;
    }

    .page-blog-ph365-guide-for-beginners__button {
        width: 100%;
    }

    .page-blog-ph365-guide-for-beginners__section-title {
        font-size: 1.7em;
    }

    .page-blog-ph365-guide-for-beginners__grid-container,
    .page-blog-ph365-guide-for-beginners__tip-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    .page-blog-ph365-guide-for-beginners__card-image,
    .page-blog-ph365-guide-for-beginners__game-image,
    .page-blog-ph365-guide-for-beginners__tip-image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure images are not too small */
        min-height: 200px;
    }

    /* Ensure content area images do not overflow on mobile */
    .page-blog-ph365-guide-for-beginners img {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure images within content sections are not smaller than 200px */
.page-blog-ph365-guide-for-beginners img {
    min-width: 200px;
    min-height: 200px;
}