/* style/blog-69win-code-guide.css */
/* body đã padding-top: var(--header-offset) từ shared.css; trang này không lặp lại */
.page-blog-69win-code-guide {
    color: var(--text-main, #F2FFF6); /* Màu chữ chính, giả định nền body là tối */
    background-color: var(--background, #08160F); /* Màu nền chính của trang */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 40px; /* Đảm bảo có khoảng đệm ở cuối trang */
}

/* --- Hero Section --- */
.page-blog-69win-code-guide__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Ảnh phía trên nội dung */
    align-items: center;
    justify-content: center;
    padding: 10px 20px 60px; /* Khoảng đệm nhỏ phía trên, lớn hơn phía dưới */
    background-color: var(--deep-green, #0A4B2C); /* Màu xanh đậm hơn cho nền hero */
    overflow: hidden; /* Đảm bảo không tràn nội dung */
}

.page-blog-69win-code-guide__hero-image-wrapper {
    width: 100%;
    max-width: 100%; /* Đảm bảo không tràn */
    margin-bottom: 20px; /* Khoảng cách giữa ảnh và nội dung */
    box-sizing: border-box;
}

.page-blog-69win-code-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.page-blog-69win-code-guide__hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 15px;
    z-index: 1; /* Đảm bảo văn bản nằm trên bất kỳ yếu tố nền nào */
}

.page-blog-69win-code-guide__main-title {
    font-size: clamp(2.2em, 4vw, 3.5em); /* Kích thước font H1 đáp ứng */
    color: var(--text-main, #F2FFF6);
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-blog-69win-code-guide__intro-text {
    font-size: 1.1em;
    color: var(--text-secondary, #A7D9B8);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-69win-code-guide__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Cho phép các nút xuống dòng trên màn hình nhỏ hơn */
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    width: 100%; /* Đảm bảo container chiếm toàn bộ chiều rộng */
    max-width: 100%; /* Ngăn chặn tràn */
    box-sizing: border-box;
}

.page-blog-69win-code-guide__btn-primary,
.page-blog-69win-code-guide__btn-secondary,
.page-blog-69win-code-guide__btn-tertiary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: normal; /* Cho phép văn bản xuống dòng */
    word-wrap: break-word; /* Đảm bảo từ dài bị ngắt */
    box-sizing: border-box; /* Bao gồm padding và border vào tổng chiều rộng và chiều cao của phần tử */
    max-width: 100%; /* Đảm bảo các nút không tràn */
}

.page-blog-69win-code-guide__btn-primary {
    background: var(--button-gradient, linear-gradient(180deg, #2AD16F 0%, #13994A 100%));
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-69win-code-guide__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-69win-code-guide__btn-secondary {
    background-color: transparent;
    color: var(--text-main, #F2FFF6);
    border: 2px solid var(--border-color, #2E7A4E);
}

.page-blog-69win-code-guide__btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.page-blog-69win-code-guide__btn-tertiary {
    background-color: var(--deep-green, #0A4B2C);
    color: var(--text-main, #F2FFF6);
    border: 1px solid var(--border-color, #2E7A4E);
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-blog-69win-code-guide__btn-tertiary:hover {
    background-color: var(--border-color, #2E7A4E);
    transform: translateY(-1px);
}

.page-blog-69win-code-guide__btn-link {
    color: var(--glow, #57E38D);
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.page-blog-69win-code-guide__btn-link:hover {
    color: var(--gold, #F2C14E);
    text-decoration: underline;
}

/* --- General Sections --- */
.page-blog-69win-code-guide__section {
    padding: 60px 20px;
    text-align: left;
    background-color: var(--background, #08160F); /* Nền nhất quán */
}

.page-blog-69win-code-guide__section:nth-of-type(odd) {
    background-color: var(--deep-green, #0A4B2C); /* Nền xen kẽ để tạo sự phân tách trực quan */
}

.page-blog-69win-code-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Khoảng đệm bên trong cho nội dung */
    box-sizing: border-box;
}

.page-blog-69win-code-guide__section-title {
    font-size: 2.5em;
    color: var(--text-main, #F2FFF6);
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
    line-height: 1.3;
}

.page-blog-69win-code-guide h3 {
    font-size: 1.8em;
    color: var(--gold, #F2C14E);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-69win-code-guide p {
    font-size: 1em;
    color: var(--text-secondary, #A7D9B8);
    margin-bottom: 15px;
}

.page-blog-69win-code-guide strong {
    color: var(--text-main, #F2FFF6);
}

.page-blog-69win-code-guide__image-content {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    min-width: 200px; /* Đảm bảo kích thước tối thiểu */
    min-height: 200px; /* Đảm bảo kích thước tối thiểu */
}

/* --- Lists --- */
.page-blog-69win-code-guide__steps-list,
.page-blog-69win-code-guide__info-list,
.page-blog-69win-code-guide__security-features {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
    counter-reset: step-counter;
}

.page-blog-69win-code-guide__steps-list li,
.page-blog-69win-code-guide__info-list li,
.page-blog-69win-code-guide__security-features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: var(--text-secondary, #A7D9B8);
}

.page-blog-69win-code-guide__steps-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--glow, #57E38D);
    color: #000000; /* Chữ đen cho nền phát sáng */
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9em;
}

.page-blog-69win-code-guide__info-list li::before,
.page-blog-69win-code-guide__security-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--glow, #57E38D);
    font-size: 1.5em;
    line-height: 1;
}

.page-blog-69win-code-guide__step-title {
    font-size: 1.3em;
    color: var(--text-main, #F2FFF6);
    margin-top: 0;
    margin-bottom: 10px;
}

.page-blog-69win-code-guide__note {
    font-style: italic;
    color: var(--text-secondary, #A7D9B8);
    border-left: 4px solid var(--gold, #F2C14E);
    padding-left: 15px;
    margin: 30px 0;
}