.wp-error-page {
    background-color: #f0f2f5; /* خاکستری خیلی روشن و تمیز */
   margin:20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3338; /* رنگ متن استاندارد ادمین وردپرس */
}

.wp-error-wrapper {
	box-sizing: border-box;
    background: #fff;
    padding: 50px;
    border-radius: 5px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    text-align: center;
    max-width: 1280px;
    width: 100%;
    border-top: 5px solid #2271b1; /* آبی رسمی وردپرس */
}

.wp-big-text {
    font-size: 120px;
    margin: 0;
    color: #dcdcde;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    line-height: 1;
}

.wp-logo-inner {
    color: #2271b1;
    background: #f0f2f5;
    width: 100px;
    height: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 8px solid #2271b1;
    font-size: 70px;
    animation: rotateW 4s linear infinite;
}

.wp-error-title {
padding:20px;
    font-size: 24px;
    margin: 40px 0 15px;
    color: #1d2327;
}

.wp-error-desc {
    font-size: 16px;
    color: #646970;
    line-height: 1.8;
    margin-bottom: 35px;
}

.wp-home-btn {
    display: inline-block;
    background: #2271b1;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    margin-bottom: 30px;
}

.wp-home-btn:hover {
    background: #135e96;
    transform: translateY(-2px);
}

.wp-search-fallback {
    border-top: 1px solid #f0f2f5;
    padding-top: 20px;
}

.wp-search-fallback p {
    font-size: 14px;
    color: #8c8f94;
    margin-bottom: 15px;
}

/* انیمیشن چرخش ملایم لوگو */
@keyframes rotateW {
    0% { transform: rotate(0deg); }
    20% { transform: rotate(10deg); }
    40% { transform: rotate(-10deg); }
    60% { transform: rotate(5deg); }
    100% { transform: rotate(0deg); }
}


@media (max-width: 600px) {

.wp-error-wrapper {

    width: 90%;
}

}