._link{
    text-align: center;
}
._link a {
    /* color: #FF0000 !important; */
    text-align: center;
    padding-top: 15px;
    font-weight: bold;
    font-size: 40px;
    background: linear-gradient(45deg, #FF0000, #ffd300);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
}
.margin-to-5{
  margin-top: 10px !important;
}
.margin-to-50{
  margin-top: 50px !important;
}
.bg-loading {
  background-size: cover !important;
  background-position: center center !important;
  transition: background-image 0.3s ease;
  position: relative;
}
  .post-categories a {
    font-size: 14px;
    color: #999;
    font-weight: 400;
  }
.bg-loading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background-color: rgba(0, 0, 0, 0.2);*/
  z-index: 1;
}

#innerWrapper {
  background-color: #2c2a2a;
  height: 100vh;
}
.post-categories {
  text-align: center;
  margin-top: -5px;
  font-size: 14px;
}
.footer-desc p {
  font-size: 14px;
  padding: 0 10px;
  text-align: center;
  color: #fff;
}
#footer {
  font-size: 12px;
  text-align: center;
}

.top {
  background-color: #d4a651;
  padding: 3.5px 7px;
  border-radius: 8px 0 8px 0;
  font-size: 12px;
}

/* Dropdown menu styles */
.dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin-top: 5px;
}

.dropdown-toggle {
  /* padding: 10px; */
  text-wrap: nowrap;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 150px;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  z-index: 1000;
}

.dropdown-menu a {
  color: #fff;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.2s;
}

.dropdown-menu a:hover {
  background-color: #1e1e1e;
  color: #d4a651;
}

/* .dropdown:hover .dropdown-menu {
  display: block;
} */
.dropdown-menu.show {
  display: block;
}

.right_side {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
}

.close-button {
  filter: invert(1); /* This will make black become white */
}

#cnzz_stat_icon_1281412482 {
  display: none;
}

.slick-dotted.slick-slider {
  margin: 0;
}
.tag-separator {
  padding: 4px;
}
/* ===================
    Tags
======================*/
.article-tags {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.625rem;
}
.article-tags .tags {
  width: 80%;
  overflow: auto;
  word-wrap: break-word;
  word-break: break-all;
  text-overflow: ellipsis;
  flex: 1;
  /*padding-bottom: 10px;*/
  padding: 10px;
}
.tags a {
  background: #2d2a2a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  border-radius: 2rem;
  padding: 0.3rem 1.1rem;
  color: #a3a3a3;
  margin-top: 0.5rem;
  display: inline-block;
  margin-right: 0.5rem;
  text-decoration: none;
  font-weight: 400;
}
/* ===================
   SEARCH BAR STYLES
=================== */
.search-bar1 {
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 10px;
}

.search-bar1 form {
  display: flex;
  width: 100%;
}

.search-bar1 input[type="text"] {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid #2e2d2d;
  border-radius: 0 32px 32px 0;
  background: #2e2d2d;
  color: #fff;
  width: 165px;
}

.search-bar1 input[type="text"]::placeholder {
  color: #ffffffb3;
  opacity: 0.7;
}

.search-bar1 input[type="text"]:focus,
.search-bar input[type="text"]:hover {
  outline: none;
  border-color: transparent;
}

.search-bar1 button {
  padding: 8px 12px;
  background: #3d3d3d !important;
  border: none;
  border-left: 0;
  border-radius: 32px 0 0 32px;
  cursor: pointer;
}

.search-bar1 button img {
  width: 20px;
  max-width: 18px;
}

/* Hide search bar on desktop */
@media screen and (min-width: 768px) {
  .search-bar {
    display: none;
  }
}

/* Show search bar on mobile */
@media screen and (max-width: 768px) {
  .search-bar1 {
    display: none;
  }
  .serch_box {
    position: absolute;
    z-index: 100;
    /* width: 45%; */
    top: 9%;
    right: 10px;
  }
  .search-bar {
    box-sizing: border-box;
    display: block;
    width: 100%;
    /* padding: 3px; */
    /*background: #000;*/
    border-radius: 32px;
    background: #3d3d3d;
    /* margin: 10px; */
  }

  .search-bar form {
    display: flex;
    /*width: 198px;*/
    max-width: 100%;
    /* padding: 0 10px; */
  }

  .search-bar input[type="text"] {
    max-width: 142px;
    flex: 1;
    padding: 8px 10px;
    border: 1px solid #2e2d2d;
    background: #2e2d2d;
    color: #fff;
    border-radius: 0 32px 32px 0;
  }

  .search-bar input[type="text"]::placeholder {
    color: #ffffffb3;
    opacity: 0.7;
  }

  .search-bar input[type="text"]:focus,
  .search-bar input[type="text"]:hover {
    outline: none;
    border-color: transparent;
  }

  .search-bar button {
    /* padding: 8px 12px; */
    min-width: 35px;
    background: #3d3d3d !important;
    border: none;
    border-left: 0;
    border-radius: 32px 0 0 32px;
    cursor: pointer;
  }
}

/* ===================
   MISC COMPONENTS
=================== */
.no-results-container {
  text-align: center;
  margin: 20px auto;
  font-size: 32px;
  color: #fff;
}

.tag {
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, wp-video0, 0, 0.1);
  max-width: 800px;
  margin: 50px auto;
}

.keyword {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.keyword a {
  text-decoration: none;
  color: #333;
  background-color: #e0e0e0;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.keyword a:hover {
  background-color: #007bff;
  color: #fff;
  transform: translateY(-2px);
}

.copyLink {
  display: flex;
  justify-content: center;
  align-content: center;
}

.copyLink .flash {
  font-weight: bold;
  font-size: calc(10px + 2vh);
  line-height: calc(10px + 6.6vh);
  text-shadow: 0 0 5px #ffa500, 0 0 15px #ffa500, 0 0 20px #ffa500,
    0 0 40px #ffa500, 0 0 60px #ff0000, 0 0 10px #ff8d00, 0 0 98px #ff0000;
  color: #fff6a9;
  text-align: center;
  animation: blink 1s infinite;
  -webkit-animation: blink 1s infinite;
  padding: 1rem;
  cursor: pointer;
}

/* ===================
   SCROLL UP BUTTON
=================== */
#go-to-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  cursor: pointer;
  padding: 12px;
  border-radius: 50%;
  font-size: 18px;
  width: 50px;
  height: 50px;
  opacity: 0;
  transition: background-color 0.3s, opacity 0.3s, transform 0.3s;
}

#go-to-top:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transform: translateY(-5px);
}

#go-to-top svg {
  width: 24px;
  height: 24px;
}

#go-to-top.visible {
  animation: bounce 1s;
}

/* ===================
   CENTER LOGO
=================== */
#center-logo {
  position: absolute;
  top: 9px;
  left: 53%;
  transform: translateX(-50%);
  width: 524px;
  max-width: 90vw;
  height: 30px;
  overflow: hidden;
  border-radius: 5px;
  text-align: center;
}

#center-logo span {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%; /* Start with text completely off-screen */
  animation: marquee 15s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ===================
   CONTENT OPTIMIZATION
=================== */
.post-content p {
  color: #fff !important;
}
.post-content {
  color: #fff !important;
  font-weight: 400;
}
.post-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
}

.post-content .wp-video {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 12px;
  margin-left: auto;
  margin-right: auto;
}

/* ===================
   HEADER STYLES
=================== */
.header {
  color: #fff;
  backdrop-filter: blur(5px);
  background-color: #000;
}
.pcOnly .logo {
  padding: 15px 0;
  width: 120px;
  display: flex;
  padding-right: 5px;
}
.pcOnly h1 a img {
  width: 100px;
  height: 30px;
  max-width: 232px;
}
.spOnly .logo {
  padding: 0;
  width: 95px;
  display: flex;
  margin-left: 60px;
}
.spOnly h1 a img {
  width: 100px;
  height: 32px;
  max-width: 232px;
}

header .headerNew {
  display: flex;
  /*width: calc(100% - 120px);*/
  width: calc(100% - 40px);
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}

.icon {
  width: 30px;
}

/* Navigation Menu */
header .menu {
  width: 1200px;
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
  cursor: grab; /* Show grab cursor to indicate scrollable area */
  -ms-overflow-style: none; /* Hide scrollbar in IE/Edge */
  scrollbar-width: none; /* Hide scrollbar in Firefox */
  user-select: none; /* Prevent text selection during drag */
}

header .menu.active {
  cursor: grabbing; /* Change cursor when actively dragging */
  scroll-behavior: auto; /* Disable smooth scrolling during drag for better performance */
}

header .menu::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Webkit browsers */
}

header .menu li a {
  color: white;
  padding: 16px 10px;
  line-height: 0.2;
  font-weight: 400;
}

.menu .active {
  /* font-size: 24px; */
  text-align: center;
  color: #d4a651;
}

.spmenu div {
  background-color: #fff;
  border-radius: 1px;
}
/*.logo_menu img {*/
/*  width: 200px;*/
/*  height: 100px;*/
/*}*/

.menu_body {
  padding: 0 20px;
}
.body_title {
  margin-bottom: 10px;
  font-weight: 400;
}
.category_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Creates 3 equal columns */
  grid-gap: 10px; /* Space between grid items */
}

.category_grid a {
  font-size: 14px;
  font-weight: 100;
  padding: 5px;
  text-align: center;
  text-wrap: nowrap;
  background-color: #2e2d2d;
  border-radius: 4px;
  color: #fff;
  transition: all 0.3s ease;
  font-weight: 400;
}
.category_grid a.active {
  color: #d4a651;
}

/* headerIn */
.menu2 .header_in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
.menu2 .menu2_in {
  width: 320px;
}
/* spmenu_in */
.spmenu_in {
  position: absolute;
}

/* Menu Links */
.menu-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.menu-link li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
  background-color: #2d2a2a;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
  padding: 25px;
}

.menu-link li:hover {
  background-color: #fff;
}

.menu-link li img {
  display: block;
  margin: auto;
  transition: filter 0.3s ease;
  filter: invert(1);
  width: 25px;
  height: 25px;
}

.menu-link li:hover img {
  filter: invert(0);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  color: white;
  padding: 0;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dropdown-toggle img {
  width: 20px;
  height: 20px;
  filter: invert(1);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  margin: 2px 0 0;
  font-size: 12px;
  text-align: left;
  list-style: none;
  background-color: #313030;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

.dropdown-menu > li > a {
  width: 100%;
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #fff;
  white-space: nowrap;
  text-decoration: none;
}

.dropdown.open .dropdown-menu {
  display: block;
}

/* ===================
   Menu Mobile
=================== */
.pcmenu {
  display: none;
}

/* ===================
   FOOTER STYLES
=================== */
#foot-menu {
  background-color: #2c2a2a;
}

/* .line-container {
  border-top: 1px solid gray;
  padding-bottom: 20px;
} */

.container {
  max-width: 748px;
  margin: 0 auto;
}

.menu-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.menu-bar .menu-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 0.5rem;
  padding: 0.75rem;
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin-left: 30px;
}

.menu-bar .menu-link span {
  color: #fff !important;
  text-wrap: nowrap;
}

.menu-bar .menu-link img {
  width: 1.75rem;
  height: auto;
  transition: transform 0.2s ease;
}

.footer-link {
  padding: 16px 0;
  border-bottom: 1px solid gray;
}

.active-footer {
  margin-top: 20px;
  border-top: 1px solid gray;
}

.footer-link a {
  color: #ffffffb3;
}

.contact-link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 0 40px 0;
  border-bottom: 1px solid gray;
}

.social-icon {
  filter: invert(68%) sepia(51%) saturate(471%) hue-rotate(121deg)
    brightness(89%) contrast(88%);
}

#footer {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  padding: 10px 0;
}

/* ===================
   CATEGORY ARCHIVE
=================== */
.category-archive {
  padding: 70px 0 25px 0;
  background: #2c2a2a;
}

.category-title {
  text-align: center;
  padding: 30px 0 40px;
  font-size: 40px;
  font-weight: bold;
  color: #cccccc;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 800px));
  gap: 0px;
  margin-bottom: 20px;
  padding: 0 5px;
  justify-content: center;
}

.post-card {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  transition: transform 0.3s ease;
  text-decoration: none;
  /*background: #0000;*/
}

.post-card:hover {
  transform: translateY(-5px);
}

.post-card .post-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  /*justify-content: space-between;*/
  /*align-items: baseline;*/
  padding: 5px 0;
}

.post-card .post-title {
  font-size: 16px;
  line-height: 1.6;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-weight: 400;
  margin: 0;
  text-align: left !important;
  /* Limit to 20 characters */
  display: inline-block; /* Required for width to work */
  max-width: 98ch; /* 'ch' unit = width of the "0" character */
  /* white-space: nowrap; Prevent wrapping */
  overflow: hidden; /* Hide overflow */
  text-overflow: ellipsis; /* Add "..." at the end */
}

.post-thumbnail,
.post-image {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  aspect-ratio: 120 / 40;
  background-color: #eee;
}

.post-thumbnail img,
.post-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-content {
  box-sizing: border-box;
  /*position: absolute;*/
  bottom: 20px;
  left: 0;
  right: 0;
  padding: 10px 0 0 0;
  color: #fff;
  text-align: center;
  /*display: flex;*/
  /*justify-content: space-between;*/
  /*align-items: center;*/
}

.post-title {
  margin: 0 0 10px;
  /* font-size: 16px; */
  font-size: 1.17em;
  font-weight: 400;
  line-height: 1.4;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  font-weight: bold;
}

.post-meta {
  font-family: 'Arial', 'Helvetica', sans-serif;
  display: flex;
  justify-content: center;
  font-size: 14px !important;
  color: #ff9000 !important;
  text-align: left !important;
  -webkit-text-fill-color: #999 !important;
  white-space: nowrap;
  font-weight: 400 !important;
  margin-bottom: 5px;
  /* margin-top: 40px; */
}
.post-views {
  margin-left: auto;
}
.single-post .post-meta .post-views {
  margin-left: none;
}

/* Is Hot */
.wrap_hot {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.is_hot {
  display: inline-block;
  text-align: center;
  width: 81px;
  height: 30px;
  line-height: 28px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 166, 0, 0.9),
    rgba(255, 0, 0, 0.9)
  );
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  border-radius: 0 10px 0 15px;
}

/* Pagination */
.pagination {
  text-align: center;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pagination .page-numbers {
  display: none;
}

.pagination .page-numbers.next,
.pagination .page-numbers.prev {
  display: block;
  padding: 4px 8px;
  margin: 0 5px;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
}
.pagination .page-numbers.next {
  margin-left: auto;
}
.pagination .current {
  background: #333;
  color: #fff;
  border-color: #333;
}

/* ===================
   SINGLE POST
=================== */
.single-post {
  padding: 90px 0 1px 0;
  background: #2c2a2a;
}

.single-post .container {
  /*max-width: 800px;*/
  max-width: 678px;
  margin: 0 auto;
  padding: 0 20px;
}

.single-post .post-title {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 0;
  color: #fff !important;
  text-align: center;
  font-weight: 400;
  margin-bottom: 0;
}

.single-post .post-meta {
  display: block;
  text-align: center !important;
  color: #fff !important;
  /*font-weight: bold;*/
  /*margin-bottom: 10px;*/
  font-size: 20px;
}

.single-post .post-featured-image {
  margin-bottom: 30px;
}

.single-post .post-featured-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.single-post .post-content {
  position: static;
  padding: 0;
  background: none;
  color: #fff;
  text-align: left;
}

.single-post .post-content p {
  /*margin-bottom: 0.5em;*/
  line-height: 1.8;
  color: #fff !important;
  font-size: 16px;
  font-weight: 400;
}

.single-post .post-navigation {
  /*margin-top: 40px;*/
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 10px;
  border: 1px solid gray;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 10px;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
  color: #fff;
  display: flex;
  flex-direction: column;
  width: 50%;
}

.post-navigation .nav-previous {
  align-items: start;
  padding-right: 20px;
}

.post-navigation .nav-next {
  align-items: end;
  padding-left: 20px;
}
.post-navigation img {
  border-radius: 5px;
}

/* Banner Image */
.banner-image {
  margin-top: 6px;
  max-width: 100%;
  height: auto;
}

/* ===================
   MODAL/SEARCH
=================== */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.modal-content {
  backdrop-filter: blur(10px);
  margin: 10% auto;
  padding: 10px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  width: 90%;
  max-width: 600px;
  position: relative;
  transform: translateY(-20px);
  animation: modalSlideDown 0.3s ease forwards;
}

.close {
  position: absolute;
  right: 20px;
  top: 15px;
  color: #666;
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s ease;
}

.close:hover,
.close:focus {
  color: #333;
}

.search-container {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

#search-input {
  width: 80%;
  padding: 12px 16px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  transition: border-color 0.2s ease;
}

#search-button {
  padding: 12px 24px;
  background-color: #2d2a2a;
  color: #ffff00;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

#search-button:active {
  transform: scale(0.98);
}

/* ===================
   RESPONSIVE STYLES
=================== */
@media (max-width: 768px) {
  .top {
    padding: 1.5px 6px 1.5px 3px;
  }
  .single-post .post-content p {
    font-size: 16px;
  }

  .post-content {
    bottom: 40px;
  }

  .menu-link li img {
    width: 20px;
    height: 20px;
  }

  #foot-menu {
    padding: 0 10px;
  }

  .menu-bar {
    gap: 1rem;
    padding: 1rem 0;
  }

  .menu-bar .menu-link {
    padding: 0.5rem;
    gap: 0.4rem;
    margin-left: 15px;
  }

  .menu-bar .menu-link img {
    width: 1.5rem;
  }

  .menu-bar .menu-link span {
    font-size: 0.9rem;
  }

  .article-ads-btn a {
    width: calc(50% - 0.5rem);
  }

  .category-archive {
    padding-top: 100px;
    padding-bottom: 20px;
  }

  .post-title {
    font-size: 22px;
  }

  .single-post {
    padding-top: 125px;
    padding-bottom: 10px;
  }

  .single-post .post-title {
    font-size: 24px;
    /*margin-bottom: 14px;*/
  }

  .single-post .post-meta {
    font-size: 20px;
  }
}

@media (max-width: 700px) {
  #center-logo {
    top: 9px;
    left: 53%;
    width: 260px;
  }
}

@media (max-width: 650px) {
  #center-logo {
    top: 9px;
    left: 53%;
    width: 260px;
  }
}

@media (max-width: 580px) {
  #center-logo {
    top: 9px;
    left: 53%;
    width: 260px;
  }
}

@media (max-width: 490px) {
  #center-logo {
    top: 9px;
    left: 53%;
    width: 260px;
  }
}

@media (max-width: 480px) {
  #center-logo {
    top: 9px;
    left: 53%;
    width: 260px;
  }
  .menu-link li {
    padding: 16px;
  }

  .post-content {
    bottom: 20px;
  }

  /* .posts-grid {
    padding: 0 8px;
  } */

  /* .container {
    font-size: 10px;
    padding: 0;
  } */

  /* #footer {
    font-size: 12px;
    text-align: center;
  } */

  .contact-link {
    padding: 8px 0 16px 0;
  }

  .single-post .container {
    padding: 0 8px;
  }

  .menu-bar {
    gap: 0.75rem;
    padding: 0.75rem 0;
  }

  .menu-bar .menu-link {
    margin-left: 0;
  }

  .menu-bar .menu-link img {
    width: 1.25rem;
  }

  .menu-bar .menu-link span {
    font-size: 0.8rem;
  }

  .article-ads-btn a {
    width: 100%;
  }

  /* .posts-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  } */

  .category-archive {
    padding: 100px 0 20px 0;
  }

  .category-title {
    margin-bottom: 15px;
    font-size: 28px;
    padding: 20px 0 30px;
  }

  .post-title {
    font-size: 18.6px;
  }

  .single-post .post-title {
    /* font-size: 16px; */
  }

  .single-post .post-meta {
    font-size: 12px;
  }

  .post-meta {
    font-size: 10px;
    /*display: none;*/
  }

  .post-content {
    font-size: 16px;
    font-weight: 100;
  }
}

@media (max-width: 425px) {
  .is_hot {
    height: 25px;
    line-height: 22px;
    font-size: 14px;
  }
  #center-logo {
    top: 9px;
    left: 56%;
    width: 207px;
  }
  .post-content {
    bottom: 40px;
  }
}

@media (max-width: 400px) {
  .post-content {
    bottom: 40px;
  }
}

@media (max-width: 375px) {
  #center-logo {
    top: 9px;
    left: 56%;
    width: 205px;
  }

  .post-content {
    bottom: 45px;
  }
}

@media (max-width: 320px) {
  #center-logo {
    top: 9px;
    left: 55%;
    width: 215px;
  }
  .post-content {
    bottom: 20px;
  }

  /* .posts-grid {
    padding: 0 8px;
  } */

  .container {
    font-size: 10px;
    padding: 0;
  }

  /* #footer {
    font-size: 8px;
  } */

  .contact-link {
    padding: 8px 0 16px 0;
  }

  .menu-bar {
    gap: 0.5rem;
    padding: 0.5rem 0;
  }

  .menu-bar .menu-link {
    padding: 0.3rem;
    margin-left: 10px;
  }

  .menu-bar .menu-link img {
    width: 1.1rem;
  }

  .menu-bar .menu-link span {
    font-size: 0.7rem;
  }
}

/* ===================
   ANIMATIONS
=================== */
/*@keyframes blink {*/
/*  0%, 100% { opacity: 1; }*/
/*  50% { opacity: 0.7; }*/
/*}*/

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes modalSlideDown {
  to {
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
