@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body,
html {
   font-family: "Poppins", sans-serif;
   font-size: 18px;
   font-weight: 400;
   background: #000;
   transition: background-color 0.5s ease;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
   font-family: "Poppins", sans-serif;
   font-weight: 700;
}
a:hover{
    text-decoration:none;
}
.zup {
   z-index: 99;
   position: relative;
}

.fw-600 {
   font-weight: 600;
}

/* Updating Grid */
.container {
   width: 100%;
   padding-right: 20px;
   padding-left: 20px;
   margin-right: auto;
   margin-left: auto;
   max-width: 1580px;
}

/*img hover start*/
.hover-scale {
   display: inline-block;
   overflow: hidden;
   border-radius: 15px;
}
.hover-scale {
   transition: transform 0.3s ease-in-out;
}
.hover-scale:hover {
   transform: scale(1.04);
   cursor: pointer;
}
/*img hover end*/

#custom-cursor {
   width: 259.141px;
   height: 259.141px;
   flex-shrink: 0;
   border-radius: 259.141px;
   opacity: 0.3;
   background: #f6571e;
   filter: blur(80px);
   position: fixed; /* Use fixed position to make it stay in place during scrolling */
   pointer-events: none;
   transform: translate(-50%, -50%); /* Center the cursor */
   z-index: 9999;
}

.container-sm {
   width: 100%;
   padding-right: 20px;
   padding-left: 20px;
   margin-right: auto;
   margin-left: auto;
   max-width: 1240px;
}

.double-border {
   border-bottom: 2px solid #343333;
}

/*header start*/
header {
   font-family: "Poppins", sans-serif;
   padding: 15px 30px;
   background-color: #000;
       border-bottom: 3px solid;
    border-image-source: linear-gradient(90deg, rgba(246,87,30,0) 10%, rgba(246,87,30,1) 20%, rgba(246,87,30,0) 40%, rgba(246,87,30,0) 60%, rgba(246,87,30,1) 80%, rgba(246,87,30,0) 90%);
    border-image-slice: 1;
}
.light-background header {
   background-color: #fff;
}

.header-container {
   margin-right: auto;
   margin-left: auto;
   max-width: 1580px;
   display: flex;
   align-items: center;
}

.header-logo {
   width: 20%;
}
.logo-dark {
   display: none !important;
}
.light-background .logo-dark {
   display: block !important;
}
.light-background .logo-light {
   display: none !important;
}

.header-left {
   width: 80%;
   display: flex;
   justify-content: flex-end;
   align-items: center;
}

.menu-bg {
   display: flex;
   align-items: center;
}

/* Style for the header-box */
.header-box {
   display: flex;
   justify-content: space-between;
   align-items: center;
}

/* Style for the image */
.header-box img {
   max-width: 100%;
}

/* Style for the search box */
.search-box {
   display: flex;
   align-items: center;
}

/* Style for the search input */
.search-box input[type="text"] {
   padding: 8px;
   border: none;
   border-radius: 0px;
   margin-right: 15px;
   font-size: 14px;
   padding: 12px 20px !important;
   outline: none;
}

/*Light and dark mode start*/
.light-background {
   background: #fff;
}

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

.checkbox-label {
   background-color: #fff;
   width: 55px;
   height: 28px;
   border-radius: 50px;
   position: relative;
   padding: 0px 5px;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: space-between;
   top: 0px;
   margin-left: 20px;
}
.light-background .checkbox-label {
   background-color: #000;
}

.fa-moon,
.fa-sun {
   color: #393939;
   font-size: 18px;
}
.light-background .fa-moon,
.fa-sun {
   color: #fff;
}

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

.light-background .checkbox-label .ball {
   background-color: #fff;
}

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

/*Light and dark mode end*/

.menu {
   list-style: none;
   padding: 0;
   margin: 0px;
   display: flex;
}

.menu li {
   margin-right: 30px;
   position: relative;
   padding-left: 0px;
}

.menu li a {
   color: #fff;
   font-size: 18px;
   text-decoration: none;
   font-weight: 600;
   padding: 0px 0px 5px 20px;
}
.light-background .menu li a {
   color: #000 !important;
}
.menu li a:hover {
   color: #ff8000 !important;
}
.search-icon {
   cursor: pointer;
   margin-left: 5px;
}
.search-icon i {
   color: #fff;
}
.light-background .search-icon i {
   color: #000;
}
.search-icon i:hover {
   color: #f6571e !important;
}
/* Styles for the popup */
.popup {
   position: fixed;
   top: 70px;
   left: 0;
   width: 100%;
   background-color: rgba(0, 0, 0, 0.5);
   display: none;
   justify-content: center;
   align-items: center;
}

.popup-form {
   background-color: #000;
   padding: 20px;
   border-radius: 0px 0px 5px 5px;
   width: 100%;
}
.light-background .popup-form {
   background-color: #f1f1f1;
}

.popup-form input {
   width: calc(100% - 40px);
   padding: 5px;
   font-size: 14px;
}

/* Adding different background images to each list item */
.menu li:nth-child(1) {
   background: url("https://playerassist.com/wp-content/uploads/2024/05/gaming-icon.svg")
      no-repeat left center;
   background-size: 8px 8px;
}

.menu li:nth-child(2) {
   background: url("https://playerassist.com/wp-content/uploads/2024/05/game-review-icon.png")
      no-repeat left center;
   background-size: 8px 8px;
}

.menu li:nth-child(3) {
   background: url("https://playerassist.com/wp-content/uploads/2024/05/gaming-news0blue-circel.png")
      no-repeat left center;
   background-size: 8px 8px;
}

.menu li:nth-child(4) {
   background: url("https://playerassist.com/wp-content/uploads/2024/05/guide-blue-icon.png")
      no-repeat left center;
   background-size: 8px 8px;
}

.menu li:nth-child(5) {
   background: url("https://playerassist.com/wp-content/uploads/2024/05/app-icon.png")
      no-repeat left center;
   background-size: 8px 8px;
}

.menu li:nth-child(6) {
   background: url("https://playerassist.com/wp-content/uploads/2024/05/guide-icon.png")
      no-repeat left center;
   background-size: 8px 8px;
}

/*.menu li:nth-child(7) {*/
/*    margin-left: -20px;*/
/*}*/

.btn-md-none {
   display: none;
}

.submenu {
   width: 200px;
   position: absolute;
   background: #000;
   border: 1px solid #ff8101;
   text-align: left;
   padding: 15px;
   top: 30px;
   left: 20px;
   visibility: hidden;
   opacity: 0;
   -webkit-transition: 0.3s;
   -o-transition: 0.3s;
   transition: 0.3s;
   display: none;
   border-radius: 0 !important;
}

.submenu li {
   margin-right: 0px;
   background: none !important;
   margin-left: 0px !important;
   margin-bottom: 5px;
}

.submenu li a {
   padding: 0px !important;
}

.light-background .submenu {
   background: #fff !important;
}

.light-background .submenu li a {
   color: #000 !important;
}

.light-background .submenu li a:hover {
   color: #f6571e !important;
}

.fa-chevron-down:before {
   display: none !important;
}

#menu li:hover .submenu {
   visibility: visible;
   opacity: 1;
   display: block;
}

/* Show menu-bg on mobile when .show-menu class is added */
.show-menu {
   display: block;
}

/* Hamburger icon styles */
.hamburger-icon {
   display: none;
   /* Hide by default */
   cursor: pointer;
   color: #fff;
   font-size: 24px;
   margin-left: 15px;
}
.close-icon {
   position: absolute;
   top: 10px;
   right: 24px;
   cursor: pointer;
   font-size: 30px;
   color: #fff !important;
}
.light-background .close-icon {
   color: #000 !important;
}
.close-icon:hover {
   color: #f6571e !important;
}

.hamburger-menu {
   display: none;
}

.menu-close {
   display: none !important;
   color: #fff;
   cursor: pointer;
   position: relative;
   left: 98%;
}
.light-background .menu-close {
   color: #000 !important;
}

/*header end*/

.category-name {
   display: flex;
   align-items: center;
}

.category-title {
   flex-grow: 0;
   flex-shrink: 0;
}

.category-line {
   flex-grow: 1;
   display: flex;
   flex-direction: column;
   padding: 0px 20px;
}

.category-link {
   flex-grow: 0;
   flex-shrink: 0;
}

.category-name h2 {
   font-size: 40px;
   text-transform: uppercase;
   font-weight: 600;
}

/*Text Color Start*/
.text-white,
.text-white a {
   color: #fff !important;
}

.text-white-1 {
   color: #fff !important;
}

.light-background .text-white,
.light-background .text-white a {
   color: #000 !important;
}
.text-white a:hover {
   color: #f6571e !important;
}

/*hero start*/

.player-hero {
   background-size: cover;
   background-position: center;
   background-image: url("https://playerassist.com/wp-content/uploads/2024/05/hero-bg.jpg");
   padding: 220px 20px;
   background-repeat: no-repeat;
}

.player-hero h1 {
   font-size: 60px;
   color: #fff;
   line-height: 1.3em;
   margin: 0px 0px 50px 0px;
   font-weight: 700;
}

.player-hero h2 {
   font-size: 24px;
   color: #ffd300;
   font-weight: 500;
}

.player-hero h2 i {
   margin-right: 8px;
   font-size: 18px;
   margin-top: -5px;
}

.read-more-btn {
   padding: 16px 80px;
   background: rgb(242, 85, 28);
   background: linear-gradient(
      120deg,
      rgba(242, 85, 28, 1) 0%,
      rgba(219, 124, 31, 1) 100%
   );
   color: #fff;
   text-decoration: none;
   border-radius: 5px;
   font-size: 22px;
   text-transform: uppercase;
   font-weight: 700;
   filter: drop-shadow(0 4px 16px rgba(246, 87, 30, 0.58));
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.read-more-btn:hover {
   transform: scale(2);
   filter: drop-shadow(0 6px 20px rgba(246, 87, 30, 0.9));
   color: #fff;
   text-decoration: none;
}

/*hero end*/

/*Featured Post Slider Start*/

.featured-post-slide-bg {
   background: rgb(24, 24, 24);
   background: linear-gradient(
      90deg,
      rgba(24, 24, 24, 1) 0%,
      rgba(0, 0, 0, 1) 100%
   );
   border-top: 4px solid;
   border-bottom: 4px solid;
   border-image-source: linear-gradient(
      90deg,
      rgba(255, 103, 0, 0) 0%,
      rgba(255, 103, 0, 0) 23%,
      rgba(255, 103, 0, 1) 48%,
      rgba(255, 103, 0, 0) 75%,
      rgba(255, 103, 0, 0) 100%
   );
   border-image-slice: 1;
   padding: 40px 80px;
   position: relative;
}

.light-background .featured-post-slide-bg {
   background: rgb(245, 245, 245);
   background: linear-gradient(
      90deg,
      rgba(245, 245, 245, 1) 0%,
      rgba(255, 255, 255, 0) 100%
   );
}

.featured-post-slider .carousel {
   background: #eee;
}

.featured-post-slider .carousel-cell {
   width: 30%;
   margin-right: 50px;
}

.featured-custom-buttons {
   display: flex;
   justify-content: space-between;
}

.featured-custom-buttons button {
   border: 1px dashed #f6571e;
   width: 72px;
   height: 72px;
   border-radius: 50% !important;
   background: none;
   top: 50%;
   transform: translateY(-50%);
   outline: none;
   display: flex;
   align-items: center;
   justify-content: center;
}

.featured-custom-buttons button i {
   font-size: 26px;
   color: #fff;
}

.light-background .featured-custom-buttons button i {
   color: #000;
}

.previous-button-2 {
   left: 90px !important;
   position: absolute;
}

.next-button-2 {
   right: 90px !important;
   position: absolute;
}

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

.post-category-img {
   width: 30%;
}

.post-category-img img {
   border-radius: 6px;
   max-width: 100%;
   height: 152px;
   object-fit: cover;
}

.post-category-details {
   width: 70%;
   padding: 0px 20px;
}

.light-background .post-category-details h3,
.light-background .post-category-details .featured-title a,
.light-background .post-category-details p {
   color: #000;
}

.post-category-details .featured-title,
.post-category-details .featured-title a {
   color: #fff;
   font-size: 18px;
   line-height: 1.3em;
   font-weight: 700;
   margin: 8px 0px;
}

.post-category-details .featured-title a:hover {
   color: #ff8000 !important;
   text-decoration: none !important;
}

.post-category-details p {
   margin: 0;
}

.category-ylw a,
.category-ylw i,
.comma {
   color: #ffd300;
   text-transform: uppercase;
   font-weight: 500;
   font-size: 15px;
}
.light-background .category-ylw a,
.light-background .category-ylw i,
.light-background .comma{
    color:#EEC505!important;
}


.post-date {
   font-size: 12px;
   color: #cbcbcb;
   font-weight: 400;
   margin-left: 30px;
   margin-top: -6px;
}

.light-background .post-date {
   color: #4c4c4c !important;
}

.post-content {
   font-size: 16px;
   color: #fff;
   font-weight: 300;
   line-height: 1.4em;
}

.post-content a {
   color: #e76f51;
   text-decoration: none;
}

.post-content a:hover {
   font-weight: 600;
   color: #fff;
}

.light-background .post-content a:hover {
   color: #000;
}

/*Featured Post Slider End*/

/*Daily Discoveries Start*/

.daily-discoveries-post {
   position: relative;
   overflow: hidden;
   display: flex;
   flex-direction: column;
   align-items: center;
}

.daily-discoveries-post::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgb(0, 0, 0);
   background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.55) 28%,
      rgba(0, 0, 0, 1) 100%
   );
   z-index: 4;
   border-radius: 15px;
   pointer-events: none;
}

.daily-discoveries-post img {
   position: relative;
   z-index: 0;
   border-radius: 15px;
}
.daily-discoveries-post .daily-small {
   height: 300px;
}

.daily-discoveries-post div {
   position: absolute;
   z-index: 9;
   color: white;
   padding: 20px;
   bottom: 15px;
   left: 15px;
}

.daily-discoveries-post div a {
   font-size: 15px;
   color: #4caf50;
}

.daily-discoveries-post div a:hover {
   text-decoration: none;
   color: #fff !important;
}

.daily-discoveries-post div h3,
.daily-discoveries-post div h3 a {
   font-size: 28px;
   color: #fff;
   line-height: 1.3em;
}
.daily-discoveries-post div h3 a:hover,
.daily-discoveries-post div h3:hover {
   color: #ff8000 !important;
}

.daily-discoveries-post div p {
   font-size: 18px;
   margin: 0;
   color: #fff;
}

.daily-discoveries-postdiv p a {
   color: #e76f51;
   font-size: 15px;
}

.daily-discoveries-post div .date {
   color: #a9a8a8;
   margin-top: 5px;
   font-size: 16px !important;
}

.daily-discoveries-post div p a {
   color: #e76f51;
}

.daily-discoveries-post div p a:hover {
   color: #fff;
   font-weight: 600;
}

.height-600 {
   height: 627px;
   object-fit: cover !important;
}

/*Daily Discoveries End*/

/*Trending Category Start*/

.trending-bg {
   background-color: #111111;
   background-image: url("https://playerassist.com/wp-content/uploads/2024/05/trending-bg.jpg");
   background-size: cover;
   background-repeat: no-repeat;
   background-position: center;
   border-top: 2px solid;
   border-image-source: linear-gradient(
      90deg,
      rgba(255, 142, 0, 0) 10%,
      rgba(255, 142, 0, 1) 25%,
      rgba(255, 142, 0, 0) 40%,
      rgba(255, 142, 0, 0) 60%,
      rgba(255, 142, 0, 1) 75%,
      rgba(255, 142, 0, 0) 90%
   );
   border-image-slice: 1;
   position: relative;
}

.light-background .trending-bg {
   background-color: #f8f8f8;
   background-image: url("https://playerassist.com/wp-content/uploads/2024/05/trending-light-bg.jpg");
}

.trending-bg:after {
   content: "";
   height: 142px;
   width: 130px;
   background-image: url("https://playerassist.com/wp-content/uploads/2024/05/sward.svg");
   background-size: contain;
   background-repeat: no-repeat;
   position: absolute;
   left: 0px;
   top: -90px;
   animation: bounce 2s infinite;
}

@keyframes bounce {
   0% {
      transform: translateY(0);
   }
   50% {
      transform: translateY(-20px);
   }
   100% {
      transform: translateY(0);
   }
}
.light-background .trending-bg:after {
   background-image: url("https://playerassist.com/wp-content/uploads/2024/05/trending-icons.svg");
}

.trending-post {
   position: relative;
   overflow: hidden;
   display: flex;
   flex-direction: column;
   align-items: center;
   margin: 0px 10px;
   width: 100%;
}

.scale-img img {
   right: -40px;
   transform: scale(1.1);
   position: relative;
}

.trending-post a {
   text-decoration: none;
}

.trending-post::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgb(0, 0, 0);
   background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(14, 14, 14, 1) 100%
   );
   z-index: 4;
   border-radius: 15px;
}

.trending-post img {
   position: relative;
   z-index: 0;
   border-radius: 15px;
   height: 260px;
   object-fit: cover;
   max-width: 100%;
   width: 350px;
}

.trending-post div {
   position: absolute;
   z-index: 9;
   color: white;
   padding: 20px;
   top: 0;
}

.trending-post div a {
   font-size: 15px;
   color: #4caf50;
}
.trending-post div a:hover {
   color: #fff !important;
}

.trending-post div h3,
.trending-post div h3 a {
   font-size: 26px;
   color: #fff;
   margin-top: 10px;
}

.trending-post div h3:hover,
.trending-post div h3 a:hover {
   color: #ff8000 !important;
}
.trending-post div p {
   font-size: 15px;
   margin: 0;
   color: #fff;
}

.trending-post div p a {
   color: #e76f51;
   font-size: 15px;
}

.trending-post div .date {
   color: #cecece;
   margin-top: 5px;
}

.mln-50 {
   margin-left: -120px;
}
.latest-post-info a:hover{
    font-weight:700!important;
}
/*Trending Category End*/

.see-more-btn {
   color: #f6571e;
   text-transform: uppercase;
   font-weight: 600;
   font-size: 22px;
}
.see-more-btn i{
    margin-left:10px;
}
.see-more-btn:hover {
   color: #fff !important;
   text-decoration: none;
}

.light-background .see-more-btn:hover {
   color: #000 !important;
   text-decoration: none;
}

.category-view a {
   color: #f6571e;
   font-weight: 500;
   font-size: 20px;
}
.category-view a:hover{
    color:#fff;
}
.light-background .category-view a:hover{
    color:#000;
}

.category-view div img {
   height: 500px;
   width: 890px;
   object-fit: cover;
}

.category-view h2 a {
   font-size: 60px !important;
   text-transform: capitalize;
   font-weight: 700;
   text-decoration: none;
}

/*category Four post styling start*/
.four-post div img {
   width: 350px;
   height: 200px;
   object-fit: cover;
}
.four-post .text-white {
   margin-top: 5px !important;
}

.four-post div a {
   font-size: 14px;
   color: #f6571e;
   text-transform: uppercase;
}

.four-post div h4 a {
   line-height: 1.5em;
   font-size: 26px;
   font-weight: 700;
   text-decoration: none;
   text-transform: capitalize;
}

/*category Four post styling end*/

/*latest in category start*/
.latest-in-category {
   display: flex;
   align-items: center;
}

.latest-img {
   width: 50%;
}

.latest-img img {
   width: 240px;
   height: 190px;
   object-fit: cover;
}

.latest-post-info {
   width: 50%;
   margin-left: 20px;
}

.latest-post-info h5 a {
   line-height: 1.5em;
   font-size: 20px;
   text-decoration: none;
   text-transform: capitalize;
}

.latest-post-info a {
   font-size: 16px;
   color: #e0005e;
   text-transform: uppercase;
}
.latest-post-info a:hover{
    color:#BB0451;
    font-weight:500;
}

.latest-post-info p,
.latest-post-info p a {
   color: #4c4c4c !important;
   font-weight: 600 !important;
   font-size: 12px !important;
   text-transform: capitalize !important;
}
.latest-post-info p a:hover{
    color:#F6571E!important;
}

/*More Post Start*/
.more-post {
   display: flex;
   flex-wrap: wrap;
}

.post-details {
   position: relative;
   width: 31%;
   margin: 10px;
   overflow: hidden;
   transition: transform 0.3s ease;
}
.post-details:hover {
   transform: scale(1.02);
}

.post-details img {
   max-width: 100%;
   border-radius: 15px;
   width: 500px;
   object-fit: cover;
   height: 360px;
}

.post-details::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(14, 14, 14, 1) 100%
   );
   border-radius: 15px;
   pointer-events: none;
}

.post-details div {
   position: absolute;
   bottom: 0;
   left: 0;
   padding: 25px;
}

.post-details div a {
   font-weight: 700;
   text-transform: uppercase;
   color: #f6571e;
   font-size: 20px;
   text-decoration: none;
}

.post-details div a:hover {
   color: #fff;
}

.post-details div h4 a {
   color: #fff;
   font-weight: 700;
   text-transform: capitalize;
   font-size: 26px;
   margin: 5px 0px 0px 0px;
   line-height: 1.5em;
}
.post-details div h4 a:hover {
   color: #f6571e !important;
}

/*Category Slider Start*/

.category-slides .flickity-slider {
   left: -10% !important;
}

.category-slides .flickity-viewport::before,
.category-slides .flickity-viewport::after {
   background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 1) 28%,
      rgba(0, 0, 0, 1) 56%,
      rgba(0, 0, 0, 0) 100%
   );
   content: "";
   height: 110px;
   position: absolute;
   width: 200px;
   z-index: 2;
}

.light-background .category-slides .flickity-viewport::before,
.light-background .category-slides .flickity-viewport::after {
   background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 1) 28%,
      rgba(255, 255, 255, 1) 56%,
      rgba(255, 255, 255, 0) 100%
   );
}

.category-slides .flickity-viewport::after {
   right: 0;
   top: 0;
   transform: rotateZ(180deg);
}

.category-slides .flickity-viewport::before {
   left: 0;
   top: 0;
}
.category-slides .carousel {
   background: #eee;
}

.category-slides .carousel-cell {
   width: 380px;
   margin-right: 15px;
   background-image: url("https://playerassist.com/wp-content/uploads/2024/05/unselected-bg.svg");
   background-size: contain;
   background-repeat: no-repeat;
   display: flex;
   align-items: center;
   justify-content: center;
   height: 110px;
}

.light-background .category-slides .carousel-cell {
   background-image: url("https://playerassist.com/wp-content/uploads/2024/05/category-light.svg");
}

.category-slides .carousel-cell h2,
.category-slides .carousel-cell h2 a {
   color: #fff;
   font-size: 28px;
   text-transform: uppercase;
   font-weight: 700;
   font-family: "Poppins", sans-serif;
   margin: 0;
   text-decoration: none !important;
}

.category-slides a:hover {
   text-decoration: none !important;
}

.light-background .category-slides .carousel-cell h2 {
   color: #000;
}

.category-slides .carousel-cell:hover {
   background-image: url("https://playerassist.com/wp-content/uploads/2024/05/selected-slide.svg");
}

.light-background .category-slides .carousel-cell:hover {
   background-image: url("https://playerassist.com/wp-content/uploads/2024/05/category-selected-light-hover.svg");
}

.custom-buttons,
.popular-custom-buttons {
   text-align: center;
   margin-top: 50px;
   position: relative;
}

.custom-buttons .next-button:after,
.popular-custom-buttons .next-button-1:after {
   content: "";
   height: 4px;
   width: 350px;
   background-image: url("https://playerassist.com/wp-content/uploads/2024/05/next-line.svg");
   background-size: contain;
   background-repeat: no-repeat;
   position: absolute;
   top: 20px;
   margin-left: 20px;
   right: 20%;
}

.custom-buttons .previous-button:before,
.popular-custom-buttons .previous-button-1:before {
   content: "";
   height: 4px;
   width: 350px;
   background-image: url("https://playerassist.com/wp-content/uploads/2024/05/previous-line.svg");
   background-size: contain;
   background-repeat: no-repeat;
   position: absolute;
   top: 20px;
   left: 20%;
}

.custom-buttons button,
.popular-custom-buttons button {
   background: none;
   padding: 0;
   margin: 0px 30px;
   border: none;
   border: none !important;
   outline: none;
}

.custom-buttons button i,
.popular-custom-buttons button i {
   color: #fff;
   font-size: 45px;
}
.custom-buttons button i:hover,
.popular-custom-buttons button i:hover{
   color: #F6571E!important;
}
.light-background .custom-buttons button i,
.light-background .popular-custom-buttons button i {
   color: #000;
}

/*Popular Category Slider start*/

.popular-category .flickity-slider {
   left: 0% !important;
}

.popular-category .flickity-viewport::before,
.popular-category .flickity-viewport::after {
   background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 1) 28%,
      rgba(0, 0, 0, 1) 56%,
      rgba(0, 0, 0, 0) 100%
   );
   content: "";
   height: 350px;
   position: absolute;
   width: 350px;
   z-index: 2;
}

.popular-category .flickity-viewport::after {
   right: 0;
   top: 0;
   transform: rotateZ(180deg);
}

.popular-category .flickity-viewport::before {
   left: 0;
   top: 0;
}

.light-background .popular-category .flickity-viewport::before,
.light-background .popular-category .flickity-viewport::after {
   background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 1) 28%,
      rgba(255, 255, 255, 1) 56%,
      rgba(255, 255, 255, 0) 100%
   );
}
.popular-category .flickity-viewport::before {
   left: 0;
   top: 0;
}

.popular-category .carousel {
   background: #eee;
}

.popular-category .carousel-cell {
   width: 260px;
   margin-right: 25px;
   background-image: url("https://playerassist.com/wp-content/uploads/2024/05/popular-unselect-bg.svg");
   background-size: contain;
   background-repeat: no-repeat;
   display: flex !important;
   align-items: center !important;
   justify-content: center !important;
   text-align: center !important;
   height: 350px;
}

/*.popular-category .carousel-cell a{*/
/*     display: flex!important;*/
/*    align-items: center!important;*/
/*    justify-content: center!important;*/
/*    text-align:center!important;*/
/*}*/
.popular-category .carousel-cell a img {
   width: 110px;
}

.light-background .popular-category .carousel-cell {
   background-image: url("https://playerassist.com/wp-content/uploads/2024/05/light-category-bg.svg");
}

.popular-category .carousel-cell a {
   text-decoration: none;
}

.popular-category .carousel-cell a h2 {
   color: #fff;
   font-size: 26px;
   text-transform: uppercase;
   font-weight: 700;
   font-family: "Poppins", sans-serif;
   margin: 10px 15px 0px 15px;
   text-decoration: none;
}

.light-background .popular-category .carousel-cell a h2 {
   color: #000000;
}

.popular-category .carousel-cell:hover {
   background-image: url("https://playerassist.com/wp-content/uploads/2024/05/popular-selected-bg.svg");
}

.light-background .popular-category .carousel-cell:hover {
   background-image: url("https://playerassist.com/wp-content/uploads/2024/05/light-select-bg.svg");
}

.popular-custom-buttons {
   text-align: center;
   margin-top: 30px;
}

/*gaming review bg start*/
.gaming-review-bg {
   background-color: #111111;
   background-image: url("https://playerassist.com/wp-content/uploads/2024/05/gaming-review-bg.jpg");
   background-size: cover;
   background-repeat: no-repeat;
   background-position: right bottom;
}

.gaming-review-bg,
.varlorant-icon {
   position: relative;
}

.gaming-review-bg:after {
   content: "";
   height: 80px;
   width: 80px;
   background-image: url("https://playerassist.com/wp-content/uploads/2024/05/cup.svg");
   background-size: contain;
   background-repeat: no-repeat;
   position: absolute;
   left: 0px;
   bottom: -40px;
   animation: bounce 2s infinite;
}
.varlorant-icon:before {
   content: "";
   height: 110px;
   width: 110px;
   background-image: url("https://playerassist.com/wp-content/uploads/2024/05/bomb.svg");
   background-size: contain;
   background-repeat: no-repeat;
   position: absolute;
   right: 0px;
   bottom: 40px;
   animation: bounce 2s infinite;
}

.light-background .varlorant-icon:before {
   background-image: url("https://playerassist.com/wp-content/uploads/2024/05/bomb-light.svg");
   animation: bounce 2s infinite;
}

.light-background .gaming-review-bg {
   background-color: #f8f8f8;
   background-image: url("https://playerassist.com/wp-content/uploads/2024/05/gaming-review-bg-light.jpg");
}

/*gaming review bg end*/

/*Gaming icon start*/
.gaming-icon {
   position: relative;
}

.gaming-icon:after {
   content: "";
   height: 80px;
   width: 80px;
   background-image: url("https://playerassist.com/wp-content/uploads/2024/05/reverse.svg");
   background-size: contain;
   background-repeat: no-repeat;
   position: absolute;
   right: 40px;
   top: 600px;
   animation: bounce 2s infinite;
}

/*Gaming icon end*/

/*Guides & Troubleshooting bg start*/
.guide-bg {
   background-color: #111111;
   background-image: url("https://playerassist.com/wp-content/uploads/2024/05/guide-bg.jpg");
   background-size: cover;
   background-repeat: no-repeat;
   background-position: left bottom;
   position: relative;
}

.guide-bg:after {
   content: "";
   height: 100px;
   width: 100px;
   background-image: url("https://playerassist.com/wp-content/uploads/2024/05/key.svg");
   background-size: contain;
   background-repeat: no-repeat;
   position: absolute;
   right: 20px;
   bottom: 20px;
}

.light-background .guide-bg:after {
   background-image: url("https://playerassist.com/wp-content/uploads/2024/05/key-white.svg");
   animation: bounce 2s infinite;
}

.light-background .guide-bg {
   background-color: #f8f8f8;
   background-image: url("https://playerassist.com/wp-content/uploads/2024/05/guide-light-bg.jpg");
}

/*Guides & Troubleshooting bg end*/

/*Footer Start*/
.bg-black {
   background-color: #000;
}
.light-background .bg-black {
   background-color: #fff;
}

.update-bg {
   background: rgb(27, 27, 27);
   background: linear-gradient(
      180deg,
      rgba(27, 27, 27, 1) 0%,
      rgba(0, 0, 0, 1) 47%
   );
   position: relative;
}

/*   ---------Top Icon Of Footer----------*/
.update-bg::before {
   content: "";
   position: absolute;
   top: -70px;
   left: 95px;
   background-image: url("https://playerassist.com/wp-content/uploads/2024/05/king-icon.svg");
   background-size: contain;
   background-repeat: no-repeat;
   width: 130px;
   height: 130px;
   animation: bounce 2s infinite;
}

.form-txt {
   font-weight: 600;
   color: #aaaaa9;
}

.container-sm h5 {
   font-size: 20px;
}

#menu-games-footer-menu,
#menu-device-footer-menu,
#menu-footer-about-menu,
#menu-social-media {
   list-style: none;
   padding: 0;
   margin: 20px 0px 0px 0px;
}

#menu-games-footer-menu li,
#menu-device-footer-menu li,
#menu-footer-about-menu li,
#menu-social-media li {
   margin-bottom: 15px;
}

#menu-games-footer-menu li a,
#menu-device-footer-menu li a,
#menu-footer-about-menu li a,
#menu-social-media li a {
   color: #e3e3e3 !important;
   font-size: 18px !important;
}

#menu-games-footer-menu li a:hover,
#menu-device-footer-menu li a:hover,
#menu-footer-about-menu li a:hover,
#menu-social-media li a:hover {
   color: #f6571e !important;
   text-decoration: none;
}

.gradient-border {
   border-top: 2px solid;
   border-bottom: 2px solid;
   border-image-source: linear-gradient(
      90deg,
      rgba(255, 142, 0, 0) 10%,
      rgba(255, 142, 0, 1) 25%,
      rgba(255, 142, 0, 0) 40%,
      rgba(255, 142, 0, 0) 60%,
      rgba(255, 142, 0, 1) 75%,
      rgba(255, 142, 0, 0) 90%
   );
   border-image-slice: 1;
}

.container-footer {
   width: 100%;
   padding-right: 20px;
   padding-left: 20px;
   margin-right: auto;
   margin-left: auto;
   max-width: 1400px;
}

.light-background .container-footer .text-white-1 {
   color: #fff !important;
}

.copyright-bg {
   background-color: #171717;
}

.copyright-bg p {
   font-size: 18px;
   color: #efefef;
   margin: 0;
   font-weight: 500;
}

.footer-element {
   position: relative;
}

.footer-element:after {
   content: "";
   height: 473px;
   width: 280px;
   background-image: url("https://playerassist.com/wp-content/uploads/2024/05/footer-vector.svg");
   background-size: contain;
   background-repeat: no-repeat;
   position: absolute;
   right: 20px;
   bottom: -10px;
}

.fs-16 {
   font-size: 15px;
}

/*Footer End*/
#custom-cursor { display:none !important; }
/*bread wrapper start*/

.bread-cumb-wrapper {
   border-bottom: 1px solid #e3e3e3;
}

.custom-breadcumb {
   /*margin-top: 80px;*/
   padding: 15px 0;
   background-color: transparent;
   margin-bottom: 0;
}

.custom-breadcumb li a {
   font-weight: 600;
   font-size: 16px;
   color: #545353 !important;
}
.custom-breadcumb li a:hover{
    color:#fff!important;
}
.light-background .custom-breadcumb li a:hover{
    color:#000!important;
}
.breadcrumb-item + .breadcrumb-item::before {
   display: inline-block;
   padding-right: 0.5rem;
   color: #1d1b1b;
   content: ">";
   font-weight: 600;
}

.breadcrumb-item.active {
   color: #f6571e;
   font-weight: 600;
   font-size: 16px;
}
/*bread wrapper end*/

/*Pagination styling start*/
.nav-pagination{
    display:flex;
    justify-content: center;
}

.pagination li{
    margin:0px 10px;
}

.nav-pagination .pagination .page-link {
    background-color: #393939; /* Darker background for each page link */
    color: #fff; /* White text color for the links */
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight:600;
    border:none!important;
}

.nav-pagination .pagination .page-link:hover {
    background-color: #F6571E; /* Lighter background on hover */
    color: #fff; /* Lighter text color on hover */
}

.nav-pagination .pagination .active .page-link,
.nav-pagination .pagination .active .page-link:hover {
    background-color: #F6571E; /* Even darker background for the active page */
    color: #fff; /* Maintain white text for readability */
}
.bread-cumb-wrapper{
    border:none;
}
/*Pagination styling end*/

/*Search page styling start*/

.search-page .head-text{
    font-size:40px;
    color:#fff;
    font-weight:600;
}
.light-background .search-page .head-text{
    color:#000!important;
}
.search-page img{
    height: 220px;
    object-fit: cover !important;
    border-radius: 15px;
    margin-bottom:15px;
    overflow: hidden;
}
.search-page img:hover{
   transform: scale(1.02);
}
.search-page h5,.search-page h5 a{
    color:#F6571E;
    text-transform:uppercase;
    font-size:14px;
    font-weight:700;
}
.search-page p a{
    font-size:24px;
    color:#fff;
    font-weight:700;
    line-height:1.3em;
}
.light-background .search-page p a{
    color:#000;
}
.search-page p a:hover{
    color:#F6571E;
}
/*Search page styling end*/


/*=====
category Page Styling start
=======*/


.category-in-latest{
    display:flex;
}
.category-heading{
    font-size:40px;
    font-weight:600;
    text-transform:uppercase;
}
.category-front-post img {
    height: 450px;
    object-fit: cover !important;
    border-radius: 15px;
}
.category-front-post h3 {
    color: #f6571e;
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight:500;
}
.category-front-post h2 a {
    font-size: 60px;
    line-height: 1.2em;
    font-weight: 700;
}
.four-category-post img {
    height: 220px;
    object-fit: cover !important;
    border-radius: 15px;
}
.four-category-post h3 {
    color: #f6571e;
    text-transform: uppercase;
    font-size: 14px;
    font-weight:500;
}

.four-category-post h2 a {
    font-size: 25px;
    font-weight: 700;
}
.four-category-post h2{
    line-height:0.85em;
}


.selected-category {
    width: 66%;
}

.advert {
    width: 34%;
}
.selected-category {
    display: flex;
    flex-wrap: wrap;
}

.selected-post {
    width: 46%;
    margin-right: 20px;
    margin-bottom: 30px;
    position: relative;
}
.selected-post img {
    max-width: 100%;
    border-radius: 15px;
    object-fit: cover;
    height: 300px;
}

.selected-post:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.16) 0%,
        rgba(0, 0, 0, 1) 100%
    );
    border-radius: 15px;
}
.selected-post div {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
}
.selected-post div h3{
    margin-bottom:0px!important;
}
.selected-post div h3 a {
    font-size: 15px;
    color: #f6571e;
    text-transform: uppercase;
    font-weight: 600!important;
}
.selected-post div h2 {
    line-height: 1em;
}
.selected-post div h2 a {
    font-size: 24px;
    text-transform: capitalize;
    font-weight: 700;
    line-height:1em;
}
.light-background .selected-post div h2 a{
    color:#fff!important;
}

/*selected all post end*/
/*=====
category Page Styling end
=======*/

/*404 page styling start*/
.error-page__info h1{
    font-size:32px;
    font-weight:600;
}
.error-page-btn{
  padding: 16px 80px;
    background: rgb(242, 85, 28);
    background: linear-gradient(120deg, rgba(242, 85, 28, 1) 0%, rgba(219, 124, 31, 1) 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 700;
    filter: drop-shadow(0 4px 16px rgba(246, 87, 30, 0.58));
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.error-page-btn:hover {
    transform: scale(2);
    filter: drop-shadow(0 6px 20px rgba(246, 87, 30, 0.9));
    color: #fff;
    text-decoration: none;
}
/*404 page styling end*/
   .custom-breadcumb li:nth-child(2) {
        max-width: 122px !important;
        width: 100%;
    }
.custom-breadcumb { flex-wrap:nowrap !important; }
