
#hero-16 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 75vh;
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
}
#hero-16 .container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
#hero-16 .hero-content-wrapper-16 {
  max-width: 650px;
  padding: 2.5rem 3.5rem;
  border-radius: 15px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
  color: #ffffff;
}
#hero-16 .hero-title-16 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
#hero-16 .hero-subtitle-16 {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
}
#hero-16 .hero-cta-button-16 {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  transition: background-color 0.2s ease;
  background-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}
#hero-16 .hero-cta-button-16:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 767.98px) {
  #hero-16 {
    min-height: 65vh;
    padding: 3rem 1rem;
  }
  #hero-16 .hero-content-wrapper-16 {
    padding: 2rem;
    max-width: 90%;
  }
  #hero-16 .hero-title-16 {
    font-size: 2.2rem;
  }
  #hero-16 .hero-subtitle-16 {
    font-size: 1rem;
  }
}



#game-section-2 {
  padding: 60px 15px;
  max-width: 1200px;
  margin: 0 auto;
}
#game-section-2 .section-hero {
  background-size: cover;
  background-position: center;
  padding: 80px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}
#game-section-2 .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
#game-section-2 .feature-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
#game-section-2 .feature-card:hover {
  transform: translateY(-5px);
}
#game-section-2 .feature-card i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 10px;
}
#game-section-2 .feature-card h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}
#game-section-2 .feature-card p {
  font-size: 1rem;
  color: #555;
}



/* 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;
}




#features-21 {
  padding: 80px 0;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: {{ $data['features-21']['text_color'] ?? '#ffffff' }};
}
#features-21::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: {{ $data['features-21']['overlay_color'] ?? 'rgba(0, 0, 0, 0.6)' }};
  z-index: 1;
}
#features-21 .container {
  position: relative;
  z-index: 2;
}
#features-21 .section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: inherit; 
}
#features-21 .feature-block {
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1); 
  transition: background 0.3s ease;
  height: 100%; 
  backdrop-filter: blur(5px); 
  -webkit-backdrop-filter: blur(5px); 
}
#features-21 .feature-block:hover {
   background: rgba(255, 255, 255, 0.2);
}
#features-21 .feature-icon i {
  font-size: 40px;
  margin-bottom: 15px;
  display: inline-block;
  color: inherit; 
  opacity: 0.9;
}
#features-21 .feature-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: inherit;
}
#features-21 .feature-description {
  font-size: 15px;
  line-height: 1.5;
  color: inherit;
  opacity: 0.85;
}
@media (max-width: 991.98px) {
  #features-21 {
    padding: 60px 0;
  }
  #features-21 .section-header h2 {
    font-size: 32px;
  }
}
@media (max-width: 767.98px) {
   #features-21 .section-header h2 {
     font-size: 28px;
   }
   #features-21 .feature-icon i {
     font-size: 36px;
   }
   #features-21 .feature-title {
      font-size: 17px;
   }
   #features-21 .feature-description {
      font-size: 14px;
   }
}



#content-block-9 {
  padding: 60px 15px;
  max-width: 900px;
  margin: 0 auto;
}
#content-block-9 .header {
  text-align: center;
  margin-bottom: 40px;
}
#content-block-9 .header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
#content-block-9 .header p {
  font-size: 1.1rem;
  color: #777;
}
#content-block-9 .article-body {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}



#counter-6 {
  padding: 80px 0;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  color: #ffffff;
  text-align: center;
}
#counter-6::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--overlay-color, rgba(0, 0, 0, 0.7));
  z-index: 1;
}
#counter-6 .container {
  position: relative;
  z-index: 2;
}
/* Optional Section Header Styling (if added in template)
#counter-6 .section-header {
    margin-bottom: 50px;
}
#counter-6 .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}
#counter-6 .section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}
*/
#counter-6 .counter-item-inline {
  padding: 20px 15px;
}
#counter-6 .counter-item-inline i {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
  opacity: 0.9;
  transition: transform 0.3s ease;
}
#counter-6 .counter-item-inline:hover i {
  transform: scale(1.1);
}
#counter-6 .counter-value-wrapper {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-bottom: 10px;
}
#counter-6 .counter-number {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}
#counter-6 .counter-suffix {
  font-size: 2rem;
  font-weight: 600;
  margin-left: 5px;
  line-height: 1;
}
#counter-6 .counter-title-inline {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 991.98px) {
  #counter-6 .counter-item-inline {
    margin-bottom: 30px;
  }
  #counter-6 .counter-number {
    font-size: 2.5rem;
  }
  #counter-6 .counter-suffix {
    font-size: 1.8rem;
  }
  #counter-6 .counter-item-inline i {
    font-size: 2.5rem;
  }
}
@media (max-width: 767.98px) {
  #counter-6 {
    padding: 60px 0;
    background-attachment: scroll;
  }
  #counter-6 .counter-item-inline {
    margin-bottom: 35px;
  }
  #counter-6 .counter-item-inline:last-child {
    margin-bottom: 0;
  }
  #counter-6 .counter-title-inline {
    font-size: 1rem;
  }
}



#offers-17 {
  padding: 80px 0;
  background-color: #fff;
}
#offers-17 .offer-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3.5rem;
  font-size: 2rem;
}
#offers-17 .offer-details-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
#offers-17 .offer-title {
  font-weight: 700;
  font-size: 1.9rem;
  color: #0d6efd;
  margin-bottom: 1rem;
}
#offers-17 .offer-description {
  color: #495057;
  line-height: 1.7;
  margin-bottom: 1rem;
}
#offers-17 .offer-how-to-claim {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 2rem;
  font-style: italic;
}
#offers-17 .btn-offer-cta {
  padding: 0.8rem 2rem;
  font-weight: 600;
  align-self: flex-start;
}
#offers-17 .offer-gallery-col {
  padding-left: 2rem;
}
#offers-17 .gallery-title {
  font-weight: 600;
  font-size: 1rem;
  color: #343a40;
  margin-bottom: 1rem;
}
#offers-17 .gallery-grid .game-thumbnail {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
#offers-17 .gallery-grid .game-thumbnail:hover {
  transform: scale(1.05);
}
#offers-17 .gallery-grid .game-thumbnail img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  width: 100%;
}
#offers-17 .gallery-grid .game-name-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 5px 8px;
  font-size: 0.75rem;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 991.98px) {
  #offers-17 .offer-details-col {
    margin-bottom: 3rem;
    text-align: center;
  }
  #offers-17 .btn-offer-cta {
    align-self: center;
  }
  #offers-17 .offer-gallery-col {
    padding-left: 0;
  }
  #offers-17 .gallery-grid {
    justify-content: center;
  }
}



#faq-29 {
  padding: 80px 0;
  background-color: #eef2f7;
}
#faq-29 .faq-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3rem;
  font-size: 2rem;
}
#faq-29 .faq-chat-container {
  max-width: 750px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 500px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
#faq-29 .chat-message {
  display: flex;
  margin-bottom: 1.5rem;
  align-items: flex-end;
}
#faq-29 .chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 10px;
}
#faq-29 .chat-bubble {
  max-width: 75%;
  padding: 0.8rem 1.2rem;
  border-radius: 18px;
  line-height: 1.6;
  font-size: 0.95rem;
  position: relative;
}
#faq-29 .chat-message.user {
  justify-content: flex-end;
}
#faq-29 .chat-message.user .chat-avatar {
  order: 2;
}
#faq-29 .chat-message.user .chat-bubble {
  background-color: #0d6efd;
  color: #fff;
  border-bottom-right-radius: 5px;
  order: 1;
}
#faq-29 .chat-message.support {
  justify-content: flex-start;
}
#faq-29 .chat-message.support .chat-avatar {
  order: 1;
}
#faq-29 .chat-message.support .chat-bubble {
  background-color: #e9ecef;
  color: #343a40;
  border-bottom-left-radius: 5px;
  order: 2;
}
#faq-29 .chat-bubble p:last-child {
  margin-bottom: 0;
}



#why-choose-us-5 {
  padding: 60px 15px;
  margin: 0 auto;
  max-width: 800px;
}
#why-choose-us-5 .section-hero {
  background-size: cover;
  background-position: center;
  padding: 70px 15px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}
#why-choose-us-5 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#why-choose-us-5 li {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}
#why-choose-us-5 li:last-child {
  border-bottom: none;
}
#why-choose-us-5 li i {
  font-size: 2rem;
  color: #dc3545;
  margin-right: 15px;
}
#why-choose-us-5 .reason-content h5 {
  margin: 0 0 5px;
  font-size: 1.1rem;
}
#why-choose-us-5 .reason-content p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
}



#testimonials-18 {
  padding: 80px 0;
  background-color: #ffffff;
}
#testimonials-18 .container {
  max-width: 960px;
}
#testimonials-18 .section-header {
  margin-bottom: 60px;
  text-align: center;
}
#testimonials-18 .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 15px;
}
#testimonials-18 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}
#testimonials-18 .testimonial-timeline-container {
  position: relative;
  margin: 0 auto;
}
#testimonials-18 .testimonial-timeline-container::before {
  content: "";
  position: absolute;
  width: 3px;
  background-color: var(--timeline-color, #0d6efd);
  opacity: 0.3;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1.5px;
}
#testimonials-18 .timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  margin-bottom: 30px;
}
#testimonials-18 .timeline-item::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  right: -9px;
  background-color: #ffffff;
  border: 4px solid var(--timeline-color, #0d6efd);
  top: 25px;
  border-radius: 50%;
  z-index: 1;
}
#testimonials-18 .timeline-item.timeline-left {
  left: 0;
  padding-right: 60px;
}
#testimonials-18 .timeline-item.timeline-right {
  left: 50%;
  padding-left: 60px;
}
#testimonials-18 .timeline-item.timeline-right::after {
  left: -9px;
}
#testimonials-18 .timeline-item.timeline-left .timeline-content::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 28px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #ffffff;
}
#testimonials-18 .timeline-item.timeline-right .timeline-content::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 28px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent #ffffff transparent transparent;
}
#testimonials-18 .timeline-content {
  padding: 20px 25px;
  background-color: #f8f9fa;
  position: relative;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
#testimonials-18 .timeline-date {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--timeline-color, #0d6efd);
  margin-bottom: 10px;
  display: block;
}
#testimonials-18 .timeline-message {
  font-size: 1rem;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 15px;
  font-style: italic;
}
#testimonials-18 .timeline-client {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
#testimonials-18 .timeline-client img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
  border: 2px solid #ffffff;
}
#testimonials-18 .timeline-client-info .name {
  font-weight: 600;
  color: #343a40;
  display: block;
  font-size: 0.95rem;
}
#testimonials-18 .timeline-client-info .position {
  font-size: 0.85rem;
  color: #6c757d;
  display: block;
}
@media screen and (max-width: 767px) {
  #testimonials-18 .testimonial-timeline-container::before {
    left: 31px;
    margin-left: 0;
  }
  #testimonials-18 .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 15px;
    margin-bottom: 40px;
  }
  #testimonials-18 .timeline-item.timeline-left,
  #testimonials-18 .timeline-item.timeline-right {
    left: 0%;
  }
  #testimonials-18 .timeline-item::after {
    left: 22px;
  }
  #testimonials-18 .timeline-item.timeline-right::after {
    left: 22px;
  }
  #testimonials-18 .timeline-item.timeline-left .timeline-content::before,
  #testimonials-18 .timeline-item.timeline-right .timeline-content::before {
    left: -10px;
    right: auto;
    border-width: 10px 10px 10px 0;
    border-color: transparent #ffffff transparent transparent;
  }
  #testimonials-18 .section-header h2 {
    font-size: 2rem;
  }
}



#call-to-action-4 {
  position: relative;

  background-size: cover;
  background-position: center;
  padding: 80px 15px;
  text-align: center;
  color: #fff;
}
#call-to-action-4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
#call-to-action-4 .content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
#call-to-action-4 h2 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}
#call-to-action-4 p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}
#call-to-action-4 .btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 25px;
  font-size: 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
}
#call-to-action-4 .btn-primary {
  background-color: #ff5722;
  color: #fff;
  border: none;
}
#call-to-action-4 .btn-primary:hover {
  background-color: #e64a19;
}
#call-to-action-4 .btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}
#call-to-action-4 .btn-secondary:hover {
  background-color: #fff;
  color: #ff5722;
}


