:root {
    --primary-color: #FF8C1A;
    --secondary-color: #FFA53A;
    --card-bg: #17191F;
    --main-bg: #0D0E12;
    --text-main: #FFF3E6;
    --border-color: #A84F0C;
    --glow-color: #FFB04D;
    --deep-orange: #D96800;
}

.page-blog-secure-topzo-win-account {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main); /* Main text color for dark body background */
    background-color: var(--main-bg); /* Assuming body background from shared.css is dark */
}

.page-blog-secure-topzo-win-account__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-secure-topzo-win-account__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
    text-align: center;
    background-color: var(--main-bg);
}

.page-blog-secure-topzo-win-account__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 675px;
    margin-bottom: 20px;
}

.page-blog-secure-topzo-win-account__hero-content {
    padding: 0 20px;
    max-width: 900px;
    margin: 0 auto;
}

.page-blog-secure-topzo-win-account__hero-title {
    font-size: 2.8em;
    font-weight: bold;
    color: var(--text-main);
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 140, 26, 0.5);
}

.page-blog-secure-topzo-win-account__hero-description {
    font-size: 1.2em;
    color: #f0f0f0;
    margin-bottom: 30px;
}

.page-blog-secure-topzo-win-account__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-blog-secure-topzo-win-account__btn-primary,
.page-blog-secure-topzo-win-account__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

.page-blog-secure-topzo-win-account__btn-primary {
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange) 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.page-blog-secure-topzo-win-account__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
}

.page-blog-secure-topzo-win-account__btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-blog-secure-topzo-win-account__btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
}

/* General Section Styles */
.page-blog-secure-topzo-win-account__section-title {
    font-size: 2.2em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.page-blog-secure-topzo-win-account__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
}

.page-blog-secure-topzo-win-account__text-block {
    font-size: 1.1em;
    color: var(--text-main);
    text-align: justify;
    margin-bottom: 20px;
}

/* Features Section */
.page-blog-secure-topzo-win-account__features-section {
    padding: 60px 0;
    background-color: var(--main-bg);
}

.page-blog-secure-topzo-win-account__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-secure-topzo-win-account__feature-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    color: var(--text-main); /* Light text for dark card background */
}

.page-blog-secure-topzo-win-account__feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(255, 140, 26, 0.4);
}

.page-blog-secure-topzo-win-account__feature-icon {
    width: 150px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-blog-secure-topzo-win-account__feature-title {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-blog-secure-topzo-win-account__feature-description {
    font-size: 1em;
    color: #cccccc;
}

/* User Responsibility Section */
.page-blog-secure-topzo-win-account__user-responsibility-section {
    padding: 60px 0;
    background-color: #1a1c22;
}

.page-blog-secure-topzo-win-account__responsibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-secure-topzo-win-account__responsibility-card {
    background-color: #22252b; /* Slightly lighter dark for contrast */
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.page-blog-secure-topzo-win-account__responsibility-icon {
    width: 120px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.page-blog-secure-topzo-win-account__responsibility-title {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-blog-secure-topzo-win-account__responsibility-description {
    font-size: 0.95em;
    color: #cccccc;
}

/* Phishing Section */
.page-blog-secure-topzo-win-account__phishing-section {
    padding: 60px 0;
    background-color: var(--main-bg);
}

.page-blog-secure-topzo-win-account__phishing-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-blog-secure-topzo-win-account__phishing-image {
    flex: 1;
    min-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-secure-topzo-win-account__phishing-list {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-blog-secure-topzo-win-account__phishing-list li {
    background-color: var(--card-bg);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-left: 5px solid var(--primary-color);
    border-radius: 5px;
    font-size: 1.05em;
    color: var(--text-main);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Compromised Section */
.page-blog-secure-topzo-win-account__compromised-section {
    padding: 60px 0;
    background-color: #1a1c22;
}

.page-blog-secure-topzo-win-account__compromised-list {
    list-style-type: decimal;
    padding-left: 25px;
    margin-top: 30px;
    font-size: 1.1em;
    color: var(--text-main);
}

.page-blog-secure-topzo-win-account__compromised-list li {
    margin-bottom: 15px;
    padding-left: 10px;
}

.page-blog-secure-topzo-win-account__compromised-list li strong {
    color: var(--primary-color);
}

/* FAQ Section */
.page-blog-secure-topzo-win-account__faq-section {
    padding: 60px 0;
    background-color: var(--main-bg);
}

.page-blog-secure-topzo-win-account__faq-list {
    margin-top: 40px;
}

.page-blog-secure-topzo-win-account__faq-item {
    background-color: var(--card-bg);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.page-blog-secure-topzo-win-account__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--primary-color);
    cursor: pointer;
    background-color: #1f2229;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
    list-style: none;
}

.page-blog-secure-topzo-win-account__faq-question:hover {
    background-color: #2a2d34;
}

.page-blog-secure-topzo-win-account__faq-item[open] > .page-blog-secure-topzo-win-account__faq-question {
    background-color: var(--primary-color);
    color: #ffffff;
    border-bottom-color: var(--deep-orange);
}

.page-blog-secure-topzo-win-account__faq-item[open] > .page-blog-secure-topzo-win-account__faq-question .page-blog-secure-topzo-win-account__faq-toggle {
    color: #ffffff;
}

.page-blog-secure-topzo-win-account__faq-qtext {
    flex-grow: 1;
}

.page-blog-secure-topzo-win-account__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    color: var(--primary-color);
    transition: transform 0.3s ease, color 0.3s ease;
}

.page-blog-secure-topzo-win-account__faq-item[open] .page-blog-secure-topzo-win-account__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-secure-topzo-win-account__faq-answer {
    padding: 20px;
    font-size: 1.05em;
    color: #cccccc;
}

/* CTA Bottom Section */
.page-blog-secure-topzo-win-account__cta-bottom-section {
    padding: 60px 0;
    background-color: var(--main-bg);
}

.page-blog-secure-topzo-win-account__dark-section {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

/* Universal Image Sizing for Content Area */
.page-blog-secure-topzo-win-account img {
    max-width: 100%;
    height: auto;
    display: block;
    box-sizing: border-box;
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-secure-topzo-win-account__hero-title {
        font-size: 2.4em;
    }

    .page-blog-secure-topzo-win-account__hero-description {
        font-size: 1.1em;
    }

    .page-blog-secure-topzo-win-account__section-title {
        font-size: 1.8em;
    }

    .page-blog-secure-topzo-win-account__phishing-content {
        flex-direction: column;
        gap: 20px;
    }

    .page-blog-secure-topzo-win-account__phishing-image {
        min-width: unset;
        width: 100%;
    }

    .page-blog-secure-topzo-win-account__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    /* HERO 主图区域 */
    .page-blog-secure-topzo-win-account__hero-section {
        padding-top: 10px !important;
        padding-bottom: 20px;
    }

    .page-blog-secure-topzo-win-account__hero-image {
        max-height: 400px;
    }

    .page-blog-secure-topzo-win-account__hero-title {
        font-size: 1.8em;
    }

    .page-blog-secure-topzo-win-account__hero-description {
        font-size: 1em;
    }

    /* 通用图片与容器 */
    .page-blog-secure-topzo-win-account img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-blog-secure-topzo-win-account__container,
    .page-blog-secure-topzo-win-account__features-section,
    .page-blog-secure-topzo-win-account__user-responsibility-section,
    .page-blog-secure-topzo-win-account__phishing-section,
    .page-blog-secure-topzo-win-account__compromised-section,
    .page-blog-secure-topzo-win-account__faq-section,
    .page-blog-secure-topzo-win-account__cta-bottom-section,
    .page-blog-secure-topzo-win-account__dark-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* 产品展示图区域 (No dedicated product grid on this page, but general grid rules apply) */
    .page-blog-secure-topzo-win-account__features-grid,
    .page-blog-secure-topzo-win-account__responsibility-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-secure-topzo-win-account__feature-card,
    .page-blog-secure-topzo-win-account__responsibility-card {
        padding: 20px;
    }

    /* 按钮与按钮容器 */
    .page-blog-secure-topzo-win-account__cta-buttons {
        flex-direction: column !important;
        gap: 10px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        padding-left: 0;
        padding-right: 0;
    }

    .page-blog-secure-topzo-win-account__btn-primary,
    .page-blog-secure-topzo-win-account__btn-secondary {
        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;
    }

    /* 其他内容模块 */
    .page-blog-secure-topzo-win-account__section-title {
        font-size: 1.5em;
        margin-bottom: 20px;
    }

    .page-blog-secure-topzo-win-account__text-block,
    .page-blog-secure-topzo-win-account__phishing-list li,
    .page-blog-secure-topzo-win-account__compromised-list li,
    .page-blog-secure-topzo-win-account__faq-question,
    .page-blog-secure-topzo-win-account__faq-answer {
        font-size: 0.95em;
    }

    .page-blog-secure-topzo-win-account__faq-question {
        padding: 15px;
    }

    .page-blog-secure-topzo-win-account__faq-answer {
        padding: 15px;
    }
}