/*
Theme Name: dbazi-new
Theme URI: https://www.dbazi.com
Author: Ali Fakhar
Author URI: https://alifakhar.com
Description: dbazi-new
Version: 3.0.1 -
*/

<!--            This font is considered a proprietary software. To gain information about the laws regarding the use of these fonts, please visit www.fontiran.com            --------------------------------------------------------------------------------------            This set of fonts are used in this project under the license: (VTGEY)            --------------------------------------------------------------------------------------            ...-->  




/* Add this to the VERY TOP of style.css */

/* 1. Regular Text (Weight 400) */
@font-face {
    font-family: 'IRANSansX';
    src: url('assets/font/IRANSansXFaNum-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* 2. Bold Text (Weight 700) - Fixes your headlines */
@font-face {
    font-family: 'IRANSansX';
    src: url('assets/font/IRANSansXFaNum-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* 3. Extra Heavy/Black (Weight 900) - For very large titles */
@font-face {
    font-family: 'IRANSansX';
    src: url('assets/font/IRANSansXFaNum-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* 4. Light (Weight 300) */
@font-face {
    font-family: 'IRANSansX';
    src: url('assets/font/IRANSansXFaNum-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* 5. DemiBold (Weight 600) */
@font-face {
    font-family: 'IRANSansX';
    src: url('assets/font/IRANSansXFaNum-DemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}





/* CLS Fix: Reserve space for header */
header {
    min-height: 125px; /* Height for Desktop (Logo + Menu) */
}

/* Mobile Fix: Reduce reserved space */
@media (max-width: 768px) {
    header {
        min-height: 75px; /* Height for Mobile (Logo only) */
    }
}









/* Add this to the VERY TOP of style.css */
/*
@font-face {
    font-family: 'IRANSansX';
    src: url('/wp-content/themes/dbazi-new/fonts/IRANSansX-Regular.woff2') format('woff2'); 
    font-weight: 400;
    font-style: normal;
    font-display: swap; 
}

@font-face {
    font-family: 'IRANSansX';
    src: url('/wp-content/themes/dbazi-new/fonts/IRANSansX-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
*/


#reg_login_form_page {
    visibility: hidden;
}

:root {
	--main-color : #E62120;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  /* Added sans-serif as fallback so text appears immediately */
  font-family: IRANSansX, sans-serif; 
  font-size: 14px;
  line-height: 28px;
  min-height: 100vh;
  background-color: #F0F0FB;
  color: #373D3F;
}


body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: IRANSansX !important;
  margin-top: 10px;
  margin-bottom: 10px;
}

span,
p,
strong {
  /* cursor: default; */
}
p{
font-size: 15px;
font-weight: 400;
line-height: 32.38px;
color: #373D3F;

}

select, textarea, input{
  font-family: IRANSansX !important;
}
textarea{
  padding:20px;
}
 input{
  padding:10px;
}

body a {
  color: #373D3F;
  transition: 0.3s;
}

body.rtl a:hover {
  text-decoration: none !important;
  color: #E62120;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
figure{
  max-width: 100%;
}
a img.wp-post-image{
  transition: 0.15s;
  -webkit-filter: brightness(97%); 
  filter: brightness(97%); 
}
a img.wp-post-image:hover{
  /* opacity: 0.85; */
  -webkit-filter: contrast(110%) brightness(110%);
    filter: contrast(110%) brightness(110%);
}

header {
  padding: 20px 0 0 0;
  background-color: #fff;
  border-bottom: 1px solid #DEDEF2;
  position: relative;
}
header.fixedToTop {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  transition:0.4s;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-logo{
  display: block;
}

.my-account {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.my-account *{
  cursor: pointer;
}

.top-left-header {
  display: flex;
  align-items: center;
}

.top-left-header>div {
  margin-left: 10px;
}
.top-left-header .search-header{
  cursor:pointer;
}



.checkbox {
  opacity: 0;
  position: absolute;
}

.checkbox-label {
  background-color: #E5E5F2;
  width: 58px;
  height: 30px;
  border-radius: 50px;
  position: relative;
  padding: 2px 5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fa-moon {
  color: #f1c40f;
}

.fa-sun {
  color: #f39c12;
}

.checkbox-label .ball {
  background-color: #fff;
  width: 22px;
  height: 22px;
  position: absolute;
  left: 5px;
  top: 4px;
  border-radius: 50%;
  transition: transform 0.2s linear;
}

.checkbox:checked+.checkbox-label .ball {
  transform: translateX(24px);
  left: 9px;
}



.bottom-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  /* margin-bottom: 15px; */
}

.menu-right ul.navbar-nav {
  display: flex;
  align-items: center;
  list-style: none;
  padding-right: 0;
  margin-bottom: 0;
}
.menu-right ul.navbar-nav > li{/* height: 36px; */padding-bottom: 15px;text-align: center;border-bottom: 2px solid transparent;}
.menu-right ul.navbar-nav > li:hover{
  border-bottom:2px solid red;
}
.menu-right ul.navbar-nav > li > a {
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.menu-right ul>li>a svg {
  margin: 5px 10px 0 0px;
}

.menu-right ul.navbar-nav > li h2 {
  font-size: 16px;
  list-style: none;
  margin: 0;
  color: #373D3F;
}
.menu-right ul{
  padding-right:0;
}
.menu-right ul.navbar-nav ul.sub-menu{
  overflow: hidden;
  padding: 0;
  margin: 0;
  list-style: none;
  line-height: 50px;
  border-bottom: 1px solid #DEDEF2;
  padding-bottom: 10px;
  margin-bottom: 25px;
}
.menu-right ul.navbar-nav ul.sub-menu li{
  float:right;
  width: 33.33333%;
  text-align: right;
  line-height: 50px;
}
.menu-right ul.navbar-nav ul.sub-menu li a{
    display: flex;
    align-items: center;
}
.menu-right ul.navbar-nav ul.sub-menu li a svg{
    margin-left: 8px;
    margin-top: 0px;
}
.menu-right ul.navbar-nav ul.sub-menu li h2{
    line-height: 40px;
}
.menu-right ul.navbar-nav ul.sub-menu li h2:hover{color:red}
.menu-left ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin-bottom: 8px;
}


.menu-left ul li a {
  padding-right: 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 27.73px;
}


.home-slider {
  width: 1000px;
  height: 100%;
  margin-top: 20px;
  margin-bottom: 60px;
  overflow: visible !important;
}

.home-slider .swiper-slide {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  display: block;
}

.home-slider .swiper-slide .thumbnail-post-slider {
  display: block;

}

.title-meta-post-slider {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  bottom: 0;
  padding: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 75px;
}

.title-post-slider {
  font-size: 28px;
  font-weight: 700;
  line-height: 49px;
  letter-spacing: 0em;
  text-align: right;
  color: #fff;
  width: 75%;
  margin: 0 0 15px 0;
}

.title-post-slider a {
  color: #fff;
  transition: 0.15s;
}

.title-post-slider a:hover {
  opacity: 0.8;
  color: #fff;
}

.meta-post-slider {
  display: flex;
  align-items: center;
}

.meta-post-slider-category {
  font-family: IRANSansX;
  font-size: 13px;
  font-weight: 700;
  line-height: 23px;
  letter-spacing: 0em;
  color: #fff !important;
  background: #E62120;
  border-radius: 8px;
  padding: 3px 7px 3px 7px;
  display: flex;
  margin-left: 20px;
}

.meta-post-slider img {
  border-radius: 50%;
  margin-left: 10px;
}

.meta-post-slider span {
  font-family: IRANSansX;
  font-size: 12px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0em;
  color: #fff;
  padding-left: 20px;
}
.meta-post-slider span a{ color: #fff;}
.meta-post-slider svg {}

.count-comment-post-slider {
  display: flex;
  align-items: center;
  color: #fff;
}

.main-pagination-home-slider {
  display: flex;
}

.main-pagination-home-slider div {
  position: static;
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  border-radius: 50%;
}

.main-pagination-home-slider div::before,
.main-pagination-home-slider div::after {
  display: none !important;
}

.main-pagination-home-slider .swiper-button-prev {
  margin-left: 10px;
}


.ads-banner-index {
  margin: 35px auto;
  display: block;
}


.header-slider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.navigation-slider {
  display: flex;
  align-items: center;
}

.navigation-slider div {
  width: 44px;
  height: 44px;
  background-color: #DEDEF2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.navigation-slider div svg path {
  stroke: #373D3F;
  transition: 0.3s;
}

body.rtl .navigation-slider div:hover {
  background-color: #E62120;
}

.navigation-slider div:hover svg path {
  stroke: #fff;
}

.title-slider {
  font-family: IRANSansX;
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0em;
  margin-bottom: 0;
}

.title-posts-slider {
  font-family: IRANSansX;
  font-size: 18px;
  font-weight: 700;
  line-height: 31px;
  letter-spacing: 0em;
  margin-bottom: 10px;
}

.title-posts-slider a {
  color: #fff;
  transition: 0.3s;
}

.title-posts-slider a:hover {
  opacity: 0.8;
  color: #fff;
}

.posts-slider .swiper-slide {
  overflow: hidden;
  border-radius: 15px;
}
.posts-slider .swiper-slide .wp-post-image{
  width:100%;
}
.posts-slider .title-meta-post-slider {
  padding: 15px;
  padding-top: 55px;
}

.posts-slider .meta-post-slider {
  justify-content: space-between;
}

.posts-slider .title-meta-post-slider .count-comment-post-slider {
  padding-left: 0;
  color: #fff;
}



.main-articels-sidebars {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}

.sidebar-right {
  width: 28%;
}

.sidebar-left {
  width: 22%;
}

.main-last-posts {
  width: 71%;
}

.ads-sidebar {
  border-radius: 10px;
  margin-bottom: 20px;
}

.ads-top-articles {
  border-radius: 10px;
  margin-bottom: 20px;
}

.container-last-posts {
  border-radius: 10px;
  background-color: #fff;
  margin-bottom: 30px;
  overflow: hidden;
}

.title-last-posts {
  font-size: 18px;
  font-weight: 400;
  line-height: 31px;
  letter-spacing: 0em;
  padding: 20px;
  padding-bottom: 0;
  margin-bottom: 0;
}

.post-item-index {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #DEDEF2;
  align-items: flex-start;
}
.important-post-item-index{
    flex-direction: column;
}
.important-post-item-index .main-thumbnail-post-item{
    width: 100%;
    margin-bottom: 10px;
}
.important-post-item-index .right-post-item{
    width: auto;
    padding-left: 0;
}
.right-post-item {
  width: 60%;
  padding-left: 20px;
}

.title-post-item {
  margin-bottom: 15px;
}

.title-post-item a {
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  letter-spacing: 0em;
  color: #0D0D0D;
  transition: 0.3s;
}


.main-thumbnail-post-item {
  position: relative;
  overflow: hidden;
  width: 35%;
}

.thumbnail-post-item {
  display: block;
}

.main-thumbnail-post-item a.cat-item-post {
  font-size: 13px;
  font-weight: 500;
  line-height: 23px;
  letter-spacing: 0em;
  color: #fff !important;
  background: #E62120;
  border-radius: 8px;
  padding: 3px 7px 3px 7px;
  display: flex;
  position: absolute;
  bottom: 15px;
  left: 15px;
}

.excerpt-item-post {
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0em;
  margin: 0;
  margin-top: 12px;
}
.excerpt-item-post{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: justify;
}
.meta-post-item {
  font-size: 13px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0em;
  display: flex;
  align-items: center;
  position: relative;
}
.meta-post-item strong{
    font-weight: 500;
    padding: 0 5px;
}
.meta-post-item a {
  color: #373D3F;
}

.meta-post-item span {
  color: #606060;
}
.meta-post-item .comment-count{
  position:absolute;
  left: 0;
  top: 0;
}
.thumbnail-post-item {
  display: block;
  height: auto;
}
.thumbnail-post-item img{
  border-radius:10px;
  display:block;
}
.widget-sidebar {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  position: relative;
}
.widget_price-consoles{
  height: 474px;
  overflow: hidden;
}
.widget-sidebar.widget_media_image{
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.title-widget {
  font-size: 18px;
  font-weight: 400;
  line-height: 31px;
  letter-spacing: 0em;
  margin-bottom: 17px;
  margin-top: 0;
}

.content-price-day {
  display: none;
}
.content-price-day-1{
  display:block;
}
.day-price {
  /* padding: 0 12px !important; */
  margin: 15px 0;
}
.day-price .swiper-button-next,
.day-price .swiper-button-prev {
  top: 27px;
  width: 8px;
  display: none;
}

.day-price .swiper-button-next:after,
.day-price .swiper-button-prev:after {
  font-size: 13px;
  font-weight: bold;
  color: #999;
}

.day-price .swiper-button-next {
  left: 0px !important;
}

.day-price .swiper-button-prev {
  right: 0px !important;
}

.day-price .swiper-slide {
  list-style: none;
  border-radius: 12px;
  border: 1px solid #DEDEF2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  transition: 0.3s;
  cursor: pointer;
  width: 20%;
}

.day-price .swiper-slide:hover path, .day-price .swiper-slide.active path{
  fill: #fff !important;
  stroke: #fff !important;
}

.day-price .swiper-slide:hover, .day-price .swiper-slide.active {
  background-color: #E62120;
}

.day-price .swiper-wrapper {
  padding-right: 0;
  justify-content: space-around;
}


.day-price .swiper-slide.playstation-prices:hover, .day-price .swiper-slide.playstation-prices.active
 {background: #3C8AFF;
}
.day-price .swiper-slide.xbox-prices:hover, .day-price .swiper-slide.xbox-prices.active
 {background: #1BAB6F;
}
.day-price .swiper-slide.nintendo-prices:hover, .day-price .swiper-slide.nintendo-prices.active
 {background: #FF5352;
}





.swiper-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.swiper-progress-bar {
  width: 100%;
  height: 3px;
  position: relative;
  margin: 20px auto;
  background: #eeeeee;
}

.progress {
  height: inherit;
  left: 0;
  top: 0;
  position: absolute;
  background: #E62120;
  z-index: 1;
}

.progress-sections {
  direction: ltr;
  left: 0;
  top: 0;
  position: absolute;
  height: inherit;
  width: inherit;
  z-index: 2;
  display: flex;
  flex-direction: row;
  border-radius: 2px;
  overflow: hidden;
  width: 100%;
  span {
  flex: 1;
  height: inherit;
  border-right: 4px solid #fff;

    &:last-child {
      border-right-width: 0;
    }
  }

}

.swiper-counter {
  width: 100%;
  margin: 0 auto;
}

.last-videos-slider-item{
    overflow: hidden;
    border-radius: 8px;
}
.last-videos-slider-item::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  right: 0;
  z-index: 1;
}
.last-videos-slider-item img.wp-post-image{
    display: block;
    border-radius: 10px;
    width: 100%;
    transition: 0.3s;
}
.last-videos-slider-item:hover img.wp-post-image{
  opacity: 0.85;
}
.last-video-image {
  height: 330px;
  width: 100%;
  overflow: hidden;
  border-radius: 7px;
  background-repeat: no-repeat;
  background-size: cover;
}

.play-last-videos-icon {
  display: flex;
  width: 79px;
  height: 79px;
  /* background-image: url(./assets/img/7.png); */
  position: absolute;
  right: 50%;
  top: 50%;
  margin-top: -40px;
  margin-right: -40px;
  z-index: 1;
}
.play-last-videos-icon svg{
  transition: 0.3s;
}
.last-videos-slider-item:hover .play-last-videos-icon svg{
  fill: #E62120;
}
.cover-link-last-videos{
  display: block;
  position: absolute;
  width:100%;
  height: 100%;
  top:0;
  right:0;
  z-index: 2;
}

.title-last-videos-item {
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: right;
  color: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  padding: 10px;
  z-index: 3;
}

.title-last-videos-item a {
  color: #fff;
}

body .swiper-pagination {
  position: static;
}

.last-games-slider-item {
  display: flex;
  flex-direction: column;
}
.last-games-slider-item .wp-post-image{
  width:100%
}

/* Fix hover effect for Last Reviews Headline */
.last-games-slider-item a:hover .title-last-games-item {
    color: #E62120;
    transition: color 0.3s ease;
}

.title-last-games-item {
  font-size: 18px;
  font-weight: 700;
  line-height: 31px;
  letter-spacing: 0em;
  text-align: right;

}

.title-last-games-item a {
  color: #0D0D0D;
}

.details-side-post-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.author-name-slider-item div {
  font-size: 13px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0em;
  text-align: right;
  color: #373D3F;
}

.details-side-post-item a {
  color: #373D3F;
}



.go-to-archive-all-review {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: right;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #E62120;
  margin-top: 15px;
}


.post-box-side {
  display: flex;
  flex-direction: column;
  margin-bottom: 35px;
}

.post-box-side:last-child {
  margin-bottom: 0;
}
.post-box-side .img-post-box img{
  display:block;
  border-radius:10px;
  width: 100%;
  margin-bottom: 15px;
}
.title-post-box-side{
    line-height: 29px;
}
.title-post-box-side {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0em;
  color: #373D3F
}

.comment-box-side {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
}
.comment-box-side .avatar-comment-box img{
  border-radius:50%;
}
.comment-box-side:last-child {
  margin-bottom: 0;
}

.title-post-comment-side {
  border-right: 2px solid #DEDEF2;
  margin-right: 16px;
  padding-right: 15px;
  margin-top: 22px;
}

.title-post-comment-side a {
  display: flex;
  margin-top: -28px;
  font-size: 13px;
  font-weight: 700;
  line-height: 23px;
  letter-spacing: 0em;
}

.title-post-comment-side p {
  font-size: 13px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: justify;
  margin-top: 5px;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

footer {
  background-color: #fff;
  padding-top: 20px;
}

.menu-footer {}

.menu-footer ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-footer ul li {
  padding: 20px 25px;
}

.menu-footer ul li a {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: center;

}

.bottom-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo svg{
  margin-left:20px
}

.footer-logo svg:hover g path:nth-child(5){
  fill: #E62120;
}
.footer-logo p {
  font-family: IRANSansX;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0em;
  text-align: center;
  color: #717171;
}

.footer-social {
  display: flex;
  align-items: center;
}

.footer-social a {
  display: flex;
  margin-right: 30px;
}

.footer-social svg:hover {
}
.footer-social svg path{
  transition: 0.3s;
}
.footer-social svg:hover path {
    fill: #E62120;
}

.main-single-content {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}

.single-content {
  width: 76.7%;
}

.single-post-content{
  background-color: #fff;
  border-radius: 10px;
  padding: 15px 30px;
  position: relative;
}
.title-single-content{
font-size: 24px;
font-weight: 700;
line-height: 42px;
letter-spacing: 0em;
color:#0D0D0D;
}

.post-single-image {
    display: block;
    margin: 30px 0;
    border-radius: 10px;
    margin-top: -285px;
    /* NEW LINES BELOW */
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9; /* Reserves space immediately based on 1024x576 dimensions */
    background-color: #f0f0f0; /* Optional: Shows a placeholder color while loading */
}


.menu-walker{display:none;position: absolute;top: 100%;width: 100%;right: 0;background-color: #fff;z-index: 11;padding-top: 20px;border-top: 1px solid #DEDEF2;padding-bottom: 20px;}
li.mega:hover .menu-walker{
display:block;
}

.menu-posts{display:flex;justify-content: space-between;}
.menu-posts article{
    width: 15%;
    background-color: #f0f0fb;
    border-radius: 10px;
    overflow: hidden;
}

.dbazi-pagination{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 0;
    font-size: 16px;
    font-weight: 700;
	gap:10px;
}
.dbazi-pagination *{
  /* padding: 0 11px; */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0 5px;
}
.dbazi-pagination .page-numbers{}
.dbazi-pagination .page-numbers.current{
    color: #fff;
    background: #E62120;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}
.dbazi-pagination .page-numbers.dots{}
.dbazi-pagination .next.page-numbers{
    display: none;
}
.dbazi-pagination .prev.page-numbers{ display: none;}



.title-tab-index-slider{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 25px;
}
.title-tab-index-slider strong{
    font-size: 18px;
    font-weight: 700;
    line-height: 31.2px;
    text-align: right;
    margin-left: 7px;
}
.title-tab-index-slider a{
    font-size: 16px;
    font-weight: 400;
    line-height: 27.73px;
    text-align: right;
    color: #E62120;
}
.title-tab-index-slider svg{}


.tab-menu-index-item{
    overflow: hidden;
}
.tab-menu-index-item button{
    font-size: 15px;
    font-weight: 400;
    text-align: right;
    border-radius: 10px;
    margin-left: 10px;
    border-color: #DEDEF2 !important;
}
.tab-menu-index-item button.uk-active{
    background: #E62120;
    color: #fff;
}


.dbazi-single-post-content{font-size: 15px;font-weight: 400;line-height: 32.38px;text-align: justify;color: #373D3F;}



ol.comment-list{
margin: 0;
    padding: 0;
    list-style: none;
}

ol.comment-list .avatar{border-radius:50%;margin-top: 20px;border: 1px solid #d7d7d7;}
.comment-author{}
.comment-author .fn{
    display: inline-block;
    padding-right: 10px;
    margin-bottom: 0px;
    color: #373D3F;
    font-family: IRANSansX;
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    text-align: right;
}
.comment-author .says{
    display: none;
}
.comment-metadata{padding-right: 78px;margin-top: -29px;}
.comment-metadata a{
font-size: 13px;
    font-weight: 400;
    line-height: 22.53px;
    text-align: right;
    color: #9595A4;
}
.comment-content{
    border-right: 2px solid #DEDEF2;
    margin-right: 31px;
    padding-right: 47px;
    font-family: IRANSansX;
    font-size: 15px;
    font-weight: 400;
    line-height: 32.38px;
    text-align: justify;
    padding-top: 4px;
    color: #373D3F;
    margin-top: 10px;
}
ol.comment-list ol.children{
list-style: none;
}
ol.comment-list .reply{float: left;font-size: 15px;font-weight: 400;line-height: 26px;color: #373D3F;border: 1px solid #DEDEF2;border-radius: 10px;padding: 2px 20px;margin-top: -50px;}
ol.comment-list .reply:after{
  content: '';
  display:inline-block;
  width: 18px;
  height: 12px;
  margin: 9px 10px 0 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxOCAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEuNSA2LjAyMTQ4TDYuNSAxLjAyMTQ4TTEuNSA2LjAyMTQ4TDYuNSAxMS4wMjE1TTEuNSA2LjAyMTQ4TDExLjUgNi4wMjE0OEMxMy4xNjY3IDYuMDIxNDggMTYuNSA3LjAyMTQ5IDE2LjUgMTEuMDIxNSIgc3Ryb2tlPSIjMzczRDNGIiBzdHJva2Utd2lkdGg9IjEuNyIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=");
  background-repeat: no-repeat;
}
.comment-form {}
.comment-form #comment{
    width: 100%;
    border: 1px solid #DEDEF2;
    border-radius: 12px;
}
.comment-form #author{
    width: 100%;
    border: 1px solid #DEDEF2;
    border-radius: 12px;
    height: 43px;
}
.comment-form #email{
    width: 100%;
    border: 1px solid #DEDEF2;
    border-radius: 12px;
    height: 43px;
}
.comment-form #url{
    width: 100%;
    border: 1px solid #DEDEF2;
    border-radius: 12px;
    height: 43px;
}
.comment-form #submit{
    background: #E62120;
    color: #fff;
    border: 0;
    border-radius: 12px;
    padding: 11px 28px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    font-family: 'IRANSansX';
    margin: 10px 0;
}
.comments-title{
font-size: 13px;
    font-weight: 400;
    line-height: 22.53px;
    text-align: right;
    color: #9595A4;
}


#modal-search .uk-modal-body{
  border-radius: 10px;
  padding: 0;
  background: transparent;
}

.dbazi-search-form{
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.dbazi-search-form input{
    width: 100%;
    height: 50px;
    padding: 0 15px;
    font-family: 'IRANSansX';
    border: 0;
    margin: 0;
}
.dbazi-search-form button{
    background: #E62120;
    border: 0;
    padding: 5px;
    margin: 0 0 0 8px;
    border-radius: 50%;
}
.dbazi-search-form button svg{}






.pass-graybar {
  height: 3px;
  background-color: #ccc;
  width: 100%;
  position: relative
}

.pass-colorbar {
  height: 3px;
  background-image: url('./assets/img/passwordstrength.jpg');
  position: absolute;
  top: 0;
  left: 0
}

.pass-percent,.pass-text {
  font-size: 1em
}

.pass-percent {
  margin-right: 5px
}
.pass-text {
  display: none;
}

.pass-graybar {
  top: -13px;
}

.pass-wrapper {
  padding: 5px 5px;
}

#regloginform{}
#regloginform input.text-field , #regloginform_page input.text-field{
    display: block;
    width: 100%;
    border: 1px solid #DEDEF2;
    margin-bottom: 15px;
    height: 45px;
    border-radius: 10px;
    padding: 0 10px;
    font-family: 'IRANSansX';
}
#regloginform input:focus , #regloginform_page input:focus{
  outline:0;
  border: 1px solid #bbbbbb;
}
.logo-login-modal{
  display: block;
  margin: 20px auto;
}
#reg_login_form{
  border-radius: 10px;
  max-width: 410px !important;
}


.main-captch{
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  margin-bottom:15px;
}
.reload_captcha{
  cursor:pointer;
}
.main-img-captcha{
  display: flex;
  flex-direction: row-reverse;
  margin-right: 10px;
  align-items: center;
  min-width: 35%;
}
#regloginform .main-captch input.text-field{
  margin-bottom:0;
}

#regloginform .login_link, #regloginform .reg_link, #regloginform .f_pass ,#regloginform_page .login_link_page, #regloginform_page .reg_link_page ,#regloginform_page .f_pass{
  background: #E62120;
  color:#fff;
  width:100%;
  border-radius: 10px;
  height: 45px;
  border: 0;
  margin-bottom: 10px;
  margin-top: 10px;
  font-family: 'IRANSansX';
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-prev-video-widget, .swiper-button-next-video-widget{
    top: 39px !important;
    transform: scale(0.32);
    color: #000000 !important;
}
.swiper-button-prev-video-widget{
  left: 15px !important;
}
.swiper-button-next-video-widget{
    left: 52px !important;
    right: inherit !important;
}

.swiper-button-prev-video-widget:hover, .swiper-button-next-video-widget:hover{
  color: #E62120 !important;
}

.swiper-button-prev-video-widget:after, .swiper-button-next-video-widget::after{
  font-weight: bold;
}








.swiper-button-prev-game-widget, .swiper-button-next-game-widget{
  top: 39px !important;
  transform: scale(0.32);
  color: #000000 !important;
}
.swiper-button-prev-game-widget{
left: 15px !important;
}
.swiper-button-next-game-widget{
  left: 52px !important;
  right: inherit !important;
}

.swiper-button-prev-game-widget:hover, .swiper-button-next-game-widget:hover{
color: #E62120 !important;
}

.swiper-button-prev-game-widget:after, .swiper-button-next-game-widget::after{
font-weight: bold;
}





.morecontent span {
  display: none;
}
.morelink {
  display: block;
}







.swiper-thumbnails{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}
.swiper-thumbnails div{width: 24%;padding: 2px;cursor: pointer;}
.swiper-thumbnails .is-active-thumbnails{
    border: 2px solid #e62120;
    border-radius: 10px;
}











.item-price{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #DEDEF2;
    padding: 10px 0;
}
.item-price:last-child{
  border-bottom: 0
}
.right-item-price{
    display: flex;
    flex-direction: column;
}
.title-item-price{
    margin-left: 5px;
    margin-bottom: 7px;
}
.bottom-item-price{
    display: flex;
    align-items: center;
}
.down-up-item-price{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-left: 8px;
}
.down-price{
    background: #FF3C3C1A;
}
.up-price{
    background: #1BAB6F21;
}
.currency-item-price{
    font-size: 14px;
    font-weight: 400;
    line-height: 24.27px;
    text-align: right;
    padding-right: 5px;
}
.bottom-item-price strong{
    font-size: 16px;
    font-weight: 700;
    line-height: 27.73px;
    text-align: right;
}
.item-price img{
    margin-right: 10px;
    max-width: 83px;
}







.month-date-publish{
    background: #F0F0FB;
    font-size: 16px;
    font-weight: 400;
    line-height: 27.73px;
    text-align: center;
    border-radius: 12px;
    padding: 7px 0;
    color: #0D0D0D;
}
.img-date-publish-game{
    position: relative;
}
.img-date-publish-game span{
    position: absolute;
    bottom: 10px;
    right: 15px;
    background: #ffffff;
    width: calc( 100% - 30px );
    border-radius: 15px;
    padding: 3px 0;
    font-size: 13px;
    font-weight: 700;
    line-height: 22.53px;
    text-align: center;
}
.img-date-publish-game img{
    width: 100%;
}
.img-date-publish-game svg{}
.date-publish-accordion .uk-accordion-title{
  display: flex;
  align-items: center;
  justify-content: end;
  margin-top: 12px;
  border-bottom: 1px solid #DEDEF2;
  padding-bottom: 10px;
  cursor: pointer;
}
.date-publish-accordion{
  margin-bottom: 0;
}
.date-publish-accordion li:last-child .uk-accordion-title{
  border-bottom: 0;
  padding-bottom: 0px;
}
body.rtl .uk-accordion-title svg{
    margin-right: 15px;
}
.uk-accordion-title::before{
  display: none !important;
} 
.uk-accordion-title-game span{
    font-size: 13px;
    font-weight: 400;
    line-height: 22.53px;
    text-align: left;
    color: #373D3F;
    cursor: pointer;
}
.uk-accordion-title-game strong{
    font-size: 15px;
    font-weight: 700;
    line-height: 26px;
    text-align: left;
    color: #373D3F;
    cursor: pointer;
}
.uk-accordion-title-game:hover strong{
  color:#E62120;
}
body.rtl .uk-accordion-title-game{
    display: flex;
    flex-direction: column;
    text-align: left;
    cursor: pointer;
}




.date-publish-slider .swiper-button-next, .date-publish-slider .swiper-button-prev{
    top: 22px;
    transform: scale(.4);
    font-weight: 700 !important;
    color: #373D3F;
}
.date-publish-slider .swiper-button-next{
}
.date-publish-slider .swiper-button-prev{}







.mob-header{
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.mob-header > div{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.left-mob-header > *{
  margin-right:12px
}









.mob-modal-menu{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding:20px;
  background-color: transparent !important;
}

.mob-main-menu{}
.mob-main-menu > li{
    margin-top: 0 !important;
    position: relative;
}
.mob-main-menu > li::before{
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iNyIgdmlld0JveD0iMCAwIDEyIDciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xMSA2TDYgMUwxIDYiIHN0cm9rZT0iIzk1OTVBNCIgc3Ryb2tlLXdpZHRoPSIxLjciIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K");
  margin-top: 17px;
  background-repeat: no-repeat;
  background-position: center center;
  transform: rotate(180deg);
  position: absolute;
  left: 0;
  top: 3px;
}
.mob-main-menu > li.uk-open::before{
  transform: rotate(0deg);
}
.mob-main-menu > li > a{
    border-bottom: 1px solid #DEDEF2;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 27.73px;
    text-align: right;
}
.mob-main-menu li ul{}
.mob-main-menu li ul li{
    /* display: flex; */
    align-items: center;
}
.mob-main-menu li ul li::marker{
  color: red !important;
  font-size: 7px;
  }
.mob-main-menu li ul li a{
    font-size: 16px;
    font-weight: 400;
    line-height: 27.73px;
    text-align: right;
}






.bottom-mob-menu ul.navbar-nav{
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 0;
}
.bottom-mob-menu ul.navbar-nav li{
    list-style: none;
}
.bottom-mob-menu ul.navbar-nav li a{
    font-size: 16px;
    font-weight: 400;
    line-height: 27.73px;
    text-align: center;
}

.bottom-mob-menu .footer-social{
    margin-top: 30px;
    justify-content: space-between;
}
.bottom-mob-menu .footer-social a{
    margin: 0;
}
.bottom-mob-menu .footer-social a svg{}










.toggle-wrap {
  padding-left: 10px;
  position: relative;
  cursor: pointer;
  float: left;

  /*disable selection*/
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}
.toggle-bar,
.toggle-bar::before,
.toggle-bar::after,
.toggle-wrap.active .toggle-bar,
.toggle-wrap.active .toggle-bar::before,
.toggle-wrap.active .toggle-bar::after {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.toggle-bar {
  width: 27px;
  margin: 10px 0;
  position: relative;
  border-top: 3px solid #636363;
  display: block;
}
.toggle-bar::before,
.toggle-bar::after {
  content: "";
  display: block;
  background: #636363;
  height: 3px;
  width: 27px;
  position: absolute;
  top: -10px;
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -ms-transform-origin: 13%;
  -webkit-transform-origin: 13%;
  transform-origin: 13%;
}
.toggle-bar::after {
  top: 4px;
}
.toggle-wrap.active .toggle-bar {
  border-top: 6px solid transparent;
}
.toggle-wrap.active .toggle-bar::before {
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.toggle-wrap.active .toggle-bar::after {
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}












.swiper-mob-slider{
  margin-top:5px;
}
.swiper-progress-bar-mob{
    margin: 0 auto;
    width: 90%;
    position: absolute;
    bottom: 10px;
    right: 5%;
}
.item-mob-slider img{
  border-radius: 0;
  width:100%;
}
.swiper-progress-bar-mob .progress{
  background: #fff;
}
.swiper-progress-bar-mob .progress-sections span{
  border-right-color: #000;
  background-color: #ffffff38;
}








.footer-mob{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 25px;
}


.footer-mob .menu ul{
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  list-style: none;
  padding: 0;
  margin: 16px 0 21px 0;
}
.footer-mob .menu ul li a{
font-size: 16px;
font-weight: 400;
line-height: 27.73px;
color: #373D3F;

}





.mob-content-reverse{
  display: flex;
    justify-content: space-between;
    width: 77%;
}





body.rtl .mob-swiper-pagination, body.rtl .swiper-pagination-progres{
  display: flex;
  flex-direction: row-reverse;
  width: 90%;
  position: absolute;
  bottom: 10px;
  right: 5%;
  left: inherit;
}
body.rtl .swiper-pagination-progres{
  position: static;
  width:100%;
  margin-bottom:20px
}
.mob-swiper-pagination .swiper-pagination-bullet, .swiper-pagination-progres .swiper-pagination-bullet {
  position: relative;
  width: 156px;
  height: auto;
  text-align: left;
  border-radius: 0;
  opacity: 1;
  margin-right: 20px;
  background-color: transparent;

  i {
      position: absolute;
      bottom: 0;
      left: 0;
      z-index: 1;
      width: 100%;
      height: 4px;
      background-color: #afafaf47;
      border-radius: 4px;
  }

  b {
      position: absolute;
      bottom: 0;
      left: 0;
      z-index: 2;
      width: 0%;
      height: 4px;
      background-color: rgb(255 255 255);
      border-radius: 4px;
  }
}

.mob-swiper-pagination .swiper-pagination-bullet-active, .swiper-pagination-progres .swiper-pagination-bullet-active {
  background-color: transparent;
  b {
      animation-name: countingBar;
      animation-duration: 5s;
      animation-timing-function: ease-in;
      animation-iteration-count: 1;
      animation-direction: alternate ;
      animation-fill-mode: forwards;
  }
}
.swiper-pagination-progres .swiper-pagination-bullet-active b{
  
  background: #E62120;
}
.swiper-pagination-progres .swiper-pagination-bullet i{
  background-color: #afafaf47;
}
@keyframes countingBar {
  0% {
      width: 0;
  }

  100% {
      width: 100%;
  }
}

.title-mob-slider-item{
  color: #fff;
  position: absolute;
  top: 0;
  right: 0px;
  width: 100%;
  padding: 10px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  align-items: end;
  height: 100%;
  padding-bottom: 40px;
  padding-right: 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 31.2px;
  text-align: right;
}













#content-tabs-game-publish .uk-accordion-title-game strong,
#content-tabs-game-publish .uk-accordion-title-game span{
  text-align: right;
}

#click-to-tab-target{
font-family: IRANSansX;
font-size: 16px;
font-weight: 400;
line-height: 27.73px;
border: 0;
}
#click-to-tab-target:focus{
  outline: 0;
}









.review-slider .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: #F0F0FB;
  padding: 20px;
  border-radius: 14px;
  height: auto;
}



.rate-game{
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #000;
    border-radius: 50%;
    width: 77px;
    height: 77px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
}
.rate-game svg{position: absolute;top: -11px;right: -12px;max-width: inherit;transform:rotate(90deg)}
.rate-game span{
    font-size: 25.61px;
    font-weight: 700;
    line-height: 44.4px;
    text-align: center;
    color: #12BF23;
}


.title-mega-menu-slider{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.title-mega-menu-slider span{
font-size: 16px;
font-weight: 400;
line-height: 27.73px;
text-align: right;
color: #373D3F;

}




.mega-menu-slider-item{
  display: flex;
  justify-content: space-between;
}

.right-item-menu-slider{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
a.permalink-mega-item-slider{font-size: 16px;font-weight: 700;line-height: 27.73px;color: #373D3F;}

.mega-menu-slider-item img.wp-post-image{
    max-width: 192px;
    margin-right: 17px;
}



.rank-math-breadcrumb{
  display: flex;
  align-items: center;
}
.rank-math-breadcrumb p{
    font-size: 16px;
    font-weight: 400;
    line-height: 27.73px;
    display: flex;
    align-items: center;
    color: #373D3F;
}.rank-math-breadcrumb p *{
    padding-left: 7px;
}
.rank-math-breadcrumb a{}
.rank-math-breadcrumb span.separator{
    padding-top: 3px;
    font-weight: 700;
}








.dbazi-author-avatar{
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 400;
    line-height: 22.53px;
}
.dbazi-author-avatar img{
    border-radius: 50%;
    margin-left: 12px;
}
.dbazi-author-avatar span{
    color: #9595A4;
}
.dbazi-author-avatar strong{}
.dbazi-author-avatar strong a{
    color: #373D3F;
    padding-right: 5px;
    padding-left: 5px;
}





#rank-math-toc h2,
#rank-math-toc h3{
  font-size: 15px;
  font-weight: 700;
  line-height: 26px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
}

#rank-math-toc h2::before,
#rank-math-toc h3::before{
  content: '';
  display: block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iNyIgdmlld0JveD0iMCAwIDEzIDciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xMS4yNzI1IDAuOTk5OTc4TDYuNDk5NzMgNS43NzI3MUwxLjcyNzAxIDAuOTk5OTc4IiBzdHJva2U9IiMzMzMiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=");
  background-color: #F0F0FB;
  background-repeat: no-repeat;
  background-position: center center;
  transform: rotate(90deg);
  margin-left: 10px;
  transition: 0.3s;
}

#rank-math-toc.open h2,
#rank-math-toc.open h3,
#rank-math-toc h2:hover,
#rank-math-toc h3:hover{
  color: #E62120;
}
#rank-math-toc.open h2::before,
#rank-math-toc.open h3::before,
#rank-math-toc h2:hover :before,
#rank-math-toc h3:hover :before{
  transform: rotate(0deg);
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iNyIgdmlld0JveD0iMCAwIDEzIDciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xMS4yNzI1IDAuOTk5OTc4TDYuNDk5NzMgNS43NzI3MUwxLjcyNzAxIDAuOTk5OTc4IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K");  background-color: #E62120;
  background-color: #E62120;

}


#rank-math-toc nav{
  display: none;
}

#rank-math-toc nav > ul{
    list-style: none;
    padding-right: 0;
}
#rank-math-toc nav > ul > li{
    padding: 0px 0px 5px 0;
    border-radius: 10px;
    position: relative;
    transition:0.2s
}
#rank-math-toc nav ul li a{
  position:relative;
  display:block;
  padding-right:10px;
  border-radius:8px;
  padding-top: 7px;
  padding-bottom: 6px;
}
/* اصلاح بخش آیکون قبل از لینک */
#rank-math-toc nav > ul > li a:before {
    content: '';
    width: 8px;
    height: 14px;
    
    /* موقعیت آیکون */
    left: 20px !important; 
    top: 50%;
    position: absolute;
    
    /* آیکون فلش قرمز */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSIxNCIgdmlld0JveD0iMCAwIDggMTQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik03IDFMMSA3TDcgMTMiIHN0cm9rZT0iI0U2MjEyMCIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K");
    background-repeat: no-repeat;
    background-position: center;
    margin-top: -8px;
    
    /* تنظیمات انیمیشن - بسیار مهم */
    display: block !important; 
    opacity: 0;
    visibility: hidden;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

/* اصلاح وضعیت هاور لینک (رنگ قرمز و پس‌زمینه) */
#rank-math-toc nav > ul > li a:hover {
    background-color: #F0F0FB !important;
    color: #E62120 !important;
    padding-right: 15px !important;
}

/* نمایش آیکون هنگام هاور با افکت نرم */
#rank-math-toc nav > ul > li a:hover:before {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
}

#rank-math-toc nav > ul > li 
 > a{
    font-size: 15px;
    font-weight: 700;
    line-height: 30px;
    display: flex;
}
#rank-math-toc nav ul ul{
    list-style: none;
    padding-right: 15px;
    margin-top: 0px;
}
#rank-math-toc nav ul ul li{}




.post-author-box{
    display: flex;
    align-items: flex-start;
    background: #F0F0FB;
    border-radius: 10px;
    padding: 20px;
    margin: 0 0 25px 0;
}
.post-author-box img{
    border-radius: 50%;
    margin-left: 20px;
    border: 1px solid #DEDEF2;
}
.left-box-author-box{
    display: flex;
    flex-direction: column;
    width: fit-content;
    width: -webkit-fill-available;
}
.left-box-author-box > div{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.name-author-box{
    display: flex;
    flex-direction: column;
}
.name-author-box span{
font-size: 13px;
font-weight: 400;
line-height: 22.53px;
color: #9595A4;

}
.name-author-box strong{
font-size: 15px;
font-weight: 700;
line-height: 32.38px;
color: #373D3F;


}
.social-author-box{
    display: flex;
    align-items: center;
}
.social-author-box a{}
.social-author-box svg{
    margin-right: 10px;
    transition: 0.3s;
}
.social-author-box svg path{
  transition: 0.3s;
}
.social-author-box svg:Hover path{
  fill: #E62120
}
.left-box-author-box p{
    margin: 0;
font-size: 15px;
font-weight: 400;
line-height: 30.5px;
color: #373D3F;
}

.post-meta-bottom{
    display: flex;
    align-items: center;
    margin-left: 18px;
}
.post-meta-bottom svg{
    margin-left: 13px;
}
.post-meta-bottom a{
    background: #F0F0FB;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    padding: 4px 10px;
    margin-left: 12px;
    transition: 0.3s;
}
body.rtl .post-meta-bottom a:hover{
  background: #E62120;
  color:#fff
}







.archive-title{
  background: #F0F0FB;
  border-radius: 11px;
  font-size: 16px;
  font-weight: 400;
  line-height: 27.73px;
  color: #373D3F;
  margin: 20px;
  padding: 20px;
}

.archive-title span{font-size: 16px;font-weight: 700;line-height: 27.73px;color: #E62120;}



.no-result-posts{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 25px;
}
.no-result-posts p{
    font-size: 19px;
    font-weight: 400;
    line-height: 32.93px;
}
.no-result-posts img{}



.category_description{
  font-size: 15px;
  font-weight: 400;
  line-height: 32.38px;
  text-align: justify;
  color: #373D3F;
  border: 1px solid #DEDEF2;
  border-radius: 16px;
  padding: 25px;
  padding-bottom: 0;
  margin-top: 25px;
  margin-bottom: 25px;
}


.post-template-tpl-fullscreen, 
.post-template-tpl-simple-fullscreen{
  background-color: #fff;
}

.main-thumbanil-full-page{
    height: 85vh;
    background-repeat: no-repeat;
    background-size: cover;
    position:relative;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.main-thumbanil-full-page::before{
  content: '';
  display: block;
  width:100%;
  height:100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 96.36%);
  position: absolute;
  top:0;
  right:0;
}

.main-thumbanil-full-page p.second-title{
font-size: 28px;
font-weight: 400;
line-height: 48.54px;
text-align: center;
color:#fff;
  position:relative;
  margin:0;
}


.bottom-meta-review{
  position: absolute;
  bottom: 0;
  right:0;
  width:100%;
  min-height: 50px;
  display: flex;
  flex-direction: column;
}



.main-rate-review{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
}
.right-rate-review{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-left: 2px solid #dedef238;
    padding: 0 20px;
}
.right-rate-review span{
    display: flex;
    background: #FFB11B;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 27.58px;
    font-weight: 700;
    line-height: 47.81px;
}
.right-rate-review strong{
    font-size: 15px;
    font-weight: 700;
    line-height: 26px;
    color: #fff;
    padding-top: 8px;
}


.left-rate-review{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}
.left-rate-review span{
    display: flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 27.58px;
    font-weight: 700;
    line-height: 47.81px;
    background: #00D916;
}
.left-rate-review strong{
    font-size: 15px;
    font-weight: 700;
    line-height: 26px;
    color: #fff;
    padding-top: 8px;
}


/* --- New Fullscreen Header Styles (Optimized for Desktop & Mobile) --- */

/* 1. Header Title Typography */
.main-thumbanil-full-page h1 {
    font-weight: 900 !important; /* Extra Bold/Black Font */
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6); /* Better Readability on images */
    color: #fff;
    position: relative;
    padding: 0 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

/* Desktop Specific Title Size */
@media (min-width: 992px) {
    .main-thumbanil-full-page h1 {
        font-size: 48px !important;
        line-height: 1.3 !important;
        max-width: 85%;
        text-align: center;
    }
}

/* Mobile Specific Title Size */
@media (max-width: 768px) {
    .main-thumbanil-full-page h1 {
        font-size: 26px !important;
        line-height: 1.4 !important;
    }
}

/* 2. Glassmorphism Meta Bar */
.main-meta-review {
    /* Glass Effect */
    background: rgba(0, 0, 0, 0.75) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    
    /* Layout */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0 !important;
    width: 100%;
}

.item-meta-review {
    display: flex;
    flex-direction: column;
    padding: 0 35px;
    position: relative;
}

/* Vertical Separator Lines (Desktop Only) */
@media (min-width: 992px) {
    .item-meta-review:not(:last-child)::after {
        content: '';
        position: absolute;
        left: 0;
        top: 15%;
        height: 70%;
        width: 1px;
        background: rgba(255, 255, 255, 0.2);
    }
}

.item-meta-review span {
    font-size: 13px !important;
    opacity: 0.8;
    margin-bottom: 5px;
    color: #fff;
    text-align: right;
}

.item-meta-review strong {
    font-size: 16px !important;
    font-weight: 700;
    color: #fff;
    text-align: right;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}


/* --- اصلاحیه نهایی: حذف فاصله سفید و چسباندن جدول به هدر --- */
@media (max-width: 768px) {

    /* 1. تنظیم ارتفاع هدر */
    .main-thumbanil-full-page {
        height: auto !important;
        min-height: 65vh; 
        justify-content: flex-end !important;
        padding-bottom: 0 !important;
        padding-top: 80px;
        margin-bottom: 0 !important; /* اطمینان از حذف فاصله پایین هدر */
    }

    /* 2. تیتر اصلی */
    .main-thumbanil-full-page h1 {
        font-size: 28px !important;
        line-height: 1.4 !important;
        margin-bottom: 15px !important;
        text-align: right !important;
        padding: 0 20px !important;
        text-shadow: 0 2px 10px #000;
    }

    /* 3. حذف اطلاعات اضافه */
    .main-thumbanil-full-page .meta-post-item {
        display: none !important;
    }

    /* 4. کانتینر جدول: چسبیده به بالا */
    .main-meta-review {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        padding: 5px 20px 20px 20px !important;
        
        background: #111111 !important; 
        border-top: 1px solid #252525 !important;
        width: 100%;
        
        /* --- تغییر مهم برای حذف خط سفید --- */
        margin-top: -1px !important; /* کشیدن جدول به سمت بالا */
        position: relative !important;
        z-index: 2 !important; /* اولویت نمایش روی لایه‌های زیرین */
    }

    /* 5. ردیف‌های جدول */
    .item-meta-review {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        
        padding: 10px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        margin: 0 !important;
        border-left: none !important;
    }
    
    .item-meta-review:last-child {
        border-bottom: none !important;
    }
    .item-meta-review::after { display: none; }

    /* 6. استایل متن‌ها */
    .item-meta-review span {
        font-size: 13px !important;
        color: #bbb !important;
        margin: 0 !important;
        font-weight: normal !important;
    }
    
    .item-meta-review strong {
        font-size: 13px !important;
        color: #fff !important;
        text-align: left !important;
        max-width: 65%;
        line-height: 1.4 !important;
    }
}




.related-in-post{
  border: 1px solid #DEDEF2;
  border-radius: 14px;
  margin-bottom:15px;
  padding: 10px;
  position: relative;
  min-height: 70px;
  max-width: 100%;
}

.related-in-post::before{
  content: '';
  border-right: 3px solid #E62120;
  position: absolute;
  top:14px;
  right:-2px;
  height:calc(100% - 28px);
  border-radius: 4px;
}

.related-in-post.with-thumbnail{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: max-content;
  margin: 0 auto;
  margin-bottom: 15px;
  max-width: 100%;
}


.title-related-in-post{
font-size: 17px;
font-weight: 700;
line-height: 29.47px;
padding-left: 15px;
}
.title-related-in-post a{
  color: #0D0D0D;
}
.related-in-post .wp-post-image{
  max-width: 175px;
}


.title-box-related-in-post{
  font-size: 15px;
  font-weight: 700;
  line-height: 26px;
  color: #E62120;
}


.related-in-post.full-without-thumbnail .title-related-in-post,
.related-in-post.center-without-thumbnail .title-related-in-post{
  display: inline-block;
}


.related-in-post.center-without-thumbnail{
  width: max-content;
  margin: 0 auto;
  margin-bottom: 15px;
}


.title-related-in-post.title-listing-related{
font-size: 15px;
font-weight: 700;
line-height: 26px;

  transition: 0.3s;
  background: #F0F0FB;
  padding-right: 10px;
    border-radius: 8px;
    padding-top: 7px;
    padding-bottom: 6px;
    position: relative;
}
.title-listing-related:before{
  content: '';
  width: 8px;
  height: 14px;
  
  left: 20px;
  top: 50%;
  position: absolute;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSIxNCIgdmlld0JveD0iMCAwIDggMTQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik03IDFMMSA3TDcgMTMiIHN0cm9rZT0iI0U2MjEyMCIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: -8px;
}





.wp-block-quote{
  display: flex;
  flex-direction: column;
}
.wp-block-quote{
  border: 1px solid #DEDEF2;
  background: #F0F0FB;
  padding: 30px 93px 30px 28px;
  border-radius: 15px;
  position: relative;
  font-size: 14px;
  font-weight: 400;
  line-height: 30.22px;
  text-align: justify;
}

.wp-block-quote>p::before{
  content: '';
  width: 50px;
  height:50px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjciIGhlaWdodD0iMzEiIHZpZXdCb3g9IjAgMCAyNyAzMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzgxXzEyNTApIj4KPHBhdGggZD0iTTAuMjUwMjA4IDE3Ljc5ODNDMC4yNTAyMDggMjEuNzgwMiAzLjQ0NDY0IDI1LjAwNTQgNy4zODg2IDI1LjAwNTRINy44NjQ0OUM4LjkxNzQxIDI1LjAwNTQgOS43NjgwNiAyNC4xNDY1IDkuNzY4MDYgMjMuMDgzNUM5Ljc2ODA2IDIyLjAyMDUgOC45MTc0MSAyMS4xNjE2IDcuODY0NDkgMjEuMTYxNkg3LjM4ODZDNS41NTA0NiAyMS4xNjE2IDQuMDU3MzUgMTkuNjU0MiA0LjA1NzM1IDE3Ljc5ODNWMTcuMzE3OUg3Ljg2NDQ5QzkuOTY0MzcgMTcuMzE3OSAxMS42NzE2IDE1LjU5NDIgMTEuNjcxNiAxMy40NzQxVjkuNjMwMzdDMTEuNjcxNiA3LjUxMDMgOS45NjQzNyA1Ljc4NjYyIDcuODY0NDkgNS43ODY2Mkg0LjA1NzM1QzEuOTU3NDcgNS43ODY2MiAwLjI1MDIwOCA3LjUxMDMgMC4yNTAyMDggOS42MzAzN1YxNy43OTgzWk0xNS40Nzg4IDE3Ljc5ODNDMTUuNDc4OCAyMS43ODAyIDE4LjY3MzIgMjUuMDA1NCAyMi42MTcyIDI1LjAwNTRIMjMuMDkzMUMyNC4xNDYgMjUuMDA1NCAyNC45OTY2IDI0LjE0NjUgMjQuOTk2NiAyMy4wODM1QzI0Ljk5NjYgMjIuMDIwNSAyNC4xNDYgMjEuMTYxNiAyMy4wOTMxIDIxLjE2MTZIMjIuNjE3MkMyMC43NzkgMjEuMTYxNiAxOS4yODU5IDE5LjY1NDIgMTkuMjg1OSAxNy43OTgzVjE3LjMxNzlIMjMuMDkzMUMyNS4xOTI5IDE3LjMxNzkgMjYuOTAwMiAxNS41OTQyIDI2LjkwMDIgMTMuNDc0MVY5LjYzMDM3QzI2LjkwMDIgNy41MTAzIDI1LjE5MjkgNS43ODY2MiAyMy4wOTMxIDUuNzg2NjJIMTkuMjg1OUMxNy4xODYgNS43ODY2MiAxNS40Nzg4IDcuNTEwMyAxNS40Nzg4IDkuNjMwMzdWMTcuNzk4M1oiIGZpbGw9IndoaXRlIi8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDBfODFfMTI1MCI+CjxyZWN0IHdpZHRoPSIyNi42NSIgaGVpZ2h0PSIzMC43NSIgZmlsbD0id2hpdGUiIHRyYW5zZm9ybT0ibWF0cml4KC0xIDAgMCAxIDI2LjkwMDEgMC4wMjA5OTYxKSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=");
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  right: 25px;
  top: 25px;
  background-color: #E62120;
}

.wp-block-quote>p::after{
  content: '';
  width: 2px;
  height: calc(100% - 120px);
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  right: 49px;
  top: 84px;
  background-color: #E62120;
}








.cover-image-user{
  height: 50vh;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center center;
}

.main-meta-user{
  background: #00000066;
  padding: 30px 0;
  position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    min-height: 50px;
}

.main-meta-user .avatar{
  border-radius: 50%;
  margin-left:20px;
}


.main-meta-user .container{
  display: flex;
  align-items: flex-start;
}


.display-name-page-author{
  font-size: 30px;
  font-weight: 700;
  line-height: 52px;
  text-align: right;
  color: #FFFFFF;

}


.user-meta-page-author{
  display: flex;
  align-items: center;
}

.user-meta-page-author > div{
  display: flex;
  align-items: center;
  margin-right: 30px;
  color:#fff;
font-size: 16px;
font-weight: 400;
line-height: 27.73px;

}


.user-meta-page-author > div svg{
  margin-left:5px;
}



.role-name{font-size: 15px;font-weight: 700;line-height: 26px;background: #E62120;border-radius: 90px;color: #fff;padding: 4px 15px;}

.author-des-page{font-size: 15px;font-weight: 400;line-height: 30.5px;color:#fff;margin: 10px 0 0 0;}



.page-author-menu-tabs{}
.page-author-menu-tabs li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 15px;
    margin-bottom: 20px;
    padding: 11px 17px;
    cursor: pointer;
}
.page-author-menu-tabs li svg{}
.page-author-menu-tabs li.uk-active{
    background: #E62120 !important;
}
.page-author-menu-tabs li.uk-active svg path, .page-author-menu-tabs li.uk-active svg circle{
    stroke: #fff;
}
.page-author-menu-tabs a{
    font-size: 16px;
    font-weight: 400;
    line-height: 27.73px;
}
.page-author-menu-tabs li.uk-active a{
    color: #fff !IMPORTANT;
}



.edit-profile-form{
  padding: 40px 20px;
}
.edit-profile-form label
{
  display: block;

}

.edit-profile-form input[type="text"] ,
.edit-profile-form input[type="name"] ,
.edit-profile-form input[type="password"] ,
.edit-profile-form textarea
{
  width: 100%;
  border: 1px solid #DEDEF2;
  border-radius: 12px;
  margin-bottom: 10px;
}



.edit-profile-form button {
  background: #E62120;
  color: #fff;
  border: 0;
  border-radius: 12px;
  padding: 11px 28px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  font-family: 'IRANSansX';
  margin: 10px 0;
}


body.author .alert-success{
  position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
  color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
    text-align: center !important;
}


body.author .alert-danger{
  position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    text-align: center !important;
}



.container.container-details-author-mob{
  background-color: #181818;
  margin: -61px 15px 0 15px;
  position: relative;
  padding: 20px;
  border-radius: 15px;
}

.container-details-author-mob .avatar{
  border-radius: 50%;
  margin-left: 20px;
}

.author-meta-mob{
font-size: 14px;
font-weight: 400;
line-height: 24.27px;
color:#fff;
margin-top:15px;
}
.author-meta-mob svg{margin-left:5px}










.content-tab-author{
  background-color: #fff;
  padding:20px;
  display:none;
  margin-bottom: 20px;
  margin-top: 20px;
}

.title-tab-content-author{
  display: flex;
  align-items: center;
  cursor: pointer;
}
.title-tab-content-author span{
font-size: 15px;
font-weight: 700;
line-height: 26px;
}
.title-tab-content-author svg{
  margin-left:5px
}



.home-slider .swiper-slide:hover img.wp-post-image {
  -webkit-filter: contrast(110%) brightness(110%);
  filter: contrast(110%) brightness(110%);
}


.posts-slider .swiper-slide:hover img.wp-post-image {
  -webkit-filter: contrast(110%) brightness(110%);
  filter: contrast(110%) brightness(110%);
}



.positive-negative-points{
    display: flex;
    justify-content: space-between;
    margin: 60px 0;
}
.positive-points{
    width: 30%;

}
.title-positive-points{
      font-size: 18px;
      font-weight: 700;
      line-height: 31.2px;
      color: #01C515;
      display: flex;
      align-items: center;
}
.title-positive-points svg{
    margin-left: 5px;
    margin-top: -5px;
}
.negative-points{
    width: 30%;

}
.title-negative-points{
      font-size: 18px;
      font-weight: 700;
      line-height: 31.2px;
      color: #E62120;
      display: flex;
      align-items: center;
}
.title-negative-points svg{
    margin-left: 5px;
    margin-top: -5px;
}



.content-positive-negative-points{
  min-height: 100px;
  border-right: 1px solid #DEDEF2;
  margin-right: 12px;
  margin-top: 10px;
  padding: 20px;
}







.reply-title{
  display: flex;
    align-items: center;
}

.reply-title small{
  margin-right: 10px;
  background: #0000000d;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 17px;
}





.main-rate-game-single{
  position: relative;
}
.main-rate-game-single div{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.title-rate-game-single{
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
}
.number-rate-game-single{
    font-size: 69.66px;
    font-weight: 700;
    line-height: 75px;
}
.level-rate-game-single{
    font-size: 20px;
    font-weight: 700;
    line-height: 34.67px;
    background: #F0F0FB;
    border-radius: 14px;
    padding: 3px 15px;
    color: #131316 !important;
}
.rate-positive-negative-points{
  width:250px;
}






.sharing-post-dbazi{
    width: 45px;
    background-color: #fff;
    position: sticky;
    top: 20px;
    border-radius: 30px;
    z-index: 1;
    margin-right: -88px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}


.progress-read-article{
    background: #F0F0FB;
    width: 13px;
    height: 133px;
    border-radius: 14px;
    margin-top: 20px;
    padding: 10px 0;
    display: flex;
    justify-content: center;
}


.bar-long{
  background:#E62120;
  width:4px;
  border-radius: 10px;
  height: 0%;
}




.social-sharing{padding: 10px 20px !important;border-radius: 16px;min-width: auto !important;right: 45px !important;width: 140px !important;}
.social-sharing a{
    margin-left: 8px;
}
.social-sharing a:hover svg path{
  fill: #E62120 !important;
}

.copy-url-post{
  cursor: pointer;
  border-right: 1px solid #DEDEF2;
  padding-right: 12px;
}
.copy-url-post:hover path{
  stroke: #E62120 !important;
}
.copy-url-post svg:nth-child(2){
  display: none;
}
.copy-url-post.copyed svg:nth-child(2){
  display: block;
}
.copy-url-post.copyed svg:nth-child(1){
  display: none;
}


.go-to-top{
    margin-top: 20px;
    cursor: pointer;
    transition: 0.2s;
}
.go-to-top:hover{
  opacity:0.7;
}
.social-sharing-post-button{    cursor: pointer;
  transition: 0.2s;}
.social-sharing-post-button:Hover{ opacity:0.7;}

body.post-template-tpl-fullscreen .rank-math-breadcrumb,
body.post-template-tpl-simple-fullscreen .rank-math-breadcrumb{
  margin-top: -300px;
}


#modal-search{
  padding-top: 140px;
}


.banner-single-default-html{
  margin-bottom: 20px;
}


.show-more-price{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    transition: 0.3s;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    line-height: 27.73px;
    overflow: hidden;
}

.show-more-price:hover{
  color: #E62120;
}
.show-more-price svg{
    margin-right: 5px;
}
.show-more-price svg path{
  transition: 0.3s;
}
.show-more-price:hover svg path{
  stroke: #E62120;
}




#modal-menu{
  top: 69px;
  height: calc(100% - 69px);
  background-color: #fff;
}



.main-thumbanil-full-page-mobile{
  position: relative;
}
.main-thumbanil-full-page-mobile img.wp-post-image{
  border-radius: 0;
}
.main-thumbanil-full-page-mobile::before{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 96.36%);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.main-thumbanil-full-page-mobile strong.title-article-mobile{font-size: 18px;font-weight: 700;line-height: 35.1px;position: absolute;top: 45%;color: #fff;right: 0;z-index: 2;text-align: center;width: 100%;padding: 0 30px;}

.main-thumbanil-full-page-mobile .meta-post-item{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    
    padding: 20px 20px;
    z-index: 2;
}
.main-thumbanil-full-page-mobile .meta-post-item *{color: #fff;font-size: 11px;font-weight: 400;line-height: 19.07px;}


.author-comments{
  padding: 20px;
}

.dbazi-pagination .active{
  color: #fff !important;
  background: #E62120;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0;
}

#rateme > span{
  padding-left:5px;
  cursor: pointer;
}
#rateme > span.pos {
  margin-left:25px;
}




/* ------------------------------------------------------------------------------------ */

/* -------------------center img------------------- */
p:has(img.aligncenter) {
  text-align:center!important;
}



/*------------------- header menu ------------------*/
a.level-one {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
}

.menu-right ul.navbar-nav ul.sub-menu li a{
	line-height:40px;
}

.menu-right ul.navbar-nav > li > a:hover
{
color : unset ;
}





/* ------------------------slider gallery --------------------*/

/* Lightbox container */
.lightbox-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  backdrop-filter: blur(10px);
  transition: opacity 0.3s ease;
}

.lightbox-content .swiper-slide {
	align-items: center;
    justify-content: center;
}

.lightbox-container.active {
  display: flex;
  opacity: 1;
}

/* Lightbox content */
.lightbox-content {
  position: relative;
  width: 90%;
	height: 95%;
  padding: 20px;
	display: flex;
   flex-direction: column;
   justify-content: space-around;
}

.lightbox-content .swiper-slide {
  text-align: center;
}

.lightbox-content .swiper-slide img {
  height: 100%;
  width: auto;
	object-fit:contain;
}

/* Close button */
.close-button {
  position: fixed;
  top: 60px;
  right: 30px;
  font-size: 54px;
  cursor: pointer;
  z-index: 1000;
}
span.close-button {
    color: white;
}

/* Swiper container */
.swiper-container {
  width: 100%;
/*   height: 500px; */
}


.lightbox-content .swiper-container:last-child{
	overflow:visible;
}
/* Thumbnails */
.gallery-thumbs {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}


.gallery-thumbs .swiper-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 5px;
  cursor: pointer;
  border: 2px solid transparent;
	display:contents;
}

.gallery-thumbs .swiper-slide img{
	border:2px solid rgb(255 255 255 / 0%);
	object-fit:cover;
}
.swiper-slide.swiper-slide-thumb-active img{
	border:2px solid red;
}
.gallery-thumbs {
    width: 100%;
    height: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.gallery-thumbs .swiper-slide{
	width:100px!important;
	height:100px!important;
}



figure.wp-block-gallery {
    display: grid!important;
}


.wp-block-gallery .wp-block-image {
    width: 100% !important;
}

@media (min-width: 900px) {
figure.wp-block-gallery {
    grid-template-columns: repeat(3, 1fr);
}

	
}

@media (min-width: 600px) {

figure.wp-block-gallery {
    grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: 190px;
}
}

@media(max-width:767px){
	.slider-thumbnails{
		overflow:auto;
	}
	.slider-prev, .slider-next{
		top:38%;
	}
	.lightbox-modal button svg{
	width:10px;
}
	.gallery-thumbs .swiper-wrapper{
		width:100%;
	}
	
}


/*----------------------- blockquote ---------------------*/
.dark .wp-block-quote {
	border: 1px solid #2D2D33;
	background: #0C0C0E!important;
	
}

/* Specific Internal Content Link Hover (ACCESSIBILITY FIX) 
.dbazi-single-post-content p a {
    color: #CC1D1C !important; 
    
    transition: all 0.2s ease-in-out;
    

    border-bottom: 1px solid rgba(230, 33, 32, 0.3); 
    
    padding: 0 2px;
    border-radius: 4px;
}

.dbazi-single-post-content p a:hover {
    color: #000000 !important;
    background-color: rgba(230, 33, 32, 0.1); 
    border-bottom-color: #E62120; 
    text-decoration: none;
}
*/
/* ---------------title tab slider(strong to h2)-------------- */
.title-tab-index-slider h2 {
    font-size: 18px;
    font-weight: 700;
    line-height: 31.2px;
    text-align: right;
    margin-left: 7px;
}

/*------------------ title-post-item------------- */
a.title-post-item {
    font-size: 20px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 0em;
    color: #0D0D0D;
    transition: 0.3s;
}
@media(max-width:767px){
	a.title-post-item {
		font-size:16px;
	}
	.meta-post-item {
    font-size: 12px;
	}
}

/* ----------------------progress-read-article in dark body---------------------- */
body.dark .sharing-post-dbazi {
	background:#0C0C0E!important
}

body.dark .progress-read-article {
	background:#131315!important
}

body.dark .sharing-post-dbazi path{
	fill:#A7ABC0;
	stroke:#A7ABC0;
}
body.dark .social-sharing-post-button path{
	fill:unset;
}


body.dark .sharing-post-dbazi .uk-open path{
	fill:unset;
}


/*------------------------ progress-read-article ------------------------- */
.sharing-post-dbazi{
	top:150px!important;
}



/* --------------------------post slider------------------------- */
.posts-slider .title-posts-slider {
    position: absolute;
    z-index: 1;
bottom: 35px;
    right: 15px;

}
@media(max-width:767px){
	.posts-slider .title-posts-slider{
			padding-left:10px;
	}
	.title-posts-slider {
		font-size:17px!important;
	}
}

.meta-post-slider span {
    pointer-events: painted;
}

.posts-slider .title-meta-post-slider {
    pointer-events: none;
	padding-top:100px!important;
}

h3.title-posts-slider {
    color: #F3F3F3;
}

.meta-post-slider .count-comment-post-slider {
    pointer-events: painted;
}

.title-meta-post-slider {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0) 100%)!important;
}

/* --------------last video----------------- */
.title-last-videos-item {
/* 	padding-top:95%; */
	position:absolute!important;
	bottom:10px!important;
	top:unset;
	height:100%;
	display:flex;
	align-items:flex-end
	
}
	
/*------------------cart list img in res --------------------- 	 */
	@media only screen and (max-width: 768px) {
    .main-thumbnail-post-item img {
        max-width: 115px;
		height:130px;
		object-fit:cover;
		object-position:right;
    }
}
	
/* --------------h1 tag in home page ------------------ */
.site-title {
    display: none;
}

/* ----------------show more price in dark mode----------- */
body.dark .show-more-price {
	background:#131315;
}


/* -------------------header in loading-------------------- */
div#modal-login {
    position: absolute;
}
div#modal-search {
    position: absolute;
}


/* ------------- style h2 h3 tag in post----------- */
.dbazi-single-post-content h2, .dbazi-single-post-content h3{
	color:var(--main-color)!important;
}


/* ------ Custom Login Page Setting ------- */ 
article.single-post-content:has(.custom-login-page) .title-single-content {
	display : none;
}

article.single-post-content:has(.custom-login-page) .rank-math-breadcrumb {
display:none;
}

#loading-spinner {
	   display: none;
	position : absolute;
	top:0;
	right :0;
	width : 100%;
	height : 100%;
	background: #0000009c;
	    border-radius: 15px;
    backdrop-filter: blur(2px);
}

#loading-spinner img {
	position: absolute;
    right: 45%;
    top: 40%;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: var(--main-color);
    animation: spin 1s ease-in-out infinite;
    margin: 0 auto;
}

#loading-spinner-page {
	   display: none;
	position : absolute;
	top:0;
	right :0;
	width : 100%;
	height : 100%;
	background: #0000009c;
	    border-radius: 15px;
    backdrop-filter: blur(2px);
}

#loading-spinner-page img {
	position: absolute;
    right: 45%;
    top: 40%;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: var(--main-color);
    animation: spin 1s ease-in-out infinite;
    margin: 0 auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}



/*----------------------login form -------------------  */
.forgetform{
	display:none;
}

.container:has(.login-form) {
	min-height: calc(100vh - 350px);
}

.dbazi-single-post-content:has(.login-form){
	display: flex;
    justify-content: center;
}
.dbazi-single-post-content .login-form{
	margin-top:20px;
	width:85%;
/* 	opacity:0; */

}
.main-single-content:has(.login-form) .sidebar-left{
	display:none!important;
}

.main-single-content:has(.login-form) .single-content {
    width: 100%;
}

body.page-id-350222:has(.login-form) .title-tab-index-slider{
	display:none!important;
}

body.page-id-350222:has(.login-form) .mob-container{
	display:none!important;
}
body.page-id-350222:has(.login-form) .container:has(.main-single-content) {
    margin-bottom: 20px;
	width:500px;
}

@media(max-width:767px){
	body.page-id-350222:has(.login-form) .container:has(.main-single-content) {
    width: unset!important;
}
}

/* -------------------------archive-title span------------------------ */
.archive-title span{
	font-size:22px!important;
}


/*--------------------------------  */
.must-log-in a {
    color: var(--main-color) !important;
    padding: 3px 11px;
    background: #00000008;
    border-radius: 10px;
}


/*  ----------------------------------------comments load more btn-------------------------------------*/
button#load-more-comments {
    padding: 5px 20px;
    background: red;
    border: none;
    color: white;
    border-radius: 10px;
    margin-top: 20px;
	font: inherit;
}
div#comments-load-more {
    display: flex;
    justify-content: center;
}
/* ----------------------------------archive title--------------------------------- */
.archive-title {
	display: flex;
  flex-direction: column;
}

.archive-title p{
/* 	margin:0; */
	margin-bottom:-15px;
	
}
.archive-title h1{
	margin:0!important;
	
}


/* ---------------------------main-pagination-home-slider arrow hover------------------- */
.swiper-button-prev:hover rect{
	fill:black;
	fill-opacity:0.5;
	transition:all 0.1s ease-in;
}

.swiper-button-next:hover rect{
	fill:black;
	fill-opacity:0.5;
	transition:all 0.1s ease-in;
}

/* -------------------404 page --------------------*/

.not-found-page{
	display:flex;
	justify-content:center;
	align-items: center;
	padding:100px;
}
.not-found-page div{
	    text-align: right;
    margin-right: 20px;
}
.not-found-page p{
	font-size:33px;
	font-weight:700;
}
.not-found-page a{
	padding: 8px 20px;
  background: #f0f0fb;
  border-radius: 20px;
  color: #373d3f;
  font-size: 15px;
  text-decoration: none;
}
body.dark .not-found-page a{
	background: #373d3f;
}
.container:has(.not-found-page) {
	min-height: calc(100vh - 350px);
}
.container:has(.not-found-page) hr{
	display:none;
}

body:has(.not-found-page) .mob-content-reverse {
  width:100%;
	justify-content:center;
}
body:has(.not-found-page) .main-last-posts {
    width: 80%!important;
}

body:has(.not-found-page) .sidebar-left {
    display: none;
}
body:has(.not-found-page) .sidebar-right {
    display: none;
}

body:has(.not-found-page) .title-tab-index-slider {
    display: none;
}
body:has(.not-found-page) .archive-title {
    display: none;
}
body:has(.not-found-page) .mob-container{
    display: none;
}

@media(max-width:767px){
	.not-found-page {
    flex-direction: column;
    padding: 10px;
}
}

/* -------------------------------------- show rate game in left sidebar and thubnail--------------------------- */
.swiper-slide.last-games-slider-item .rate-game{
	z-index:2;
}
.main-thumbnail-post-item .rate-game{
	z-index:2;
}

/* --------------------------------------cart list item thumbnail in res--------------------------------------- */
@media only screen and (max-width: 768px) {
	    .post-item-index:not(.important-post-item-index) .main-thumbnail-post-item img {
        height: 115px;
    }
}



/*  ---------------------------------------------cart list  play icon------------------------------------------------*/
.post-item-index:not(.important-post-item-index) .play-last-videos-icon {
    width: 60px;
    height: 60px;
    right: 55%;
    top: 56%;
  
}
@media(max-width:767px){
	.post-item-index:not(.important-post-item-index) .play-last-videos-icon {
    width: 60px;
    height: 60px;
    right: 58%;
    top: 59%;
}
}

.post-item-index .main-thumbnail-post-item a:hover svg{
	fill:#e42222;
}


/*---------------------------------------- tag style in post---------------------------------------------------  */
.post-meta-bottom {
    flex-wrap: wrap;
    gap: 10px;
}

/* -------------------------------------------banner-ads----------------------------------------------------------- */
.banner-ads {
 border-radius: 10px;
  margin-bottom: 20px;
}
.footer-banner-ads{
	border-radius: 10px;
/* 	margin:20px; */
}
.header-banner.header-banner-desktop {
    margin: 0 20px;
}


/* --------------------------------------price-consoles------------------- */
.show-less-price{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    transition: 0.3s;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    line-height: 27.73px;
    overflow: hidden;
}

body.dark .show-less-price {
    background: #131315;
}
.show-less-price:hover{
  color: #E62120;
}
.show-less-price svg{
    margin-right: 5px;
}
.show-less-price svg path{
  transition: 0.3s;
}
.show-less-price:hover svg path{
  stroke: #E62120;
}

.container-content-price{
/* 	height:500px; */
	padding-bottom:45px;
}
.widget_price-consoles {
/*     max-height: 474px!important; ارتفاع اولیه محدود */
    overflow: hidden;
    transition: max-height 0.5s ease; /* ترنزیشن نرم */
	padding-bottom: 20px;
}


.widget-sidebar.widget_price-consoles.open {
    height: auto;
/*     padding-bottom: 60px; */
}

/* -----------------------------comment rate---------------------------------- */

ol.comment-list .reply{
	padding:2px 10px!important;
}
.comment-content .rateme.pos.green svg path#Vector{
	fill:rgb(1, 197, 21)!important;
}
.comment-content .rateme.pos.green svg:hover path#Vector{
	opacity:0.7;
}

.comment-content .rateme.neg.red svg path#Vector{
	    fill: rgb(230, 33, 32);!important;
}
.comment-content .rateme.neg.red svg:hover path#Vector{
	    opacity:0.7;
}
/* ---------------------------------avatar-img------------------------------------ */
.main-meta-user .avatar{
height:138px!important;
width:138px!important;
}

.container-details-author-mob .avatar{
	height:74px!important;
	width:74px!important;
}

/*-----------------------------log/reg msg-----------------  */
.alert.alert-danger.mt-3.text-center {
    background: #ffd0c8b3;
    color: red;
	padding: 10px;
    border-radius: 10px;
}

  
/*home slider top banner */
.ads-banner-index.top {
    margin: 10px auto;
    display: block;
}

/* ------------------------------ comment no reply --------------------- */
.comment-reply-title{
	    display: flex;
        gap: 30px;
    align-items: center;
}

a#cancel-comment-reply-link {
    color: red;
	font-size: 14px;
}


/* Fix for Last Videos Slider CLS */
.swiper-video-widget {
    min-height: 330px; /* Reserves space for the images */
    display: block;    /* Ensures it takes up space even if empty */
    overflow: hidden;
}

/* Fix for Publish Game Widget CLS */
.date-publish-slider {
    min-height: 400px; /* Adjust based on your average widget height */
    overflow: hidden;
}

/* Fix for Price Consoles CLS */
.widget_price-consoles .swiper.day-price {
    min-height: 60px; /* Reserves space for the icons row */
}


/* --- START OPTIMIZED CLS FIXES --- */

/* Fix for Last Videos Slider CLS */
.swiper-video-widget {
    min-height: 330px;
    display: block;
    overflow: hidden;
    /* Prevent layout shift during load */
    aspect-ratio: 16/9; 
}

/* Fix for Publish Game Widget CLS */
.date-publish-slider {
    min-height: 400px;
    overflow: hidden;
    /* Ensure it has dimension before JS loads */
    display: block; 
}

/* Fix for Price Consoles Widget */
.widget_price-consoles {
    /* Force height so it doesn't collapse */
    min-height: 474px; 
    display: block;
}

/* Fix for Home Main Slider (The LCP Element) */
/* This is critical for your Mobile Score */
.home-slider {
    min-height: 250px; /* Adjust based on your mobile slider height */
    display: block;
}
@media (min-width: 768px) {
    .home-slider {
        min-height: 450px; /* Adjust based on desktop slider height */
    }
}

/* --- END OPTIMIZED CLS FIXES --- */


/* In style.css */

/* Fix for Home Slider CLS */
.home-slider .swiper-slide {
    /* Adjust this aspect ratio to match your image dimensions, e.g., 16/9 or 4/3 */
    aspect-ratio: 16 / 9; 
    width: 100%;
}

/* Fix for Price Widget CLS */
.widget_price-consoles .swiper-container {
    /* Reserve height for the price slider so it doesn't jump */
    min-height: 80px; 
}

/* Fix for Last Videos Widget */
.last-videos-slider-item img.wp-post-image {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
}

/* FIX: Force Last Videos Widget Image to fit correctly */
.last-videos-slider-item img.wp-post-image {
    height: 330px !important;  /* Restores the original height */
    width: 100%;               /* Ensures it fills width */
    object-fit: cover;         /* Crops the image nicely instead of stretching it */
    display: block;
}

/* Ensure the thumbnails stay clickable/hoverable */
.swiper-thumbnails {
    position: relative;
    z-index: 10; /* Brings thumbnails above any overlays */
}


/* =========================================
   DBAZI THEME UPDATE: Content Link Hover Effects
   (Auto-detects Light & Dark Mode)
   ========================================= */

/* ---------------------------------------------------------
   1. LIGHT MODE (Default)
   Target: Only text links inside post content paragraphs/lists
   --------------------------------------------------------- */
.dbazi-single-post-content p a,
.dbazi-single-post-content ul li a,
.dbazi-single-post-content ol li a {
    /* Dark Red: High contrast for readability on white backgrounds */
    color: #CC1D1C !important; 
    font-weight: 600; /* Slightly bolder to stand out */
    text-decoration: none;
    
    /* UX: Subtle underline indicates it is clickable */
    border-bottom: 1px solid rgba(204, 29, 28, 0.3); 
    
    padding: 0 3px; 
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
}

/* Light Mode Hover State */
.dbazi-single-post-content p a:hover,
.dbazi-single-post-content ul li a:hover,
.dbazi-single-post-content ol li a:hover {
    color: #ffffff !important; /* White text */
    background-color: #E62120; /* Full Brand Red Background */
    border-bottom-color: #E62120; 
    box-shadow: 0 2px 5px rgba(230, 33, 32, 0.2); /* Slight lift effect */
}

/* ---------------------------------------------------------
   2. DARK MODE OVERRIDES
   Target: Overrides 'dark.css' specifically for content
   --------------------------------------------------------- */
body.dark .dbazi-single-post-content p a,
body.dark .dbazi-single-post-content ul li a,
body.dark .dbazi-single-post-content ol li a {
    /* Salmon/Light Red: Readable against dark grey (#131316) */
    color: #FF6B6B !important; 
    
    /* Lighter underline so it is visible in dark mode */
    border-bottom: 1px solid rgba(255, 107, 107, 0.4); 
}

/* Dark Mode Hover State */
body.dark .dbazi-single-post-content p a:hover,
body.dark .dbazi-single-post-content ul li a:hover,
body.dark .dbazi-single-post-content ol li a:hover {
    color: #131316 !important; /* Dark text for contrast against bright bg */
    background-color: #FF6B6B; /* Bright Salmon Background */
    border-bottom-color: #FF6B6B;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3); /* Glowing effect */
}


/* --- Force Fix for Featured Image on Pages --- */
/* استفاده از html body برای بالا بردن قدرت کد */
html body.page img.post-single-image,
html body.page .post-single-image {
    margin-top: 0px !important;       /* خنثی کردن -285px */
    margin-bottom: 20px !important;   /* فاصله از پایین */
    position: static !important;      /* حذف حالت شناور احتمالی */
    width: 100% !important;
    height: auto !important;
    z-index: 1 !important;
    box-shadow: none !important;      /* حذف سایه مزاحم اگر باشد */
}

/* اصلاح فاصله تیتر */
html body.page .title-single-content {
    margin-top: 20px !important;
    padding-top: 10px !important;
    display: block !important;
}


/* =========================================
   BUTTON HOVER EFFECTS (UI/UX FIX)
   Target: Comments, Profile Edit, Login/Register
   ========================================= */

/* 1. تعریف انیمیشن نرم برای حالت عادی دکمه‌ها */
.comment-form #submit,
#regloginform .login_link, 
#regloginform .reg_link, 
#regloginform .f_pass,
#regloginform_page .login_link_page, 
#regloginform_page .reg_link_page, 
#regloginform_page .f_pass,
.edit-profile-form button {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* سایه پیش‌فرض کوچک */
}

/* 2. استایل هنگام هاور (وقتی موس روی دکمه می‌رود) */
.comment-form #submit:hover,
#regloginform .login_link:hover, 
#regloginform .reg_link:hover, 
#regloginform .f_pass:hover,
#regloginform_page .login_link_page:hover, 
#regloginform_page .reg_link_page:hover, 
#regloginform_page .f_pass:hover,
.edit-profile-form button:hover {
    background-color: #b91b1b !important; /* قرمز تیره‌تر */
    transform: translateY(-3px); /* حرکت دکمه به بالا */
    box-shadow: 0 8px 15px rgba(230, 33, 32, 0.35) !important; /* سایه قرمز رنگ */
    color: #fff !important;
    cursor: pointer;
}

/* 3. استایل هنگام کلیک (Active) - حس فشرده شدن */
.comment-form #submit:active,
.edit-profile-form button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(230, 33, 32, 0.3) !important;
}

/* =========================================
   LOAD MORE BUTTON HOVER FIX
   Matches other site buttons
   ========================================= */

/* 1. تنظیم انیمیشن برای دکمه نمایش بیشتر */
button#load-more-comments {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* سایه اولیه */
    cursor: pointer;
}

/* 2. استایل هنگام هاور (حرکت موس روی دکمه) */
button#load-more-comments:hover {
    background-color: #b91b1b !important; /* قرمز تیره‌تر */
    transform: translateY(-3px); /* حرکت به بالا */
    box-shadow: 0 8px 15px rgba(230, 33, 32, 0.35) !important; /* سایه قرمز */
}

/* 3. استایل هنگام کلیک */
button#load-more-comments:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(230, 33, 32, 0.3) !important;
}

/* =================================================
   Dbazi Magazine Styles (Final Version - Fixed)
   ================================================= */

/* 1. استایل کلی صفحه */
.magazine-single-new {
    background-color: #f4f6f8 !important;
    padding-bottom: 60px;
    font-family: 'IRANSansX', sans-serif !important;
}

/* 2. حذف لوگوی مزاحم Flipbook (کد دقیق) */
.real3dflipbook .flipbook-main-wrapper > img {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
}

/* 3. استایل کارت سفید (برای مجله و کامنت‌ها) */
.mag-single-card {
    background: #fff !important;
    border-radius: 20px !important;
    box-shadow: 0 5px 25px rgba(0,0,0,0.04) !important;
    padding: 40px !important;
    margin-bottom: 30px !important;
    border: 1px solid #f0f0f0 !important;
    position: relative;
    /* نکته مهم برای موبایل: اجازه می‌دهیم دکمه‌های بیرون زده دیده شوند */
    overflow: visible !important; 
}

/* 4. تنظیمات داخلی مجله */
.mag-single-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px dashed #eee;
    padding-bottom: 30px;
}
.mag-single-header h1.entry-title {
    font-size: 28px !important;
    font-weight: 900 !important;
    color: #111 !important;
    margin-bottom: 20px !important;
}
.meta-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff5f5;
    color: #E62120;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid rgba(230, 33, 32, 0.1);
}

/* 5. دکمه‌های ناوبری */
.mag-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.mag-navigation a {
    background: #f8f9fa;
    padding: 12px 25px;
    border-radius: 12px;
    color: #333 !important;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.mag-navigation a:hover {
    background: #E62120 !important;
    color: #fff !important;
    border-color: #E62120 !important;
}

/* 6. استایل کامنت‌ها (ساده و یکدست) */
.comments-title-main {
    font-size: 18px !important;
    font-weight: 900 !important;
    color: #333;
    margin-bottom: 20px !important;
    border-right: 4px solid #E62120;
    padding-right: 10px;
}
/* جلوگیری از ایجاد حاشیه اضافی دور کامنت‌ها */
.mag-comments-section .comment-list {
    padding: 0 !important;
    margin: 0 !important;
}
.mag-comments-section .comment-body {
    border-bottom: 1px solid #f0f0f0 !important;
    margin-bottom: 15px !important;
    padding-bottom: 15px !important;
}
/* مخفی کردن هرگونه بک‌گراند اضافی که قالب می‌دهد */
.mag-comments-section li.comment {
    background: transparent !important;
}

/* 7. بردکرامب */
.mag-breadcrumb-container {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 30px;
}
.custom-breadcrumbs {
    font-size: 13px;
    font-weight: 500;
    color: #666;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.custom-breadcrumbs a {
    color: #333 !important;
    text-decoration: none;
    font-weight: 700;
}
.custom-breadcrumbs a:hover { color: #E62120 !important; }
.custom-breadcrumbs .separator { margin: 0 10px; color: #ccc; }

/* 8. موبایل */
@media (max-width: 768px) {
    /* فضای بیشتر در موبایل برای دکمه فول‌اسکرین */
    .mag-single-card {
        padding: 20px 15px !important;
    }
    
    /* دکمه‌های ناوبری تمام عرض */
    .mag-navigation {
        flex-direction: column;
        gap: 10px;
    }
    .mag-navigation a {
        width: 100%;
        text-align: center;
    }
}


/* تنظیم کانتینر اصلی دایره امتیاز */
.swiper-mob-slider .rate-game {
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    z-index: 20 !important;
    
    width: 77px !important;
    height: 77px !important;
    min-width: 77px !important;
    border-radius: 50% !important;
    
    /* کوچک‌نمایی برای موبایل */
    transform: scale(0.6) !important;
    transform-origin: top left;
    
    /* استفاده از فلکس برای تراز کردن محتوا */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    
    margin: 0 !important;
    padding: 0 !important;
}

/* تنظیم دقیق نوار رنگی (SVG) برای قرارگیری در مرکز مطلق */
.swiper-mob-slider .rate-game svg {
    position: absolute !important;
    
    /* قرار دادن نقطه شروع در وسط دایره */
    top: 50% !important;
    left: 50% !important;
    right: auto !important; /* خنثی کردن استایل دسکتاپ */
    bottom: auto !important;
    
    /* کشیدن شکل به عقب به اندازه نصف سایز خودش تا دقیقا وسط بیفتد */
    /* rotate(90deg) برای حفظ چرخش اصلی نوار امتیاز */
    transform: translate(-50%, -50%) rotate(90deg) !important;
    
    width: auto !important;
    height: auto !important;
    max-width: unset !important;
    margin: 0 !important;
}

/* اطمینان از اینکه عدد هم دقیقا وسط است */
.swiper-mob-slider .rate-game span {
    line-height: 1 !important; /* حذف فضای اضافی بالا و پایین فونت */
    margin: 0 !important;
    padding-top: 2px; /* ریزه‌کاری: گاهی فونت‌های فارسی کمی نیاز به پایین آمدن دارند */
}

/* =========================================
   استایل‌های نهایی آرشیو (V11 - Harmony Fix)
   ========================================= */

/* 1. تنظیمات پایه */
.dbazi-archive-wrapper {
    background-color: #f4f6f8;
    padding-bottom: 60px;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}
.admin-bar-active { padding-top: 0px !important; }
body.admin-bar #wpadminbar { z-index: 99999 !important; }
body.dark .dbazi-archive-wrapper { background-color: #121212; }
.dbazi-archive-wrapper ~ div:not(footer):not(.menu-walker):not(#wpadminbar) { display: none !important; }
body.no-scroll { overflow: hidden; }
.mobile-only { display: none; }
.desktop-only { display: inline; }

/* 2. فیلتر بار */
.dbazi-full-filter-bar {
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 25px 0;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
body.dark .dbazi-full-filter-bar {
    background-color: #1e1e1e;
    border-bottom: 4px solid #E62120;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
.filter-header-row {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px;
}
.archive-main-title { font-size: 24px; font-weight: 900; color: #333; margin: 0; }
.archive-subtitle { font-size: 13px; color: #888; display: block; margin-top: 5px; }
body.dark .archive-main-title { color: #fff; }
body.dark .archive-subtitle { color: #aaa; }

/* دکمه فیلتر موبایل */
.mobile-filter-btn {
    display: none; background-color: #E62120; color: #fff; border: none; padding: 8px 16px;
    border-radius: 20px; font-family: 'IRANSansX'; font-size: 13px; cursor: pointer;
}
.mobile-modal-header, .mobile-modal-backdrop { display: none; }

/* فرم فیلتر */
.gamer-filters .gf-row { display: flex; gap: 15px; align-items: flex-end; flex-wrap: wrap; }
.gf-item { flex: 1; min-width: 180px; }
.gf-item label { display: block; font-size: 12px; font-weight: 700; margin-bottom: 5px; color: #555; }
body.dark .gf-item label { color: #ccc; }
.gf-actions { display: flex; gap: 10px; }
.gamer-btn {
    height: 48px; padding: 0 25px; border-radius: 8px; font-family: 'IRANSansX';
    font-weight: 700; font-size: 13px; cursor: pointer; transition: 0.2s;
    display: flex; align-items: center; justify-content: center; border: none;
}
.btn-apply { background-color: #E62120; color: #fff; }
.btn-reset { background-color: #f0f2f5; color: #555; text-decoration: none !important; }
body.dark .btn-reset { background-color: #333; color: #ccc; }

/* Select2 */
.dbazi-archive-wrapper .select2-container .select2-selection--single {
    height: 48px !important; background-color: #f9f9f9 !important; border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important; display: flex !important; align-items: center !important;
}
.dbazi-archive-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #333 !important; font-size: 13px !important; line-height: 48px !important;
}
body.dark .dbazi-archive-wrapper .select2-container .select2-selection--single {
    background-color: #2b2b2b !important; border-color: #444 !important;
}
body.dark .dbazi-archive-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered { color: #fff !important; }

/* =========================================
   استایل‌های نهایی صفحه آرشیو (V15 - Full Mobile Optimization)
   ========================================= */


.dbazi-archive-wrapper {
    background-color: #f4f6f8;
    padding-bottom: 60px;
    min-height: 100vh;
    position: relative;
    z-index: 1;
    overflow-x: hidden; /* اطمینان مضاعف */
}
.admin-bar-active { padding-top: 0px !important; }
body.admin-bar #wpadminbar { z-index: 99999 !important; }
body.dark .dbazi-archive-wrapper { background-color: #121212; }
.dbazi-archive-wrapper ~ div:not(footer):not(.menu-walker):not(#wpadminbar) { display: none !important; }
body.no-scroll { overflow: hidden; }
.mobile-only { display: none; }
.desktop-only { display: inline; }

/* 2. فیلتر بار */
.dbazi-full-filter-bar {
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 25px 0;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
body.dark .dbazi-full-filter-bar {
    background-color: #1e1e1e;
    border-bottom: 4px solid #E62120;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
.filter-header-row {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px;
}
.archive-main-title { font-size: 24px; font-weight: 900; color: #333; margin: 0; }
.archive-subtitle { font-size: 13px; color: #888; display: block; margin-top: 5px; }
body.dark .archive-main-title { color: #fff; }
body.dark .archive-subtitle { color: #aaa; }

/* دکمه فیلتر موبایل */
.mobile-filter-btn {
    display: none; background-color: #E62120; color: #fff; border: none; padding: 8px 16px;
    border-radius: 20px; font-family: 'IRANSansX'; font-size: 13px; cursor: pointer;
}
.mobile-modal-header, .mobile-modal-backdrop { display: none; }

/* فرم فیلتر */
.gamer-filters .gf-row { display: flex; gap: 15px; align-items: flex-end; flex-wrap: wrap; }
.gf-item { flex: 1; min-width: 180px; }
.gf-item label { display: block; font-size: 12px; font-weight: 700; margin-bottom: 5px; color: #555; }
body.dark .gf-item label { color: #ccc; }
.gf-actions { display: flex; gap: 10px; }
.gamer-btn {
    height: 48px; padding: 0 25px; border-radius: 8px; font-family: 'IRANSansX';
    font-weight: 700; font-size: 13px; cursor: pointer; transition: 0.2s;
    display: flex; align-items: center; justify-content: center; border: none;
}
.btn-apply { background-color: #E62120; color: #fff; }
.btn-reset { background-color: #f0f2f5; color: #555; text-decoration: none !important; }
body.dark .btn-reset { background-color: #333; color: #ccc; }

/* Select2 */
.dbazi-archive-wrapper .select2-container .select2-selection--single {
    height: 48px !important; background-color: #f9f9f9 !important; border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important; display: flex !important; align-items: center !important;
}
.dbazi-archive-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #333 !important; font-size: 13px !important; line-height: 48px !important;
}
body.dark .dbazi-archive-wrapper .select2-container .select2-selection--single {
    background-color: #2b2b2b !important; border-color: #444 !important;
}
body.dark .dbazi-archive-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered { color: #fff !important; }
.select2-dropdown { border: 1px solid #e0e0e0 !important; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-radius: 8px !important; z-index: 999999 !important; }
.select2-results__option { padding: 10px 15px !important; font-size: 13px; transition: all 0.2s; }
.dbazi-archive-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100% !important; top: 0 !important; display: flex !important; align-items: center !important; justify-content: center !important; width: 30px;
}
.dbazi-archive-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin: 0 !important; position: static !important; transform: translateY(1px); border-color: #888 transparent transparent transparent !important;
}

/* Select2 Dark Mode */
body.dark .dbazi-archive-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow b { border-color: #fff transparent transparent transparent !important; }
body.dark .select2-dropdown { background-color: #2b2b2b !important; border-color: #444 !important; color: #e0e0e0 !important; }
body.dark .select2-container--default .select2-results__option { background-color: transparent !important; color: #ccc !important; }
body.dark .select2-container--default .select2-results__option[aria-selected="true"] { background-color: #3f3f3f !important; color: #fff !important; font-weight: bold; }
body.dark .select2-container--default .select2-results__option--highlighted[aria-selected] { background-color: #E62120 !important; color: #fff !important; }
body.dark .select2-search__field { background-color: #1a1a1a !important; color: #fff !important; border: 1px solid #555 !important; border-radius: 4px !important; }

/* 3. گرید */
.dbazi-main-grid { display: flex; gap: 30px; align-items: flex-start; }
.dbazi-content-area { width: 73%; flex-shrink: 0; }
.dbazi-sidebar-area { width: 27%; min-width: 300px; flex-shrink: 0; }

/* 4. کارت پست */
.dbazi-arch-list { display: flex; flex-direction: column; gap: 20px; }
.dbazi-arch-item {
    background: #fff; display: flex; padding: 20px; border: 1px solid #eef0f2;
    border-radius: 12px; align-items: flex-start; transition: all 0.3s ease;
}
.dbazi-arch-item:hover {
    transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-color: #E62120;
}
body.dark .dbazi-arch-item { background-color: #1e1e1e; border-color: #333; }

.dbazi-arch-thumb {
    width: 30%; margin-left: 25px; flex-shrink: 0; position: relative;
}
.dbazi-arch-thumb img {
    border-radius: 8px; width: 100%; height: 160px; object-fit: cover;
}
.dbazi-arch-cat {
    position: absolute; bottom: 10px; right: 10px; background-color: #E62120; color: #fff;
    font-size: 11px; padding: 3px 8px; border-radius: 6px; font-weight: 700; z-index: 2; transition: 0.3s;
}
.dbazi-arch-cat:hover { background-color: #333; color: #fff; }

.dbazi-arch-info { width: 70%; display: flex; flex-direction: column; }
.dbazi-arch-title a {
    font-size: 18px; font-weight: 800; color: #222; line-height: 1.5; transition: 0.3s;
}
body.dark .dbazi-arch-title a { color: #fff; }
.dbazi-arch-meta {
    font-size: 12px; color: #888; margin: 10px 0; display: flex; align-items: center; gap: 8px;
}
.meta-comments { margin-right: auto; display: flex; align-items: center; gap: 4px; }
.dbazi-arch-excerpt { font-size: 13px; line-height: 1.8; color: #666; margin: 0; }
body.dark .dbazi-arch-excerpt { color: #aaa; }

/* 5. سایدبار */
.dbazi-sidebar-area > div > *:not(.widget_dbazi_sidebar_social), 
.dbazi-sidebar-area .widget:not(.widget_dbazi_sidebar_social),
.ad-placeholder-box {
    background: #fff; padding: 20px; border-radius: 12px; margin-bottom: 20px;
    border: 1px solid #DEDEF2; box-shadow: 0 2px 10px rgba(0,0,0,0.02); width: 100% !important; display: block; box-sizing: border-box;
}
.widget_dbazi_sidebar_social {
    background: transparent !important; border: none !important; box-shadow: none !important; padding: 0 !important; margin-bottom: 20px;
}
.dbazi-sidebar-area .widget ul { padding: 0; margin: 0; list-style: none; }
.dbazi-sidebar-area .widget li { margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid #eee; }
.dbazi-sidebar-area .widget li:last-child { border: none; padding-bottom: 0; }
.dbazi-sidebar-area .widget-title, .dbazi-sidebar-area h2 {
    font-size: 16px; font-weight: 800; color: #333; margin: 0 0 15px 0; padding-bottom: 10px; border-bottom: 2px solid #f0f0f0;
}

body.dark .dbazi-sidebar-area > div > *:not(.widget_dbazi_sidebar_social),
body.dark .dbazi-sidebar-area .widget:not(.widget_dbazi_sidebar_social),
body.dark .ad-placeholder-box {
    background-color: #1e1e1e; border-color: #333; color: #eee;
}
body.dark .dbazi-sidebar-area .widget-title, body.dark .dbazi-sidebar-area h2 { color: #fff; border-bottom-color: #333; }
body.dark .dbazi-sidebar-area a { color: #ccc; }
body.dark .dbazi-sidebar-area li { border-bottom-color: #333; }

/* 6. صفحه‌بندی (D-Pad Style - Swipeable on Mobile) */
.dbazi-pagination-box { 
    display: flex; 
    justify-content: center; 
    margin-top: 40px; 
    gap: 8px; 
    padding-bottom: 10px; /* فضا برای اسکرول بار در موبایل */
}

.dbazi-pagination-box .page-numbers {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    width: 50px !important; 
    height: 50px !important; 
    flex-shrink: 0 !important; /* جلوگیری از له شدن */
    background: #fff; 
    border-radius: 50% !important; 
    color: #333; 
    text-decoration: none;
    font-weight: bold; 
    font-size: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

body.dark .dbazi-pagination-box .page-numbers { background: #1e1e1e; color: #fff; border: 1px solid #333; }
.dbazi-pagination-box .current { 
    background: #E62120 !important; color: #fff !important; border: none !important; 
}
.dbazi-pagination-box svg path { stroke: #333; stroke-width: 2; }
body.dark .dbazi-pagination-box svg path { stroke: #fff; }

/* 7. استایل‌های موبایل (Swipeable & Compact) */
@media (max-width: 992px) {
    .mobile-only { display: inline; }
    .desktop-only { display: none; }
    .mobile-filter-btn { display: flex; }
    
    /* مودال فیلتر */
    .filter-modal-container {
        position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 999999;
        visibility: hidden; opacity: 0; transition: all 0.3s ease;
    }
    .filter-modal-container.active { visibility: visible; opacity: 1; }
    .mobile-modal-backdrop {
        position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); display: block;
    }
    .filter-modal-content {
        position: absolute; bottom: 0; left: 0; width: 100%; background: #fff;
        border-top-left-radius: 20px; border-top-right-radius: 20px; padding: 20px;
        transform: translateY(100%); transition: transform 0.3s ease; max-height: 90vh; overflow-y: auto; z-index: 2;
    }
    body.dark .filter-modal-content { background: #1a1a1a; }
    .filter-modal-container.active .filter-modal-content { transform: translateY(0); }
    
    .mobile-modal-header {
        display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; border-bottom: 1px solid #eee; padding-bottom: 10px;
    }
    body.dark .mobile-modal-header { border-bottom-color: #333; color: #fff; }
    .close-btn { background: none; border: none; font-size: 20px; cursor: pointer; color: #888; }
    
    .gamer-filters .gf-row { flex-direction: column; align-items: stretch; gap: 15px; }
    .gf-item { width: 100%; min-width: 100%; }
    .gf-actions { width: 100%; margin-top: 10px; }
    .gamer-btn { width: 100%; }

    .dbazi-main-grid { flex-direction: column; gap: 0; }
    .dbazi-sidebar-area { display: block !important; width: 100%; order: 10; margin-top: 30px; }
    .dbazi-content-area { width: 100%; order: 1; }
    
    .dbazi-arch-item { padding: 15px; flex-direction: row-reverse; align-items: center; gap: 15px; }
    .dbazi-arch-thumb { width: 100px !important; height: 100px !important; margin: 0 !important; flex-shrink: 0; }
    .dbazi-arch-thumb img { width: 100px !important; height: 100px !important; border-radius: 8px; }
    .dbazi-arch-cat { display: none !important; }
    .dbazi-arch-info { width: auto; flex-grow: 1; }
    .dbazi-arch-title a { font-size: 14px; line-height: 1.4; }
    .dbazi-arch-excerpt, .mobile-hide { display: none; }
    .dbazi-arch-meta { margin-bottom: 0; font-size: 11px; }

    /* صفحه‌بندی اسکرولی موبایل */
    .dbazi-pagination-box {
        justify-content: flex-start !important; /* شروع از راست */
        overflow-x: auto; /* اسکرول افقی */
        padding: 10px 5px;
        width: 100%;
        -webkit-overflow-scrolling: touch; /* نرم کردن اسکرول */
        scrollbar-width: none; /* مخفی کردن اسکرول بار */
        
        /* ماسک فید برای نشان دادن ادامه دار بودن */
        mask-image: linear-gradient(to left, black 90%, transparent 100%);
        -webkit-mask-image: linear-gradient(to left, black 90%, transparent 100%);
    }
    .dbazi-pagination-box::-webkit-scrollbar { display: none; }
    
    .dbazi-pagination-box .page-numbers {
        margin: 0 3px; /* فاصله کمتر */
    }
}


/* =========================================
   FIX: اصلاح جایگاه فلش‌های ویجت در سایدبار آرشیو
   ========================================= */

/* 1. اطمینان از اینکه ویجت مرجع مختصات باشد */
.dbazi-sidebar-area .widget {
    position: relative !important;
}

/* 2. تنظیم دقیق جایگاه فلش‌ها (چسبیدن به گوشه چپ ویجت) */
.dbazi-sidebar-area .widget .header-slider {
    position: absolute !important;
    top: 20px !important;  /* فاصله از بالای باکس */
    left: 20px !important; /* فاصله از چپ باکس */
    margin: 0 !important;  /* حذف مارجین منفی مزاحم قالب اصلی */
    width: auto !important;
    height: auto !important;
    z-index: 10 !important;
    display: flex !important;
    justify-content: flex-end !important;
}

/* 3. استایل‌دهی به خود دکمه‌های کوچک فلش */
.dbazi-sidebar-area .navigation-slider {
    display: flex !important;
    gap: 8px !important; /* فاصله بین دو فلش */
}

.dbazi-sidebar-area .navigation-slider div {
    width: 32px !important;
    height: 32px !important;
    background-color: #f5f5f5 !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: 0.3s;
}

/* هاور دکمه‌ها */
.dbazi-sidebar-area .navigation-slider div:hover {
    background-color: #E62120 !important;
}
.dbazi-sidebar-area .navigation-slider div:hover svg path {
    stroke: #fff !important;
}

/* دارک مود */
body.dark .dbazi-sidebar-area .navigation-slider div {
    background-color: #2d2d2d !important;
}
body.dark .dbazi-sidebar-area .navigation-slider div:hover {
    background-color: #E62120 !important;
}

/* استایل شمارنده نتایج */
.result-count-badge {
    display: inline-block;
    background-color: rgba(230, 33, 32, 0.1);
    color: #E62120;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    margin-right: 5px;
    vertical-align: middle;
}
body.dark .result-count-badge {
    background-color: rgba(230, 33, 32, 0.2);
    color: #ff6b6b;
}

/* =========================================
   FIX: اصلاح دکمه فیلتر در موبایل
   ========================================= */
@media (max-width: 992px) {
    /* تنظیمات کانتینر هدر برای تراز بهتر */
    .filter-header-row {
        align-items: center !important;
        gap: 15px !important; /* فاصله بین متن و دکمه */
    }
    
    /* اصلاح دکمه */
    .mobile-filter-btn {
        white-space: nowrap !important; /* جلوگیری از شکستن متن */
        flex-shrink: 0 !important; /* جلوگیری از جمع شدن دکمه */
        padding: 6px 16px !important; /* تنظیم پدینگ */
        font-size: 12px !important; /* فونت کمی ریزتر برای جا شدن */
        height: 36px !important; /* ارتفاع فیکس */
        border-radius: 10px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 4px 10px rgba(230, 33, 32, 0.25) !important; /* سایه نرم */
    }
    
    /* فاصله آیکون از متن */
    .mobile-filter-btn span.dashicons {
        margin-left: 5px !important;
        font-size: 16px !important;
        width: 16px !important;
        height: 16px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

/* =========================================
   ACCESSABILITY FIX: کلاس متن مخصوص اسکرین ریدر
   ========================================= */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}


/* =========================================
   استایل دکمه "مشاهده بیشتر" (Load More)
   ========================================= */
.dbazi-load-more-container {
    margin: 50px 0;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    clear: both; /* جلوگیری از تداخل با المان‌های شناور */
}

.dbazi-load-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #fff;
    color: #373D3F;
    border: 2px solid #e0e0e0;
    padding: 12px 45px;
    border-radius: 50px; /* کپسولی */
    font-family: 'IRANSansX';
    font-weight: 800;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    min-width: 280px;
}

/* افکت هاور */
.dbazi-load-more-btn:hover {
    background-color: #E62120; /* قرمز برند */
    border-color: #E62120;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 33, 32, 0.25);
}

/* انیمیشن فلش */
.dbazi-load-more-btn svg {
    transition: transform 0.3s ease;
    width: 20px;
    height: 20px;
}
.dbazi-load-more-btn:hover svg {
    transform: translateX(-5px); /* حرکت به سمت چپ در زبان فارسی */
}

/* حالت دارک مود */
body.dark .dbazi-load-more-btn {
    background-color: #1e1e1e;
    border-color: #333;
    color: #fff;
}
body.dark .dbazi-load-more-btn:hover {
    background-color: #E62120;
    border-color: #E62120;
}

/* ریسپانسیو */
@media (max-width: 768px) {
    .dbazi-load-more-btn {
        width: 90%;
        padding: 14px 20px;
        font-size: 15px;
    }
}

/* =========================================
   FIX: اصلاح رنگ هاور دکمه مشاهده بیشتر
   ========================================= */
   
/* هاور در حالت لایت */
.dbazi-load-more-btn:hover {
    background-color: #E62120 !important;
    border-color: #E62120 !important;
    color: #fff !important;
}

/* هاور در حالت دارک */
body.dark .dbazi-load-more-btn:hover {
    background-color: #E62120 !important;
    border-color: #E62120 !important;
    color: #fff !important;
}

/* سفید کردن فلش داخل دکمه هنگام هاور */
.dbazi-load-more-btn:hover svg,
.dbazi-load-more-btn:hover svg path {
    stroke: #fff !important;
    color: #fff !important;
}

/* رفع لقی موبایل (روش ایمن برای منو) */
/* این کد جایگزین کدی است که در مرحله ۱ حذف کردید */
@media (max-width: 992px) {
    .dbazi-archive-wrapper, 
    .main-content-container {
        overflow-x: hidden !important;
    }
}
/* =========================================
   1. بردکرامب (ثابت)
   ========================================= */
.mag-breadcrumb-container {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
    width: 100%;
    margin-bottom: 0;
}
.mag-breadcrumb-container .rank-math-breadcrumb p { margin: 0; color: #888; font-size: 13px; display: flex; align-items: center; }
.mag-breadcrumb-container .rank-math-breadcrumb a { color: #333; font-weight: 500; transition: 0.2s; }
.mag-breadcrumb-container .rank-math-breadcrumb a:hover { color: #E62120; }
.mag-breadcrumb-container .rank-math-breadcrumb .last { color: #E62120; font-weight: 700; margin-right: 5px; }


/* =========================================
   2. هدر آرشیو (اصلاح شده: بدون باکس اضافی)
   ========================================= */
.dbazi-archive-hero-section {
    position: relative;
    background-color: #fcfcfc;
    border-bottom: 1px solid #e5e5e5;
    padding: 40px 0;
    margin-bottom: 30px;
    overflow: hidden; /* برای کنترل واترمارک */
}

.hero-inner-wrapper {
    position: relative;
    z-index: 2;
}

/* واترمارک پس‌زمینه (به جای باکس الکی) */
.hero-watermark-bg {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(-10deg);
    font-size: 160px;
    color: #000;
    opacity: 0.04; /* بسیار کمرنگ در پس زمینه */
    pointer-events: none;
    z-index: 0;
}
.hero-watermark-bg i {
    width: auto; height: auto; font-size: inherit;
}

.hero-title-area {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.archive-main-title {
    font-size: 36px !important;
    font-weight: 900 !important;
    color: #1a1b1f !important;
    margin: 0 0 15px 0 !important;
    display: flex;
    align-items: center;
    line-height: 1.2;
}

.title-bar {
    display: inline-block;
    width: 6px;
    height: 34px;
    background-color: #E62120;
    border-radius: 4px;
    margin-left: 15px;
}

/* بج‌ها */
.archive-badges {
    display: flex;
    gap: 10px;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    height: 30px;
}

.count-badge {
    background-color: #fff;
    border: 1px solid #ddd;
    color: #555;
}
.count-badge i { color: #E62120; font-size: 15px; }

.type-badge {
    background-color: #1a1b1f;
    color: #fff;
}

/* توضیحات تمام عرض */
.hero-full-description {
    width: 100%;
    font-size: 16px;
    line-height: 2;
    color: #444;
    text-align: justify;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}
.hero-full-description p { margin-bottom: 10px; color: #444 !important; }


/* =========================================
   3. اصلاح حیاتی لی‌اوت (Sidebar Gap Fix)
   ========================================= */
/* =========================================
   3. اصلاح حیاتی لی‌اوت (مخصوص صفحات آرشیو)
   ========================================= */
@media (min-width: 992px) {
    /* اضافه کردن body.archive باعث می‌شود این کدها فقط در صفحات دسته‌بندی/تگ اعمال شوند */
    /* و صفحه اصلی سایت خراب نشود */
    
    body.archive .main-articels-sidebars {
        display: flex;
        justify-content: space-between;
        align-items: flex-start; 
        gap: 1%; 
    }
    
    /* ستون مطالب فقط در آرشیو: ۷۹ درصد */
    body.archive .main-last-posts {
        width: 79% !important; 
    }
    
    /* سایدبار فقط در آرشیو: ۲۰ درصد */
    body.archive .sidebar-left {
        width: 20% !important; 
    }
}

/* =========================================
   4. دارک مود
   ========================================= */
body.dark .dbazi-archive-hero-section { background-color: #1f2023; border-bottom-color: #374151; }
body.dark .archive-main-title { color: #fff !important; }
body.dark .hero-full-description { background-color: #18181b; color: #ccc; border-color: #333; }
body.dark .hero-full-description p { color: #ccc !important; }
body.dark .count-badge { background-color: #2d2d33; border-color: #4b5563; color: #e5e7eb; }
body.dark .hero-watermark-bg { color: #fff; opacity: 0.03; }


/* =========================================
   5. ریسپانسیو موبایل
   ========================================= */
@media (max-width: 768px) {
    .archive-main-title { font-size: 26px !important; }
    .hero-watermark-bg { display: none; }
    
    /* در موبایل ستون‌ها ۱۰۰ درصد شوند */
    .main-last-posts, .sidebar-left {
        width: 100% !important;
    }
    
    .dbazi-load-more-btn { width: 100%; justify-content: center; }
}


/* Optimization for long pages (Reviews, GOTY lists) */
.footer-social, 
.site-footer, 
.comments-area {
    content-visibility: auto;
    contain-intrinsic-size: 1px 1000px; /* Estimates height to prevent scrollbar jumping */
}


/* =========================================
   FIX: استایلینگ عنوان ویجت ها و بخش اصلی (FINAL & POLISHED)
   [این کد فقط استایل خط عمودی را به ویجت‌های سایدبار (widget-sidebar) اعمال می‌کند.
   بخش مطالب اصلی (main-last-posts) به ظاهر پیش‌فرض خود باز می‌گردد و وزن فونت کاهش می‌یابد.]
   ========================================= */

/* 1. تنظیمات فونت و پدینگ برای تمامی عناوین اصلی ویجت ها (h2.title-widget) */

.widget-sidebar h2.title-widget {
    position: relative; 
    
    /* FIX: تنظیم ضخامت فونت به 700 (Bold) */
    font-weight: 700 !important; 
    font-size: 18px !important; 
    color: #0D0D0D !important;
    
    /* FIX: تنظیم پدینگ برای جدا کردن متن از خط عمودی (برای ویجت ها) */
    padding-right: 15px !important; 
    padding-left: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    
    margin-bottom: 20px; 
    margin-top: 0 !important;
}

/* حالت دارک مود ویجت‌ها */
body.dark .widget-sidebar h2.title-widget {
    color: #F3F3F3 !important;
}

/* 2. ایجاد خط عمودی قرمز برای ویجت ها (position: right: 0; کار می‌کند) */
.widget-sidebar h2.title-widget::before {
    content: '';
    position: absolute;
    right: 0; 
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    max-height: 25px; 
    background-color: var(--main-color, #E62120); 
    border-radius: 4px; 
}


/* ----------------------------------------------------------------- */
/* 3. FIX: ریست وزن فونت در عنوان اصلی بخش مطالب (برای بازگشت به وزن 400) */
/* اگرچه در CSS شما 400 است، اما این کد اطمینان می دهد که 700 اعمال نشود. */
.container-last-posts h2.title-last-posts {
    font-weight: 400 !important;
}

/* 4. FIX: اصلاح ضخامت و اندازه عناوین پست های داخلی (ثابت) */

/* عنوان پست های داخلی در ویجت نقد و بررسی (600 - DemiBold) */
.widget_last-reviews .title-last-games-item {
    font-size: 16px !important; 
    font-weight: 600 !important; 
    line-height: 1.5;
    color: #0D0D0D !important;
    margin-top: 10px;
}

body.dark .widget_last-reviews .title-last-games-item {
    color: #fff !important;
}

/* بهبود خوانایی نام نویسنده در اسلایدر نقدها */
.widget_last-reviews .details-side-post-item strong.author-name-slider-item {
    font-weight: 700 !important;
}

/* گرد کردن گوشه‌های تصویر بندانگشتی در اسلایدر نقدها */
.widget_last-reviews .last-games-slider-item img {
    border-radius: 12px;
}