.section-blog-detail blockquote {
	padding: 1.0416666667rem;
	background-color: #f1f1f1;
}

.format-content a {
	color: #F73936;
}
.wpa_hidden_field{
	display: none;
} 

.zbtn.zbtn-normal.welcome.text-welcome {
    display: none;
}
.footer-column .mb-3 a{
	color: #F73936;
}

.zalo-chat-widget {
	right: 1px !important;
	bottom: 5.2083333333rem !important;
}

html.pum-open.pum-open-overlay.pum-open-scrollable body>:not([aria-modal=true]) {
	padding-right: 0px !important;
}

.wrap-bct img {
	width: 9rem; 
} 

@media (max-width: 767.98px) {
	.zalo-chat-widget {
		bottom: 65px !important;
	}
}
 /* --- General Styles --- */
 :root {
    --primary-color: #F73936;
    --secondary-color: #222;
    --background-color: #ffffff;
    --text-color: #555;
}

/* --- Scoped Container --- */
/* All styles for the 404 page are contained within this wrapper */
.page-404-container {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    width: 100%;
    overflow: hidden;
    text-align: center;
}

.page-404-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --- Content Container --- */
.page-404-container .content-wrapper {
    max-width: 600px;
    padding: 2rem;
    opacity: 0;
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* --- 404 Glitch Text --- */
.page-404-container .glitch-text {
    position: relative;
    font-size: clamp(8rem, 20vw, 10rem); /* Responsive font size */
    font-weight: 900;
    line-height: 1;
    color: var(--primary-color);
    z-index: 1;
    animation: glitch-shake 3s infinite linear;
}

/* The pseudo-elements create the glitch effect */
.page-404-container .glitch-text::before,
.page-404-container .glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Use the variable for the background color so it's consistent */
    background: var(--background-color); 
    overflow: hidden;
}

.page-404-container .glitch-text::before {
    left: -2px;
    text-shadow: 2px 0 var(--primary-color);
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    animation: glitch-anim-1 3s infinite linear alternate-reverse;
}

.page-404-container .glitch-text::after {
    left: 2px;
    text-shadow: -2px 0 var(--primary-color);
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

/* --- Glitch Animations (Global, no prefix needed) --- */
@keyframes glitch-shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes glitch-anim-1 {
    0% { clip-path: polygon(0 2%, 100% 2%, 100% 33%, 0 33%); }
    25% { clip-path: polygon(0 43%, 100% 43%, 100% 13%, 0 13%); }
    50% { clip-path: polygon(0 62%, 100% 62%, 100% 88%, 0 88%); }
    75% { clip-path: polygon(0 15%, 100% 15%, 100% 25%, 0 25%); }
    100% { clip-path: polygon(0 75%, 100% 75%, 100% 55%, 0 55%); }
}

@keyframes glitch-anim-2 {
    0% { clip-path: polygon(0 67%, 100% 67%, 100% 98%, 0 98%); }
    25% { clip-path: polygon(0 12%, 100% 12%, 100% 45%, 0 45%); }
    50% { clip-path: polygon(0 88%, 100% 88%, 100% 60%, 0 60%); }
    75% { clip-path: polygon(0 40%, 100% 40%, 100% 50%, 0 50%); }
    100% { clip-path: polygon(0 23%, 100% 23%, 100% 10%, 0 10%); }
}

/* --- Page Info Text --- */
.page-404-container .page-info h2 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-404-container .page-info p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* --- Countdown Button --- */
.page-404-container .home-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--background-color);
    text-decoration: none;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(247, 57, 54, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-404-container .home-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(247, 57, 54, 0.6);
}