:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --card-bg: #11271B;
    --background-color: #08160F;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-blog-secure-hello88-login-tips {
    color: var(--text-main);
    background-color: var(--background-color);
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.page-blog-secure-hello88-login-tips__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px 0; /* Adjusted padding-top to 10px */
    background-color: var(--deep-green);
}

.page-blog-secure-hello88-login-tips__hero-image-wrapper {
    width: 100%;
    max-height: 70vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-blog-secure-hello88-login-tips__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.page-blog-secure-hello88-login-tips__hero-content {
    position: relative; /* Not absolute, to ensure text is below image */
    max-width: 900px;
    text-align: center;
    padding: 40px 20px;
    margin-top: -100px; /* Pull content up slightly over the image if desired, but not covering */
    z-index: 10;
    background-color: transparent; /* Ensure no overlay */
}

.page-blog-secure-hello88-login-tips__hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
    text-align: center;
    max-width: 900px;
    margin-bottom: 20px;
}

.page-blog-secure-hello88-login-tips__hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-secure-hello88-login-tips__hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-blog-secure-hello88-login-tips__btn-primary,
.page-blog-secure-hello88-login-tips__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure button responsiveness */
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-secure-hello88-login-tips__btn-primary {
    background: var(--button-gradient);
    color: var(--text-main);
    border: 2px solid transparent;
}

.page-blog-secure-hello88-login-tips__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-secure-hello88-login-tips__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-blog-secure-hello88-login-tips__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-main);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-secure-hello88-login-tips__content-section {
    padding: 60px 0;
}

.page-blog-secure-hello88-login-tips__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-secure-hello88-login-tips__section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 40px;
}

.page-blog-secure-hello88-login-tips__text-block {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-align: justify;
}

.page-blog-secure-hello88-login-tips__text-block strong {
    color: var(--text-main);
}

.page-blog-secure-hello88-login-tips__text-block a {
    color: var(--gold-color);
    text-decoration: none;
}

.page-blog-secure-hello88-login-tips__text-block a:hover {
    text-decoration: underline;
}

.page-blog-secure-hello88-login-tips__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

.page-blog-secure-hello88-login-tips__step-by-step {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-secure-hello88-login-tips__step-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.page-blog-secure-hello88-login-tips__step-title {
    font-size: 1.8rem;
    color: var(--gold-color);
    margin-bottom: 15px;
}

.page-blog-secure-hello88-login-tips__step-description {
    font-size: 1rem;
    color: var(--text-secondary);
}

.page-blog-secure-hello88-login-tips__security-tips {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-blog-secure-hello88-login-tips__tip-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.page-blog-secure-hello88-login-tips__tip-title {
    font-size: 1.8rem;
    color: var(--gold-color);
    margin-bottom: 15px;
}

.page-blog-secure-hello88-login-tips__tip-item p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.page-blog-secure-hello88-login-tips__troubleshooting-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-secure-hello88-login-tips__troubleshooting-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.page-blog-secure-hello88-login-tips__troubleshooting-title {
    font-size: 1.8rem;
    color: var(--gold-color);
    margin-bottom: 15px;
}

.page-blog-secure-hello88-login-tips__troubleshooting-item p {
    font-size: 1rem;
    color: var(--text-secondary);
}

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

.page-blog-secure-hello88-login-tips__promotion-card {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-blog-secure-hello88-login-tips__promotion-image {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

.page-blog-secure-hello88-login-tips__promotion-title {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.page-blog-secure-hello88-login-tips__promotion-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-blog-secure-hello88-login-tips__cta-center {
    text-align: center;
    margin-top: 50px;
}

.page-blog-secure-hello88-login-tips__faq-list {
    margin-top: 40px;
}

.page-blog-secure-hello88-login-tips__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-blog-secure-hello88-login-tips__faq-item summary {
    display: block;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-main);
    cursor: pointer;
    outline: none;
    position: relative;
    list-style: none;
    transition: background-color 0.3s ease;
}

.page-blog-secure-hello88-login-tips__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-blog-secure-hello88-login-tips__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-blog-secure-hello88-login-tips__faq-qtext {
    flex-grow: 1;
    color: var(--gold-color);
}

.page-blog-secure-hello88-login-tips__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--primary-color);
}

.page-blog-secure-hello88-login-tips__faq-item[open] .page-blog-secure-hello88-login-tips__faq-toggle {
    content: "−";
}

.page-blog-secure-hello88-login-tips__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.page-blog-secure-hello88-login-tips__faq-answer p {
    margin-bottom: 10px;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-blog-secure-hello88-login-tips__hero-content {
        margin-top: -50px;
    }
    .page-blog-secure-hello88-login-tips__section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .page-blog-secure-hello88-login-tips {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-blog-secure-hello88-login-tips__hero-section {
        padding: 10px 0 40px 0;
    }
    .page-blog-secure-hello88-login-tips__hero-content {
        padding: 20px 15px;
        margin-top: -30px;
    }
    .page-blog-secure-hello88-login-tips__hero-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    .page-blog-secure-hello88-login-tips__hero-description {
        font-size: 1rem;
    }
    .page-blog-secure-hello88-login-tips__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px; /* Constrain buttons for better stacking */
        margin: 0 auto;
    }
    .page-blog-secure-hello88-login-tips__btn-primary,
    .page-blog-secure-hello88-login-tips__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-blog-secure-hello88-login-tips__content-section {
        padding: 40px 0;
    }
    .page-blog-secure-hello88-login-tips__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-blog-secure-hello88-login-tips__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .page-blog-secure-hello88-login-tips__text-block {
        font-size: 0.95rem;
    }
    .page-blog-secure-hello88-login-tips__image-full-width,
    .page-blog-secure-hello88-login-tips__promotion-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: 200px; /* Ensure minimum size is maintained */
        min-height: 200px; /* Ensure minimum size is maintained */
    }
    .page-blog-secure-hello88-login-tips__step-by-step,
    .page-blog-secure-hello88-login-tips__security-tips,
    .page-blog-secure-hello88-login-tips__troubleshooting-list,
    .page-blog-secure-hello88-login-tips__promotions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-blog-secure-hello88-login-tips__step-title,
    .page-blog-secure-hello88-login-tips__tip-title,
    .page-blog-secure-hello88-login-tips__troubleshooting-title,
    .page-blog-secure-hello88-login-tips__promotion-title {
        font-size: 1.3rem;
    }
    .page-blog-secure-hello88-login-tips__faq-item summary {
        font-size: 1rem;
        padding: 15px;
    }
    .page-blog-secure-hello88-login-tips__faq-answer {
        padding: 0 15px 15px 15px;
    }
}

/* Ensure all image containers handle responsiveness */
.page-blog-secure-hello88-login-tips__hero-image-wrapper,
.page-blog-secure-hello88-login-tips__step-item,
.page-blog-secure-hello88-login-tips__tip-item,
.page-blog-secure-hello88-login-tips__troubleshooting-item,
.page-blog-secure-hello88-login-tips__promotion-card {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

/* Content area images CSS size lower limit */
.page-blog-secure-hello88-login-tips img {
    max-width: 100%;
    height: auto;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

/* Ensure no filter on images */
.page-blog-secure-hello88-login-tips img {
    filter: none;
}