:root {
--main-color: #C2414B;
--main-color-alt: #9F2F38;
}
body {
  font-family: "Cairo", sans-serif;
  background-color: #eee;
}
::-webkit-scrollbar {
  width: 15px;
}
::-webkit-scrollbar-track {
  background-color: #eee;
}
::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--main-color-alt);
}
input:focus {
  outline: none;
}
input {
  caret-color: var(--main-color);
}
ul, ol {
  list-style: none;
  padding: 0;
}
/* Start Headings Collection */
.title-box {
  text-align: center;
}
.title-box h2 {
  letter-spacing: 1px;
}
.title-box p {
  font-size: 14px;
  color: #555;
  word-spacing: 1px;
  letter-spacing: 1px;
  position: relative;
}
.title-one + .description {
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  grid-template-rows: 30px 0;
  grid-gap: 15px;
  align-items: center;
}
.title-one + .description::before,
.title-one + .description::after {
  content: "";
  display: block;
  border-bottom: 1px solid var(--main-color);
  border-top: 1px solid var(--main-color);
  height: 5px;
}
.title-two + .description {
  margin-bottom: 40px;
}
.title-two + .description::before {
  content: "";
  background-color: var(--main-color);
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 30px;
  height: 5px;
  transform: translateX(-50%);
}
.title-two + .description::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--main-color);
  width: 100px;
  height: 1px;
}
.title-three + .description {
  width: fit-content;
  margin: 0 auto 20px;
  padding-bottom: 15px;
}
.title-three + .description::before {
  content: "";
  background-color: #111;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55px;
  height: 5px;
}
.title-three + .description::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  background-color: #333;
  width: 95%;
  height: 1px;
  max-width: 255px;
}
.title-four + .description {
  padding-bottom: 20px;
}
.title-four + .description::before,
.title-four + .description::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45px;
  height: 4px;
  content: "";
  right: 45px;
  margin: auto;
  background-color: #ccc;
}
.title-four + .description::before {
  background-color: var(--main-color);
  left: 45px;
  width: 90px;
}
.title-five {
  width: fit-content;
  white-space: nowrap;
  border: 2px solid #222;
  padding: 5px 10px;
  position: relative;
  margin: 0 auto 15px;
}
.title-five::before,
.title-five::after {
  content: "";
  background-color: var(--main-color);
  position: absolute;
  height: 7px;
  width: 7px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.title-five::before {
  left: -20px;
}
.title-five::after {
  right: -20px;
}
.title-five + .description {
  padding-bottom: 20px;
}
/* End Headings Collection */
/* Start Navbar */
.navbar {
  padding: 0;
  background-color: var(--main-color) !important;
}
.navbar-brand img {
  height: 30px;
}
.navbar-nav .nav-link {
  color: white;
  transition: 0.3s;
  padding: 15px 20px !important;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:hover {
  background-color: var(--main-color-alt) !important;
}
.dropdown-toggle::after {
  position: relative;
  top: 2px;
  left: 3px;
}
.navbar-nav .dropdown-menu {
  min-width: 260px;
  top: calc(100% - 3px);
  border-radius: 0;
  border: none;
  padding: 0;
  background-color: var(--main-color-alt);
}
.navbar-nav .dropdown-menu .dropdown-item {
  padding: 15px;
  border-radius: 0;
  color: white;
  transition: 0.3s;
}
.navbar-nav .dropdown-menu .dropdown-item:focus,
.navbar-nav .dropdown-menu .dropdown-item:hover {
  background-color: var(--main-color);
  color: white;
  padding-left: 18px;
}
.navbar-nav li:last-child .dropdown-menu {
  right: 0;
  left: auto;
}
/* End Navbar */
/* Start Homepage */
.homepage .section {
  padding-top: 60px;
  padding-bottom: 60px;
}
.homepage .introduction {
  min-height: calc(100vh - 56px);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.homepage .introduction .search-form {
  display: flex;
  align-items: center;
  max-width: 500px;
  margin: auto;
}
.homepage .introduction .search-form input[type="search"] {
  width: 100%;
  padding: 10px 15px;
  border: none;
  border-radius: 5px 0 0 5px;
  font-size: 16px;
  color: #333;
  transition: 0.3s;
}
.homepage .introduction .search-form .search-submit {
  padding: 10px 15px;
  border: none;
  border-radius: 0 5px 5px 0;
  font-size: 16px;
  color: #fff;
  background-color: var(--main-color);
  cursor: pointer;
  transition: 0.3s;
}
.homepage .introduction .search-form .search-submit:hover {
  background-color: var(--main-color-alt);
}
/* End Homepage */
/* Start Search Page */
.search-page {
  padding-top: 30px;
}
.search-page .search-results .result {
  margin-bottom: 15px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
.search-page .search-results .result .link {
  font-size: 20px;
  font-weight: bold;
  color: var(--main-color);
  text-decoration: none;
  transition: 0.3s;
}
.search-page .search-results .result .link:hover {
  color: var(--main-color-alt);
}
.search-page .search-results .result .excerpt {
  margin: 10px 0;
  color: #777;
}
.search-page .search-results .result .time {
  font-size: 14px;
  color: #999;
}
.search-page .search-results .result .categories {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #ddd;
  color: #777;
}
.search-page .search-results .result .categories a {
  color: var(--main-color);
  text-decoration: none;
  transition: 0.3s;
}
.search-page .search-results .result .categories a:hover {
  color: var(--main-color-alt);
}
/* End Search Page */
/* Start Tag Page */
.tag-page .head {
  background-color: white;
  padding: 40px;
  text-align: center;
  border-bottom: 2px solid var(--main-color);
  margin-bottom: 20px;
}
.tag-page .head h1 {
  font-weight: bold;
}
.tag-page .tag-cloud {
  background-color: white;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
}
.tag-page .tag-cloud h3 {
  font-weight: bold;
  margin-bottom: 30px;
}
.tag-page .tag-cloud div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag-page .tag-cloud a {
  font-size: 16px !important;
  background-color: #eee;
  padding: 2px 10px;
  text-decoration: none;
  border-radius: 6px;
  color: black;
  transition: 0.3s;
}
.tag-page .tag-cloud a:hover {
  background-color: var(--main-color);
  color: white;
}
.tag-page .post {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  background-color: white;
  padding: 20px;
}
@media (max-width: 575px) {
  .tag-page .post {
    flex-direction: column;
  }
}
.tag-page .post .image {
  flex: 1;
}
.tag-page .post .image img {
  max-width: 100%;
  height: auto;
}
.tag-page .post .info {
  flex: 1;
}
.tag-page .post .info .cats a {
  text-decoration: none;
  color: black;
  font-size: 14px;
  transition: 0.3s;
}
.tag-page .post .info .cats a:hover {
  color: var(--main-color);
}
.tag-page .post .post-title {
  font-weight: bold;
  text-decoration: none;
  color: black;
  transition: 0.3s;
}
.tag-page .post .post-title:hover {
  color: var(--main-color);
}
.tag-page .post .date {
  font-size: 14px;
  color: #999;
  margin-top: 5px;
  display: block;
}
.tag-page .post .excerpt {
  margin-top: 5px;
  color: #777;
}
/* End Tag Page */
/* Start Footer */
footer {
  padding: 20px;
}
footer .footer-links {
  padding: 20px 0;
  border-bottom: 1px solid #444;
  margin-bottom: 20px;
}
footer .footer-links .description {
  margin-top: 20px;
  color: #ddd;
  line-height: 1.8;
}
footer .footer-links h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
}
footer .footer-links ul li:not(:last-child) {
  margin-bottom: 10px;
  border-bottom: 1px solid #666;
  padding-bottom: 10px;
}
footer .footer-links ul li a {
  color: #777;
  text-decoration: none;
}
footer .footer-links ul li a:hover {
  color: var(--main-color);
}
footer .social-icons {
  display: flex;
  justify-content: flex-end;
}
footer .social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  text-decoration: none;
  transition: 0.3s;
  border-radius: 50%;
}
footer .social-icons a.facebook:hover {
  background-color: #1877f2;
}
footer .social-icons a.twitter:hover {
  background-color: #1da1f2;
}
footer .social-icons a.linkedin:hover {
  background-color: #0a66c2;
}
footer .social-icons a.instagram:hover {
  background-color: #5851db;
}
footer .social-icons a.youtube:hover {
  background-color: #ff0000;
}
footer .social-icons a:hover i {
  color: #fff;
}
footer .social-icons a i {
  font-size: 16px;
  color: #999;
  transition: 0.3s;
}
@media (max-width: 575px) {
  footer {
    text-align: center;
  }
  footer .social-icons {
    margin-top: 10px;
    justify-content: center;
  }
}
/* End Footer */
/* Start Cat Head */
.cat-head {
  background: linear-gradient(135deg, #2a0a3d, #120016);
  padding: 60px 20px;
  margin-bottom: 30px;
  color: #fff;
  text-align: center;
}
.cat-head h1 {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 40px;
}
.cat-head .desc {
  max-width: 700px;
  margin: 0 auto;
  opacity: .9;
}
/* End Cat Head */
/* Start Main Games Category */
.main-games {
  margin-bottom: 30px;
}
.main-games .sub-category {
  background: #fff;
  padding: 25px 30px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,.06);
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-games .sub-category > img {
  width: 120px;
  height: 120px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0,0,0,.15);
}
.main-games .sub-category h2 {
  font-weight: bold;
  padding-left: 15px;
  border-left: 5px solid var(--main-color);
  margin-bottom: 0;
}
.main-games .sub-category h2 a {
  color: #222;
  text-decoration: none;
}
.main-games .sub-category h2 a:hover {
  color: var(--main-color);
}
.main-games .posts-count {
  display: block;
  font-size: 15px;
  margin-top: 10px;
  color: #777;
  font-weight: normal;
}
.main-games .posts-count span {
  color: var(--main-color);
  font-weight: bold;
}
.main-games .games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.main-games .game-card {
  position: relative;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.main-games .game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,.15);
}
.main-games .game-card > img {
  max-width: 100%;
}
.main-games .game-card .the-body h2 {
  margin: 0 0 5px;
  font-size: 20px;
  font-weight: bold;
}
.main-games .game-card .the-body h2 a {
  color: var(--main-color);
  text-decoration: none;
}
.main-games .game-card .the-body h2 a:hover {
  color: var(--main-color-alt);
}
.main-games .game-card .the-body .the-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-games .game-card .the-body .the-info .console {
  padding: 3px 10px 2px;
  font-size: 12px;
  border-radius: 8px;
  font-weight: bold;
}
.main-games .game-card .the-body .the-info .ps4 {
  background-color: #003087;
  color: white;
}
.main-games .game-card .the-body .the-info .ps5 {
  background-color: #ff5100;
  color: white;
}
.main-games .game-card .icons img {
  width: 22px;
  height: auto;
  animation: platinumPulse 2.2s infinite ease-in-out;
  filter: drop-shadow(0 0 6px rgba(180, 180, 255, 0.6));
  margin-right: 5px;
}
.main-games .game-card .not-icon img {
  opacity: 0.1;
}
@keyframes platinumPulse {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.06) rotate(4deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}
.main-games .game-card .rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-games .game-card .rating i.fa-solid {
  color: var(--main-color);
}
.main-games .game-card .rating i.fa-regular {
  color: #bbb;
}
/* End Main Games Category */
/* Start Life Goals */
.goals-page {
  padding: 0 0 20px;
}
.goals-page .global-box {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 20px;
}
.goals-page h2 {
  margin-bottom: 20px;
  font-size: 22px;
  letter-spacing: 1px;
  color: black;
}
.goals-page .global-progress-wrapper {
  position: relative;
}
.goals-page .global-progress-text {
  display: block;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--main-color);
}
.goals-page .global-progress-bar {
  height: 14px;
  background-color: #EEE;
  border-radius: 30px;
  overflow: hidden;
}
.goals-page .global-progress-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--main-color), var(--main-color-alt));
  border-radius: 30px;
  transition: width 1.2s ease-in-out;
}
.goals-page .targets-group {
  font-size: 22px;
  margin-bottom: 20px;
  background: linear-gradient(to right, var(--main-color), var(--main-color-alt));
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
}
.goals-page .goal-card {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
  margin-bottom: 10px;
  position: relative;
}
.goals-page .goal-card .progress-result {
  position: absolute;
  right: 10px;
  top: 15px;
  background-color: #EEE;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 10px;
  color: black;
}
.goals-page .goal-card .goal-title {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--main-color);
  font-weight: bold;
}
.goals-page .goal-card .goal-numbers {
  font-size: 18px;
  margin-bottom: 15px;
  color: #777;
}
.goals-page .goal-card .goal-numbers .total {
  font-weight: bold;
  color: black;
}
.goals-page .goal-card .progress {
  background-color: #eee;
  height: 10px;
  border-radius: 10px;
  overflow: visible;
  margin-top: 5px;
  margin-bottom: 20px;
}
.goals-page .goal-card .progress > span {
  display: block;
  height: 100%;
  background-color: var(--main-color);
  border-radius: 8px;
  position: relative;
}
.goals-page .goal-card .targets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.goals-page .goal-card .targets .target {
  background: #f2f4f8;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: #333;
}
.goals-page .goal-card .targets .done {
  background-color: var(--main-color);
  color: #fff;
}
/* End Life Goals */
/* Start Podcasts */
.podcasts {
  direction: rtl;
}
.podcasts .podcast-card {
  display: flex;
  gap: 15px;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  transition: 0.35s ease;
  margin-bottom: 20px;
}
.podcasts .podcast-card .thumb {
  flex: 0 0 280px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
}
.podcasts .podcast-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.podcasts .podcast-card .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.podcasts .podcast-card .content h3 {
  margin: 0 0 15px;
  font-size: 20px;
  font-weight: bold;
}
.podcasts .podcast-card .watch-link {
  font-size: 14px;
  font-weight: bold;
  color: var(--main-color);
  text-decoration: none;
  transition: 0.3s;
  margin-bottom: 15px;
}
.podcasts .podcast-card .watch-link:hover {
  letter-spacing: 1px;
  color: var(--main-color-alt);
}
.podcasts .podcast-card .meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #777;
}
.podcasts .podcast-card .meta .duration-text {
  background-color: var(--main-color);
  color: white;
  padding: 2px 10px;
  border-radius: 6px;
  font-weight: bold;
}
.podcasts .podcast-card .meta .dot {
  width: 4px;
  height: 4px;
  background-color: #999;
  border-radius: 50%;
}
.podcasts .podcast-card .meta .year {
  background-color: var(--main-color);
  color: white;
  padding: 2px 10px;
  border-radius: 6px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .podcasts .podcast-card {
    flex-direction: column;
  }
  .podcasts .podcast-card .thumb {
    flex: auto;
  }
  .podcasts .podcast-card .content {
    padding: 20px;
  }
}
/* End Podcasts */
/* Start Influencers Page */
.influencers {
  background-color: white;
  padding: 20px;
  direction: ltr;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .influencers {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
  }
}
.influencers .box {
  background-color: #eee;
  padding: 15px;
  border-radius: 6px;
  text-align: center;
  border: 1px solid #f1f1f1;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .influencers .box {
    margin-bottom: 20px;
  }
}
.influencers .box .content {
  position: relative;
  z-index: 2;
}
.influencers .box .content h4 {
  background-color: white;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}
.influencers .box .content .channel-name {
  font-weight: bold;
  font-size: 13px;
  color: #009688;
}
.influencers .box .content > img {
  max-width: 100%;
  height: auto;
  width: 100%;
  border: 1px solid white;
  border-radius: 6px;
  margin-bottom: 10px;
}
.influencers .box ul {
  display: flex;
  justify-content: center;
  gap: 5px;
  background-color: white;
  padding: 10px;
  border-radius: 6px;
  margin: 10px 0 0;
}
.influencers .box ul li a img {
  width: 30px;
  border-radius: 6px;
  transition: 0.3s;
}
.influencers .box ul li a img:hover {
  transform: rotate(0.25turn);
}
.influencers .box ul li .tag {
  color: white;
  padding: 2px 10px;
  display: inline-flex;
  border-radius: 6px;
  font-weight: bold;
}
.influencers .box ul li .tag.history {
  background-color: #8d6e63; /* Warm Brown */
}
.influencers .box ul li .tag.marketing {
  background-color: #9c27b0; /* Modern Purple */
}
.influencers .box ul li .tag.business {
  background-color: #1976d2; /* Professional Blue */
}
.influencers .box ul li .tag.management {
  background-color: #2e7d32; /* Deep Green */
}
.influencers .box ul li .tag.cyber-security {
  background-color: #0d47a1; /* Dark Tech Blue */
}
.influencers .box ul li .tag.video-editing {
  background-color: #6a1b9a; /* Deep Editing Purple */
}
.influencers .box ul li .tag.graphic-design {
  background-color: #ec407a; /* Design Pink */
}
.influencers .box ul li .tag.copywriting {
  background-color: #607d8b; /* Writing Grey Blue */
}
.influencers .box:hover:before {
  animation: rotateImportantText 5s infinite linear;
  background-image: linear-gradient(
    to bottom,
    rgba(194, 65, 75, 0) 40%,
    var(--main-color) 50%,
    rgba(194, 65, 75, 0) 60%
  );
}
.influencers .box:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
}
.influencers .box:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 5px;
  background-color: #ededed;
}
@-webkit-keyframes rotateImportantText {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotateImportantText {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* End Influencers Page */