/* General styling */
    .page-sinagph-com-login-password {
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #f8f8f8;
    }

    .page-sinagph-com-login-password__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .page-sinagph-com-login-password__section-title {
        font-size: 2.5em;
        color: #0a4f78;
        text-align: center;
        margin-bottom: 40px;
        padding-top: 20px;
        font-weight: bold;
    }

    .page-sinagph-com-login-password__section-title--small {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .page-sinagph-com-login-password__paragraph {
        font-size: 1.1em;
        margin-bottom: 20px;
        text-align: center;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-sinagph-com-login-password__strong {
        font-weight: bold;
        color: #e6b800; /* Gold-like color for emphasis */
    }

    .page-sinagph-com-login-password__text-link {
        color: #007bff;
        text-decoration: none;
        font-weight: bold;
    }

    .page-sinagph-com-login-password__text-link:hover {
        text-decoration: underline;
    }

    /* Hero Section */
    .page-sinagph-com-login-password__hero-section {
        position: relative;
        width: 100%;
        min-height: 550px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #fff;
        overflow: hidden;
        padding-top: 10px; /* Decorative top spacing, assuming body has padding-top from shared header */
        background-color: #000; /* Fallback background */
    }

    .page-sinagph-com-login-password__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .page-sinagph-com-login-password__hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        padding: 20px;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 10px;
    }

    .page-sinagph-com-login-password__hero-title {
        font-size: 3.5em;
        margin-bottom: 15px;
        font-weight: bold;
        line-height: 1.2;
        color: #e6b800;
    }

    .page-sinagph-com-login-password__hero-subtitle {
        font-size: 1.5em;
        margin-bottom: 30px;
        color: #eee;
    }

    .page-sinagph-com-login-password__hero-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
    }

    .page-sinagph-com-login-password__hero-btn {
        display: inline-block;
        padding: 15px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.3s ease;
        min-width: 150px;
    }

    .page-sinagph-com-login-password__hero-btn--primary {
        background-color: #e6b800;
        color: #0a4f78;
        border: 2px solid #e6b800;
    }

    .page-sinagph-com-login-password__hero-btn--primary:hover {
        background-color: #ffc107;
        transform: translateY(-2px);
    }

    .page-sinagph-com-login-password__hero-btn--secondary {
        background-color: transparent;
        color: #e6b800;
        border: 2px solid #e6b800;
    }

    .page-sinagph-com-login-password__hero-btn--secondary:hover {
        background-color: #e6b800;
        color: #0a4f78;
        transform: translateY(-2px);
    }

    /* Payment Providers Section */
    .page-sinagph-com-login-password__payment-providers {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 30px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 40px 20px;
        background-color: #fff;
        border-bottom: 1px solid #eee;
    }

    .page-sinagph-com-login-password__logo-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 30px;
        width: 100%;
    }

    .page-sinagph-com-login-password__payment-logo {
        flex: 0 0 auto;
        width: 80px;
        height: 80px;
        max-width: 80px;
        max-height: 80px;
        box-sizing: border-box;
        display: flex; /* To center the image */
        justify-content: center;
        align-items: center;
    }
    .page-sinagph-com-login-password__payment-logo img {
        display: block;
        width: 80px !important;
        height: 80px !important;
        max-width: 80px !important;
        max-height: 80px !important;
        object-fit: contain;
    }

    /* Introduction Section */
    .page-sinagph-com-login-password__introduction-section {
        padding: 60px 0;
        background-color: #f8f8f8;
    }

    /* Quick Access Section */
    .page-sinagph-com-login-password__quick-access-section {
        padding: 60px 0;
        background-color: #eef4f8;
    }

    .page-sinagph-com-login-password__access-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-sinagph-com-login-password__access-card {
        background-color: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        text-align: center;
        text-decoration: none;
        color: #333;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    .page-sinagph-com-login-password__access-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-sinagph-com-login-password__access-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
        object-fit: contain;
        max-width: 100%;
        height: auto;
    }

    .page-sinagph-com-login-password__access-title {
        font-size: 1.5em;
        color: #0a4f78;
        margin-bottom: 10px;
    }

    .page-sinagph-com-login-password__access-description {
        font-size: 1em;
        color: #666;
    }

    /* Games Section */
    .page-sinagph-com-login-password__games-section {
        padding: 60px 0;
        background-color: #f8f8f8;
    }

    .page-sinagph-com-login-password__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-sinagph-com-login-password__game-card {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box;
    }

    .page-sinagph-com-login-password__game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-sinagph-com-login-password__game-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        margin-bottom: 15px;
        max-width: 100%;
        height: auto;
    }

    .page-sinagph-com-login-password__game-title {
        font-size: 1.6em;
        color: #0a4f78;
        margin-bottom: 10px;
        padding: 0 15px;
    }

    .page-sinagph-com-login-password__game-description {
        font-size: 0.95em;
        color: #666;
        padding: 0 15px 15px;
    }

    .page-sinagph-com-login-password__game-btn {
        display: inline-block;
        background-color: #e6b800;
        color: #0a4f78;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        margin-bottom: 20px;
        transition: background-color 0.3s ease;
    }

    .page-sinagph-com-login-password__game-btn:hover {
        background-color: #ffc107;
    }

    /* Promotions Section */
    .page-sinagph-com-login-password__promotions-section {
        padding: 60px 0;
        background-color: #eef4f8;
    }

    .page-sinagph-com-login-password__promo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-sinagph-com-login-password__promo-card {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box;
    }

    .page-sinagph-com-login-password__promo-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-sinagph-com-login-password__promo-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
        margin-bottom: 15px;
        max-width: 100%;
        height: auto;
    }

    .page-sinagph-com-login-password__promo-title {
        font-size: 1.6em;
        color: #0a4f78;
        margin-bottom: 10px;
        padding: 0 15px;
    }

    .page-sinagph-com-login-password__promo-description {
        font-size: 0.95em;
        color: #666;
        padding: 0 15px 15px;
    }

    .page-sinagph-com-login-password__promo-btn {
        display: inline-block;
        background-color: #e6b800;
        color: #0a4f78;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        margin-bottom: 20px;
        transition: background-color 0.3s ease;
    }

    .page-sinagph-com-login-password__promo-btn:hover {
        background-color: #ffc107;
    }

    /* Security Section */
    .page-sinagph-com-login-password__security-section {
        padding: 60px 0;
        background-color: #f8f8f8;
    }

    .page-sinagph-com-login-password__security-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-sinagph-com-login-password__security-item {
        background-color: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        text-align: center;
        box-sizing: border-box;
    }

    .page-sinagph-com-login-password__security-icon {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
        object-fit: contain;
        max-width: 100%;
        height: auto;
    }

    .page-sinagph-com-login-password__security-title {
        font-size: 1.5em;
        color: #0a4f78;
        margin-bottom: 10px;
    }

    .page-sinagph-com-login-password__security-description {
        font-size: 1em;
        color: #666;
        margin-bottom: 20px;
    }

    .page-sinagph-com-login-password__security-btn {
        display: inline-block;
        background-color: #0a4f78;
        color: #fff;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .page-sinagph-com-login-password__security-btn:hover {
        background-color: #0e6bb5;
    }

    /* FAQ Section */
    .page-sinagph-com-login-password__faq-section {
        padding: 60px 0;
        background-color: #eef4f8;
    }

    .page-sinagph-com-login-password__faq-list {
        margin-top: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-sinagph-com-login-password__faq-item {
        background-color: #fff;
        border-radius: 8px;
        margin-bottom: 15px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-sinagph-com-login-password__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        user-select: none;
        font-size: 1.15em;
        color: #0a4f78;
        font-weight: bold;
        border-bottom: 1px solid #eee;
        transition: background-color 0.3s ease;
    }

    .page-sinagph-com-login-password__faq-question:hover {
        background-color: #f0f7fb;
    }

    .page-sinagph-com-login-password__faq-question-text {
        margin: 0;
        flex-grow: 1;
        text-align: left;
        pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-sinagph-com-login-password__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        margin-left: 15px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent span from blocking click */
    }

    .page-sinagph-com-login-password__faq-item.active .page-sinagph-com-login-password__faq-toggle {
        transform: rotate(45deg); /* Changes '+' to 'x' or '-' */
    }

    .page-sinagph-com-login-password__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        box-sizing: border-box;
    }

    .page-sinagph-com-login-password__faq-item.active .page-sinagph-com-login-password__faq-answer {
        max-height: 2000px !important; /* Sufficiently large value */
        padding: 20px 25px !important;
        opacity: 1;
    }

    .page-sinagph-com-login-password__faq-answer-text {
        margin: 0;
        color: #555;
        font-size: 1em;
    }

    /* Blog Section */
    .page-sinagph-com-login-password__blog-section {
        padding: 60px 0;
        background-color: #f8f8f8;
    }

    .page-sinagph-com-login-password__blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-sinagph-com-login-password__blog-card {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box;
    }

    .page-sinagph-com-login-password__blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-sinagph-com-login-password__blog-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
        max-width: 100%;
        height: auto;
    }

    .page-sinagph-com-login-password__blog-content {
        padding: 20px;
    }

    .page-sinagph-com-login-password__blog-title {
        font-size: 1.4em;
        color: #0a4f78;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .page-sinagph-com-login-password__blog-link {
        text-decoration: none;
        color: inherit;
    }

    .page-sinagph-com-login-password__blog-link:hover {
        color: #e6b800;
    }

    .page-sinagph-com-login-password__blog-date {
        font-size: 0.9em;
        color: #999;
        margin-bottom: 15px;
    }

    .page-sinagph-com-login-password__blog-excerpt {
        font-size: 1em;
        color: #666;
        margin-bottom: 20px;
    }

    .page-sinagph-com-login-password__blog-read-more {
        display: inline-block;
        background-color: #0a4f78;
        color: #fff;
        padding: 8px 15px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .page-sinagph-com-login-password__blog-read-more:hover {
        background-color: #0e6bb5;
    }

    /* General Image Responsive Styling */
    .page-sinagph-com-login-password img:not(.page-sinagph-com-login-password__payment-logo img) {
        max-width: 100%;
        height: auto;
        display: block; /* Prevents extra space below image */
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
        .page-sinagph-com-login-password__container {
            padding: 0 15px !important;
        }

        .page-sinagph-com-login-password__hero-title {
            font-size: 2.2em;
        }

        .page-sinagph-com-login-password__hero-subtitle {
            font-size: 1.2em;
        }

        .page-sinagph-com-login-password__hero-buttons {
            flex-direction: column;
            gap: 15px;
        }

        .page-sinagph-com-login-password__hero-btn {
            width: 100%;
            max-width: 300px; /* Limit width for stacked buttons */
            margin: 0 auto;
        }

        .page-sinagph-com-login-password__section-title {
            font-size: 1.8em;
            margin-bottom: 30px;
        }

        .page-sinagph-com-login-password__section-title--small {
            font-size: 1.5em;
            margin-bottom: 15px;
        }

        .page-sinagph-com-login-password__paragraph {
            font-size: 1em;
            text-align: left;
        }

        /* Partner/Supplier Logo Area - Mobile */
        .page-sinagph-com-login-password__payment-providers {
            flex-direction: row; /* Ensure it stays row for logo grid */
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            padding: 30px 15px;
        }
        .page-sinagph-com-login-password__payment-logo,
        .page-sinagph-com-login-password__payment-logo img {
            width: 80px !important;
            height: 80px !important;
            max-width: 80px !important;
            max-height: 80px !important;
        }

        /* List item responsiveness */
        .page-sinagph-com-login-password__access-grid,
        .page-sinagph-com-login-password__game-grid,
        .page-sinagph-com-login-password__promo-grid,
        .page-sinagph-com-login-password__security-grid,
        .page-sinagph-com-login-password__blog-grid {
            grid-template-columns: 1fr !important; /* Force single column */
            gap: 20px !important;
            margin-top: 20px !important;
        }

        .page-sinagph-com-login-password__access-card,
        .page-sinagph-com-login-password__game-card,
        .page-sinagph-com-login-password__promo-card,
        .page-sinagph-com-login-password__security-item,
        .page-sinagph-com-login-password__blog-card,
        .page-sinagph-com-login-password__faq-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 20px 15px !important; /* Adjust padding for smaller screens */
        }

        .page-sinagph-com-login-password__access-icon,
        .page-sinagph-com-login-password__security-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 15px;
        }

        .page-sinagph-com-login-password__game-image,
        .page-sinagph-com-login-password__promo-image,
        .page-sinagph-com-login-password__blog-image {
            height: 180px; /* Adjust image height for mobile */
        }

        .page-sinagph-com-login-password__faq-question {
            font-size: 1em;
            padding: 15px 20px;
        }

        .page-sinagph-com-login-password__faq-answer {
            padding: 0 20px;
        }

        .page-sinagph-com-login-password__faq-item.active .page-sinagph-com-login-password__faq-answer {
            padding: 15px 20px !important;
        }

        .page-sinagph-com-login-password__blog-content {
            padding: 15px;
        }

        .page-sinagph-com-login-password__blog-title {
            font-size: 1.2em;
        }

        .page-sinagph-com-login-password__blog-excerpt {
            font-size: 0.9em;
        }

        /* Ensure text wrapping for all elements */
        .page-sinagph-com-login-password__hero-title,
        .page-sinagph-com-login-password__hero-subtitle,
        .page-sinagph-com-login-password__section-title,
        .page-sinagph-com-login-password__paragraph,
        .page-sinagph-com-login-password__access-title,
        .page-sinagph-com-login-password__access-description,
        .page-sinagph-com-login-password__game-title,
        .page-sinagph-com-login-password__game-description,
        .page-sinagph-com-login-password__promo-title,
        .page-sinagph-com-login-password__promo-description,
        .page-sinagph-com-login-password__security-title,
        .page-sinagph-com-login-password__security-description,
        .page-sinagph-com-login-password__faq-question-text,
        .page-sinagph-com-login-password__faq-answer-text,
        .page-sinagph-com-login-password__blog-title,
        .page-sinagph-com-login-password__blog-excerpt {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        /* Ensure all images (except gamelogo) are responsive */
        .page-sinagph-com-login-password img:not(.page-sinagph-com-login-password__payment-logo img) {
            max-width: 100% !important;
            height: auto !important;
        }
        .page-sinagph-com-login-password__hero-section,
        .page-sinagph-com-login-password__introduction-section,
        .page-sinagph-com-login-password__quick-access-section,
        .page-sinagph-com-login-password__games-section,
        .page-sinagph-com-login-password__promotions-section,
        .page-sinagph-com-login-password__security-section,
        .page-sinagph-com-login-password__faq-section,
        .page-sinagph-com-login-password__blog-section {
            padding: 40px 0 !important;
        }
    }