
/* Root variables */
:root {
  --card-bg: #ffffff;
  --card-radius: .75rem;
  --card-shadow: 0 4px 15px rgba(0,0,0,0.1);
  --accent-color: #4f46e5; /* indigo-600 */
}

/* Section container */
#category-posts-10 {
  padding: 80px 0;
  background: #f8f9fa;
}
#category-posts-10 .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
#category-posts-10 .section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #212529;
}
#category-posts-10 .section-subtitle {
  font-size: 1rem;
  color: #6c757d;
}

/* Grid */
#category-posts-10 .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 2rem;
}

/* Card */
#category-posts-10 .post-card {
  background: var(--card-bg);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transform: translateY(20px) scale(0.98);
  opacity: 0;
  transition: transform .6s ease, opacity .6s ease;
  perspective: 1000px;
}
#category-posts-10 .post-card.visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}
#category-posts-10 .post-card:hover {
  transform: rotateX(2deg) rotateY(-2deg);
}

/* Image */
#category-posts-10 .post-card img {
  width: 100%;
  display: block;
}

/* Card body */
#category-posts-10 .card-body {
  padding: 1rem;
}
#category-posts-10 .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .75rem;
  color: #212529;
}
#category-posts-10 .btn-readmore {
  font-size: .875rem;
  color: var(--accent-color);
  font-weight: 500;
  text-decoration: none;
}
#category-posts-10 .btn-readmore i {
  margin-left: .25rem;
  transition: transform .3s ease;
}
#category-posts-10 .btn-readmore:hover i {
  transform: translateX(3px);
}

/* Pagination & Load More */
#category-posts-10 .pagination-wrapper,
#category-posts-10 .load-more-wrapper {
  text-align: center;
  margin-top: 2.5rem;
}




#offers-12 {
  padding: 80px 0;
  background-color: #fafafa;
}
#offers-12 .offer-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3.5rem;
  font-size: 2rem;
}
#offers-12 .game-type-image-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
#offers-12 .game-type-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
#offers-12 .game-type-details-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-left: 2.5rem;
}
#offers-12 .game-type-headline {
  font-weight: 700;
  font-size: 1.8rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
#offers-12 .game-type-offers-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2.5rem;
}
#offers-12 .game-type-offers-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  color: #343a40;
  font-size: 1rem;
  line-height: 1.6;
}
#offers-12 .game-type-offers-list li i {
  margin-right: 12px;
  margin-top: 5px;
  color: #0d6efd;
  font-size: 1em;
  width: 20px;
  text-align: center;
}
#offers-12 .btn-game-type-cta {
  padding: 0.8rem 2rem;
  font-weight: 600;
  align-self: flex-start;
}
@media (max-width: 991.98px) {
  #offers-12 .game-type-image-col {
    margin-bottom: 2rem;
  }
  #offers-12 .game-type-details-col {
    padding-left: 0;
    text-align: center;
  }
  #offers-12 .game-type-offers-list {
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  #offers-12 .btn-game-type-cta {
    align-self: center;
  }
}


