/* style/blog-pau88-official-homepage-guide.css */

:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --login-color: #EA7C07;
    --background-color: #FFFFFF;
    --text-color-dark: #333333;
    --text-color-light: #FFFFFF;
    --border-color: #e0e0e0;
}

.page-blog-pau88-official-homepage-guide {
    font-family: 'Arial', sans-serif;
    color: var(--text-color-dark);
    line-height: 1.6;
    background-color: var(--background-color); /* Body background handled by shared, this is for main content area */
}

.page-blog-pau88-official-homepage-guide__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 20px 60px; /* Small top padding, more bottom padding */
    background-color: var(--primary-color); /* Fallback if image not loaded or for overlay effect */
    color: var(--text-color-light);
    overflow: hidden;
}

.page-blog-pau88-official-homepage-guide__hero-image-wrapper {
    position: relative;
    width: 100%;
    max-height: 600px; /* Limit image height */
    overflow: hidden;
    margin-bottom: 20px;
}

.page-blog-pau88-official-homepage-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 200px; /* Ensure minimum size */
}

.page-blog-pau88-official-homepage-guide__hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 20px;
    margin-top: 20px;
}

.page-blog-pau88-official-homepage-guide__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-color-light);
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size for H1 */
}

.page-blog-pau88-official-homepage-guide__hero-description {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: var(--text-color-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-pau88-official-homepage-guide__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.page-blog-pau88-official-homepage-guide__btn-primary,
.page-blog-pau88-official-homepage-guide__btn-secondary,
.page-blog-pau88-official-homepage-guide a[class*="button"],
.page-blog-pau88-official-homepage-guide a[class*="btn"] {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow word breaking */
    box-sizing: border-box;
    max-width: 100%;
    text-align: center;
}

.page-blog-pau88-official-homepage-guide__btn-primary {
    background-color: var(--login-color); /* Specific color for login/primary CTA */
    color: var(--text-color-light);
    border: 2px solid var(--login-color);
}

.page-blog-pau88-official-homepage-guide__btn-primary:hover {
    background-color: darken(var(--login-color), 10%);
    border-color: darken(var(--login-color), 10%);
}

.page-blog-pau88-official-homepage-guide__btn-secondary {
    background-color: transparent;
    color: var(--text-color-light);
    border: 2px solid var(--text-color-light);
}

.page-blog-pau88-official-homepage-guide__btn-secondary:hover {
    background-color: var(--text-color-light);
    color: var(--primary-color);
}

.page-blog-pau88-official-homepage-guide__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: var(--background-color);
    color: var(--text-color-dark);
}

.page-blog-pau88-official-homepage-guide__section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.3;
}

.page-blog-pau88-official-homepage-guide__subsection-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-color-dark);
    margin-top: 35px;
    margin-bottom: 20px;
}

.page-blog-pau88-official-homepage-guide__text-block {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.7;
}

.page-blog-pau88-official-homepage-guide__image-wrapper {
    margin: 30px auto;
    max-width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.page-blog-pau88-official-homepage-guide__content-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-blog-pau88-official-homepage-guide__ordered-list,
.page-blog-pau88-official-homepage-guide__unordered-list {
    margin-bottom: 20px;
    padding-left: 25px;
}

.page-blog-pau88-official-homepage-guide__ordered-list li,
.page-blog-pau88-official-homepage-guide__unordered-list li {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color-dark);
}

.page-blog-pau88-official-homepage-guide__video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    background-color: #000000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    box-sizing: border-box;
}

.page-blog-pau88-official-homepage-guide__video {
    width: 100%;
    height: auto;
    display: block;
    min-width: 200px;
    min-height: 200px;
    cursor: pointer;
}

.page-blog-pau88-official-homepage-guide__video-caption {
    color: var(--text-color-light);
    text-align: center;
    padding: 15px 20px;
    font-size: 0.95rem;
    background-color: rgba(0,0,0,0.6);
    margin: 0;
}

.page-blog-pau88-official-homepage-guide__faq-list {
    margin-top: 30px;
}

.page-blog-pau88-official-homepage-guide__faq-item {
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-blog-pau88-official-homepage-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-color);
    cursor: pointer;
    background-color: #f8f8f8;
    border-bottom: 1px solid var(--border-color);
    list-style: none; /* For details/summary */
}

.page-blog-pau88-official-homepage-guide__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-pau88-official-homepage-guide__faq-qtext {
    flex-grow: 1;
    margin-right: 15px;
}

.page-blog-pau88-official-homepage-guide__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.page-blog-pau88-official-homepage-guide__faq-item[open] .page-blog-pau88-official-homepage-guide__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-pau88-official-homepage-guide__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1rem;
    color: var(--text-color-dark);
    line-height: 1.7;
    background-color: var(--secondary-color);
}

/* Color contrast rules */
.page-blog-pau88-official-homepage-guide__dark-bg {
    background-color: var(--primary-color);
    color: var(--text-color-light);
}

.page-blog-pau88-official-homepage-guide__light-bg {
    background-color: var(--background-color);
    color: var(--text-color-dark);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-blog-pau88-official-homepage-guide {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-pau88-official-homepage-guide__hero-section {
        padding: 10px 15px 40px;
    }

    .page-blog-pau88-official-homepage-guide__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem); /* Adjust H1 for mobile */
    }

    .page-blog-pau88-official-homepage-guide__hero-description {
        font-size: 1rem;
    }

    .page-blog-pau88-official-homepage-guide__cta-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        padding: 0 15px; /* Add padding to container */
        box-sizing: border-box;
    }

    .page-blog-pau88-official-homepage-guide__btn-primary,
    .page-blog-pau88-official-homepage-guide__btn-secondary,
    .page-blog-pau88-official-homepage-guide a[class*="button"],
    .page-blog-pau88-official-homepage-guide a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-pau88-official-homepage-guide__content-area {
        padding: 25px 15px;
    }

    .page-blog-pau88-official-homepage-guide__section-title {
        font-size: 1.8rem;
    }

    .page-blog-pau88-official-homepage-guide__subsection-title {
        font-size: 1.4rem;
    }

    .page-blog-pau88-official-homepage-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-blog-pau88-official-homepage-guide__section,
    .page-blog-pau88-official-homepage-guide__card,
    .page-blog-pau88-official-homepage-guide__container,
    .page-blog-pau88-official-homepage-guide__image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-blog-pau88-official-homepage-guide__video-section {
        padding-top: 10px !important;
    }

    .page-blog-pau88-official-homepage-guide video,
    .page-blog-pau88-official-homepage-guide__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-pau88-official-homepage-guide__video-wrapper,
    .page-blog-pau88-official-homepage-guide__video-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-blog-pau88-official-homepage-guide__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .page-blog-pau88-official-homepage-guide__faq-answer {
        padding: 10px 20px 15px;
    }
}