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

.page-blog-h58win-account-security {
    background-color: var(--h58win-bg);
    color: var(--h58win-text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-blog-h58win-account-security__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 20px 60px;
    box-sizing: border-box;
    overflow: hidden;
}

.page-blog-h58win-account-security__hero-image-wrapper {
    width: 100%;
    max-height: 70vh;
    overflow: hidden;
    margin-bottom: 20px;
}

.page-blog-h58win-account-security__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-h58win-account-security__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;
}

.page-blog-h58win-account-security__hero-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--h58win-text-main);
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-blog-h58win-account-security__hero-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--h58win-text-secondary);
    margin-bottom: 30px;
}

.page-blog-h58win-account-security__cta-button {
    display: inline-block;
    padding: 14px 30px;
    background: var(--h58win-button-gradient);
    color: var(--h58win-text-main);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-h58win-account-security__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-h58win-account-security__cta-button--secondary {
    background: transparent;
    border: 2px solid var(--h58win-primary);
    color: var(--h58win-primary);
    margin-left: 15px;
}

.page-blog-h58win-account-security__cta-button--secondary:hover {
    background: var(--h58win-primary);
    color: var(--h58win-text-main);
}

.page-blog-h58win-account-security__cta-button--large {
    padding: 16px 35px;
    font-size: 1.1rem;
}

.page-blog-h58win-account-security__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.page-blog-h58win-account-security__container {
    max-width: 900px;
    margin: 0 auto;
}

.page-blog-h58win-account-security__section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--h58win-text-main);
    text-align: center;
    margin-bottom: 30px;
    margin-top: 50px;
    font-weight: 700;
}

.page-blog-h58win-account-security__sub-title {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    color: var(--h58win-primary);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-h58win-account-security__text-block {
    font-size: 1rem;
    color: var(--h58win-text-secondary);
    margin-bottom: 20px;
}

.page-blog-h58win-account-security__keyword {
    color: var(--h58win-gold);
    font-weight: 600;
}

.page-blog-h58win-account-security__inline-link {
    color: var(--h58win-glow);
    text-decoration: none;
    font-weight: 600;
}

.page-blog-h58win-account-security__inline-link:hover {
    text-decoration: underline;
}

.page-blog-h58win-account-security__image-text-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.page-blog-h58win-account-security__image-text-block.reverse {
    flex-direction: row-reverse;
}

.page-blog-h58win-account-security__text-content {
    flex: 1;
    min-width: 300px;
}

.page-blog-h58win-account-security__content-image {
    flex: 1;
    min-width: 300px;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-h58win-account-security__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 30px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-h58win-account-security__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-blog-h58win-account-security__card {
    background-color: var(--h58win-card-bg);
    border: 1px solid var(--h58win-border);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-h58win-account-security__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.page-blog-h58win-account-security__card-title {
    font-size: 1.5rem;
    color: var(--h58win-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-h58win-account-security__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-blog-h58win-account-security__list li {
    color: var(--h58win-text-secondary);
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.page-blog-h58win-account-security__list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--h58win-glow);
}

.page-blog-h58win-account-security__cta-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

/* FAQ Section */
.page-blog-h58win-account-security__faq-list {
    margin-top: 30px;
    margin-bottom: 50px;
}

.page-blog-h58win-account-security__faq-item {
    background-color: var(--h58win-card-bg);
    border: 1px solid var(--h58win-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog-h58win-account-security__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--h58win-text-main);
    cursor: pointer;
    background-color: var(--h58win-deep-green);
    border-bottom: 1px solid var(--h58win-divider);
    list-style: none;
}

.page-blog-h58win-account-security__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-h58win-account-security__faq-qtext {
    flex-grow: 1;
}

.page-blog-h58win-account-security__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--h58win-glow);
    transition: transform 0.3s ease;
}

.page-blog-h58win-account-security__faq-item[open] .page-blog-h58win-account-security__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-h58win-account-security__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1rem;
    color: var(--h58win-text-secondary);
    border-top: 1px solid var(--h58win-divider);
    background-color: var(--h58win-card-bg);
}

.page-blog-h58win-account-security__faq-answer p {
    margin-bottom: 0;
    color: var(--h58win-text-secondary);
}

/* Responsive styles */
@media (max-width: 992px) {
    .page-blog-h58win-account-security__hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .page-blog-h58win-account-security__section-title {
        font-size: clamp(1.6rem, 4vw, 2.2rem);
    }
    .page-blog-h58win-account-security__sub-title {
        font-size: clamp(1.2rem, 3vw, 1.6rem);
    }
    .page-blog-h58win-account-security__image-text-block {
        flex-direction: column;
    }
    .page-blog-h58win-account-security__image-text-block.reverse {
        flex-direction: column;
    }
    .page-blog-h58win-account-security__text-content,
    .page-blog-h58win-account-security__content-image {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-blog-h58win-account-security {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-h58win-account-security__hero-section {
        padding: 10px 15px 40px;
    }

    .page-blog-h58win-account-security__hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .page-blog-h58win-account-security__hero-description {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    }

    /* Images */
    .page-blog-h58win-account-security img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-h58win-account-security__section,
    .page-blog-h58win-account-security__card,
    .page-blog-h58win-account-security__container,
    .page-blog-h58win-account-security__image-text-block,
    .page-blog-h58win-account-security__card-grid,
    .page-blog-h58win-account-security__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-blog-h58win-account-security__content-area {
        padding: 30px 15px;
    }

    /* Buttons */
    .page-blog-h58win-account-security__cta-button,
    .page-blog-h58win-account-security__btn-primary,
    .page-blog-h58win-account-security__btn-secondary,
    .page-blog-h58win-account-security a[class*="button"],
    .page-blog-h58win-account-security a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
        margin-left: 0 !important;
        margin-bottom: 15px;
    }
    .page-blog-h58win-account-security__cta-container {
        flex-direction: column;
        gap: 0;
    }
    .page-blog-h58win-account-security__cta-button:last-child {
        margin-bottom: 0;
    }

    /* FAQ */
    .page-blog-h58win-account-security__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    .page-blog-h58win-account-security__faq-answer {
        padding: 10px 20px 15px;
    }
}