.page-resources-gamezone-ph-login-guide {
    color: #ffffff; /* Light text for dark body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop */
}

.page-resources-gamezone-ph-login-guide__hero-section {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    padding: 0;
}

.page-resources-gamezone-ph-login-guide__hero-container {
    position: relative;
    width: 100%;
    max-height: 675px; /* Max height to maintain aspect ratio for hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-resources-gamezone-ph-login-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-resources-gamezone-ph-login-guide__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.page-resources-gamezone-ph-login-guide__hero-title {
    font-size: 3em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    max-width: 900px;
}

.page-resources-gamezone-ph-login-guide__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
}

.page-resources-gamezone-ph-login-guide__hero-buttons {
    display: flex;
    gap: 20px;
}

.page-resources-gamezone-ph-login-guide__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-resources-gamezone-ph-login-guide__button--primary {
    background-color: #DC143C; /* Scarlet for primary action */
    color: #ffffff;
}

.page-resources-gamezone-ph-login-guide__button--primary:hover {
    background-color: #b30f2f;
    transform: translateY(-2px);
}

.page-resources-gamezone-ph-login-guide__button--secondary {
    background-color: #1E90FF; /* Dodger Blue for secondary action */
    color: #ffffff;
}

.page-resources-gamezone-ph-login-guide__button--secondary:hover {
    background-color: #1565b3;
    transform: translateY(-2px);
}

.page-resources-gamezone-ph-login-guide__content-section {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for content area */
    border-radius: 10px;
}

.page-resources-gamezone-ph-login-guide__article-wrapper {
    max-width: 800px; /* Content width for readability */
    margin: 0 auto;
    padding: 20px;
}

.page-resources-gamezone-ph-login-guide__back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: #1E90FF; /* Blue for links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-gamezone-ph-login-guide__back-link:hover {
    color: #FFD700; /* Gold on hover */
}

.page-resources-gamezone-ph-login-guide__section-title {
    font-size: 2.2em;
    color: #FFD700; /* Gold for main section titles */
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.page-resources-gamezone-ph-login-guide__sub-title {
    font-size: 1.8em;
    color: #1E90FF; /* Blue for sub-titles */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-gamezone-ph-login-guide__paragraph {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.page-resources-gamezone-ph-login-guide__step-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-resources-gamezone-ph-login-guide__step-heading {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-resources-gamezone-ph-login-guide__step-image,
.page-resources-gamezone-ph-login-guide__security-image,
.page-resources-gamezone-ph-login-guide__game-showcase-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

.page-resources-gamezone-ph-login-guide__security-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.page-resources-gamezone-ph-login-guide__security-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-left: 5px solid #1E90FF;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-resources-gamezone-ph-login-guide__security-heading {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-resources-gamezone-ph-login-guide__benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-resources-gamezone-ph-login-guide__benefits-list li {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    position: relative;
    padding-left: 40px;
}

.page-resources-gamezone-ph-login-guide__benefits-list li::before {
    content: '✨';
    position: absolute;
    left: 15px;
    color: #FFD700;
    font-size: 1.2em;
    top: 50%;
    transform: translateY(-50%);
}

.page-resources-gamezone-ph-login-guide__list-highlight {
    color: #FFD700;
}

.page-resources-gamezone-ph-login-guide__faq-container {
    margin-top: 30px;
}

.page-resources-gamezone-ph-login-guide__faq-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-resources-gamezone-ph-login-guide__faq-question {
    font-size: 1.3em;
    color: #1E90FF;
    margin-bottom: 10px;
}

.page-resources-gamezone-ph-login-guide__faq-answer {
    font-size: 1.1em;
}

.page-resources-gamezone-ph-login-guide__cta-section {
    text-align: center;
    background-color: rgba(30, 144, 255, 0.1); /* Light blue tint for CTA background */
    padding: 50px 20px;
    border-radius: 10px;
    margin-top: 50px;
}

.page-resources-gamezone-ph-login-guide__cta-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-resources-gamezone-ph-login-guide__cta-description {
    font-size: 1.3em;
    margin-bottom: 30px;
}

.page-resources-gamezone-ph-login-guide__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-resources-gamezone-ph-login-guide__related-resources {
    margin-top: 50px;
    text-align: center;
}

.page-resources-gamezone-ph-login-guide__resource-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.page-resources-gamezone-ph-login-guide__resource-list li {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px 15px;
    transition: background-color 0.3s ease;
}

.page-resources-gamezone-ph-login-guide__resource-list li:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-resources-gamezone-ph-login-guide__resource-list a {
    color: #1E90FF;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.page-resources-gamezone-ph-login-guide__resource-list a:hover {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-gamezone-ph-login-guide__hero-title {
        font-size: 2.5em;
    }
    .page-resources-gamezone-ph-login-guide__hero-description {
        font-size: 1.1em;
    }
    .page-resources-gamezone-ph-login-guide__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-resources-gamezone-ph-login-guide {
        padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
    }
    .page-resources-gamezone-ph-login-guide__hero-title {
        font-size: 2em;
    }
    .page-resources-gamezone-ph-login-guide__hero-description {
        font-size: 1em;
    }
    .page-resources-gamezone-ph-login-guide__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-gamezone-ph-login-guide__button {
        width: 100%;
        max-width: 300px;
    }
    .page-resources-gamezone-ph-login-guide__content-section {
        padding: 15px;
    }
    .page-resources-gamezone-ph-login-guide__article-wrapper {
        padding: 10px;
    }
    .page-resources-gamezone-ph-login-guide__section-title {
        font-size: 1.8em;
    }
    .page-resources-gamezone-ph-login-guide__sub-title {
        font-size: 1.5em;
    }
    .page-resources-gamezone-ph-login-guide__paragraph {
        font-size: 1em;
    }
    .page-resources-gamezone-ph-login-guide__security-tips {
        grid-template-columns: 1fr;
    }
    /* Mobile image overflow prevention */
    .page-resources-gamezone-ph-login-guide img {
        max-width: 100%;
        height: auto;
    }
    .page-resources-gamezone-ph-login-guide__cta-title {
        font-size: 2em;
    }
    .page-resources-gamezone-ph-login-guide__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-resources-gamezone-ph-login-guide__hero-title {
        font-size: 1.8em;
    }
    .page-resources-gamezone-ph-login-guide__hero-description {
        font-size: 0.9em;
    }
    .page-resources-gamezone-ph-login-guide__button {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-resources-gamezone-ph-login-guide__section-title {
        font-size: 1.5em;
    }
    .page-resources-gamezone-ph-login-guide__sub-title {
        font-size: 1.3em;
    }
    .page-resources-gamezone-ph-login-guide__step-heading,
    .page-resources-gamezone-ph-login-guide__security-heading,
    .page-resources-gamezone-ph-login-guide__faq-question {
        font-size: 1.2em;
    }
}