
#hero-6 {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}
#hero-6 .hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}
#hero-6 .hero-subtitle {
  font-size: 20px;
  color: #666;
  margin-bottom: 40px;
}
.card-item {
  background: #f8f9fa;
  padding: 30px;
  margin: 15px;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.card-icon {
  font-size: 48px;
  color: #2575fc;
  margin-bottom: 15px;
}
.card-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
.card-description {
  font-size: 16px;
  color: #555;
}



/* === Section Base === */
.post-section {
  padding: 60px 0;
  background: #f9f9f9;
}
.post-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}
.post-section .section-header h2 {
  font-size: 2rem;
  font-weight: 700;
}
.post-section .section-header p {
  color: #666;
  margin-top: 8px;
}

/* === Grid === */
.post-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(1,1fr);
}
@media (min-width: 576px) {
  .post-grid { grid-template-columns: repeat(2,1fr); }
}
@media (min-width: 992px) {
  .post-grid { grid-template-columns: repeat(4,1fr); }
}

/* === Card & Ken Burns Image === */
.post-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background: #fff;
  transition: transform 0.3s;
}
.post-card:hover {
  transform: translateY(-5px);
}

/* Ken Burns animation */
@keyframes kenburns {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.2) translate(-10px, -10px); }
}
.post-card .card-image img {
  width: 100%;
  display: block;
  animation: kenburns var(--kb-duration) ease-in-out infinite alternate;
}

/* Overlay on hover */
.post-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.post-card:hover .overlay {
  transform: translateY(0);
}
.post-card .overlay h5 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.post-card .overlay .btn-readmore {
  font-size: 0.85rem;
  color: #fff;
  border: 1px solid #fff;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: background 0.3s;
}
.post-card .overlay .btn-readmore:hover {
  background: #fff;
  color: #000;
}

/* === Pagination === */
.pagination-wrapper {
  text-align: center;
  margin: 40px 0;
}




#about-us-27 {
  padding: 80px 0;
  background-color: #1a1a1a;
  color: #fff;
}
#about-us-27 .section-title,
#about-us-27 .section-subtitle {
  text-align: center;
  margin-bottom: 50px;
}
#about-us-27 .game-showcase {
  margin-bottom: 60px;
}
#about-us-27 .game-showcase h3 {
  font-size: 2rem;
  color: #ffc107;
  text-align: center;
  margin-bottom: 30px;
}
#about-us-27 .game-showcase .game-item {
  background-color: #222;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
#about-us-27 .game-showcase .game-item img {
  width: 100%;
  height: auto;
  display: block;
}
#about-us-27 .game-showcase .game-item .details {
  padding: 20px;
  text-align: center;
}
#about-us-27 .game-showcase .game-item .details h4 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 10px;
}
#about-us-27 .game-showcase .game-item .details p {
  font-size: 0.9rem;
  color: #ccc;
}
#about-us-27 .experience-highlights {
  margin-bottom: 60px;
}
#about-us-27 .experience-highlights h3 {
  font-size: 2rem;
  color: #00bfff;
  text-align: center;
  margin-bottom: 30px;
}
#about-us-27 .experience-highlights .highlight-item {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 30px;
}
#about-us-27 .experience-highlights .highlight-item i {
  font-size: 2.5rem;
  color: #00bfff;
  margin-bottom: 15px;
}
#about-us-27 .experience-highlights .highlight-item h4 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 10px;
}
#about-us-27 .experience-highlights .highlight-item p {
  font-size: 0.9rem;
  color: #ccc;
}
#about-us-27 .responsible-gaming {
  background-color: #333;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
}
#about-us-27 .responsible-gaming h3 {
  font-size: 2rem;
  color: #dc3545;
  margin-bottom: 20px;
}
#about-us-27 .responsible-gaming p {
  font-size: 1rem;
  color: #f8f9fa;
  line-height: 1.7;
}
@media (min-width: 768px) {
  #about-us-27 .game-showcase .row > div {
    margin-bottom: 0;
  }
  #about-us-27 .experience-highlights .row > div {
    margin-bottom: 0;
  }
}



#why-choose-us-11 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f8f9fa;
  overflow: hidden;
}
#why-choose-us-11 .section-header {
  margin-bottom: 3rem;
}
#why-choose-us-11 .section-header h2 {
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #343a40;
}
#why-choose-us-11 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
}
#why-choose-us-11 .feature-item-wrapper {
  height: 100%;
}
#why-choose-us-11 .feature-item {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 0.375rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
#why-choose-us-11 .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
#why-choose-us-11 .feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--bs-primary, #0d6efd);
  display: inline-block;
}
#why-choose-us-11 .feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #495057;
}
#why-choose-us-11 .feature-description {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.6;
}
@media (max-width: 767.98px) {
  #why-choose-us-11 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  #why-choose-us-11 .section-header {
    margin-bottom: 2rem;
  }
  #why-choose-us-11 .feature-item {
    padding: 1.5rem;
  }
}



#counter-12 {
  padding: 80px 0;
  background-color: var(--section-bg-color, #ffffff);
}
#counter-12 .container {
  max-width: 1140px;
}
#counter-12 .section-header {
  margin-bottom: 60px;
  text-align: center;
}
#counter-12 .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 15px;
}
#counter-12 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}
#counter-12 .counter-item-circular {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#counter-12 .counter-circle-svg {
  display: block;
  margin: 0 auto;
  position: relative;
}
#counter-12 .circle-bg {
  fill: none;
  stroke: var(--circle-base-color, #e9ecef);
  stroke-width: var(--stroke-width, 10px);
}
#counter-12 .circle-progress {
  fill: none;
  stroke: var(--circle-progress-color, #0d6efd);
  stroke-width: var(--stroke-width, 10px);
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  transition: stroke-dashoffset 1.5s ease-out;
}
#counter-12 .counter-number-svg {
  font-size: 1.8rem;
  font-weight: 700;
  fill: #343a40;
  dominant-baseline: middle;
  text-anchor: middle;
}
#counter-12 .counter-suffix-svg {
  font-size: 0.9rem;
  font-weight: 500;
  fill: #555;
}
#counter-12 .counter-title-circular {
  margin-top: 15px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #495057;
}
@media (max-width: 991.98px) {
  #counter-12 .counter-circle-svg {
  }
  #counter-12 .counter-number-svg {
  }
}
@media (max-width: 767.98px) {
  #counter-12 {
    padding: 50px 0;
  }
  #counter-12 .section-header h2 {
    font-size: 2rem;
  }
  #counter-12 .counter-item-circular {
    margin-bottom: 50px;
  }
  #counter-12 .counter-item-circular:last-child {
    margin-bottom: 0;
  }
}



#features-17 {
  padding: 60px 0;
  overflow: hidden;
  background-color: {{ $data['features-17']['bg_color'] ?? '#ffffff' }};
}
#features-17 .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #343a40;
}
#features-17 .section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--bs-primary, #0d6efd);
  bottom: 0;
  left: calc(50% - 25px);
}
#features-17 .section-title p {
  margin-bottom: 40px; 
  color: #6c757d;
}
#features-17 .feature-item {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  height: 100%; 
  display: flex;
  flex-direction: column; 
  text-align: center;
  border: 1px solid #eef0f2; 
}
#features-17 .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}
#features-17 .feature-icon {
  margin-bottom: 20px; 
  flex-shrink: 0; 
}
#features-17 .feature-icon i {
  font-size: 48px;
  line-height: 1;
  color: var(--bs-primary, #0d6efd);
  transition: color 0.3s ease-in-out;
}
#features-17 .feature-item:hover .feature-icon i {
  color: var(--bs-primary-darker, #0a58ca); 
}
#features-17 .feature-title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  color: #343a40;
  flex-grow: 0; 
}
#features-17 .feature-description {
  line-height: 1.6;
  color: #6c757d;
  font-size: 15px;
  flex-grow: 1; 
}
@media (max-width: 767.98px) {
  #features-17 .section-title h2 {
    font-size: 28px;
  }
   #features-17 .feature-item {
     padding: 20px;
   }
   #features-17 .feature-icon i {
     font-size: 40px;
   }
   #features-17 .feature-title {
      font-size: 17px;
   }
}



#cta-banner-11 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow: hidden;
  background-color: #ffffff;
}
#cta-banner-11 .container {
}
#cta-banner-11 .cta-wrapper {
  display: flex;
  align-items: center;
}
#cta-banner-11 .text-content-column {
  padding-right: 2rem;
}
#cta-banner-11 .cta-title {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
#cta-banner-11 .cta-subtitle {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--bs-primary);
  margin-bottom: 1rem;
}
#cta-banner-11 .cta-text {
  font-size: 1rem;
  color: #495057;
  line-height: 1.7;
  margin-bottom: 2rem;
}
#cta-banner-11 .cta-button .btn {
  padding: 0.75rem 1.8rem;
  font-weight: 500;
}
#cta-banner-11 .cta-button .btn i {
  margin-left: 0.5rem;
}
#cta-banner-11 .illustration-column img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 991.98px) {
  #cta-banner-11 .text-content-column {
    padding-right: 1rem;
  }
  #cta-banner-11 .cta-title {
    font-size: 2rem;
  }
}
@media (max-width: 767.98px) {
  #cta-banner-11 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  #cta-banner-11 .cta-wrapper {
    flex-direction: column;
  }
  #cta-banner-11 .text-content-column {
    padding-right: 0;
    margin-bottom: 2rem;
    text-align: center;
  }
  #cta-banner-11 .illustration-column {
    text-align: center;
  }
  #cta-banner-11 .illustration-column img {
    max-width: 80%;
  }
}



#testimonials-15 {
  padding: 80px 0;
  background-color: #ffffff;
}
#testimonials-15 .container {
  max-width: 1140px;
}
#testimonials-15 .section-header {
  margin-bottom: 50px;
  text-align: center;
}
#testimonials-15 .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 15px;
}
#testimonials-15 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
#testimonials-15 .testimonial-bubble-wall {
  column-gap: var(--column-gap, 1.5rem);
  column-count: var(--column-count-sm, 1);
}
#testimonials-15 .testimonial-bubble {
  display: inline-block;
  width: 100%;
  background-color: var(--bubble-bg-color, #f8f9fa);
  padding: 20px 25px;
  border-radius: 15px;
  margin-bottom: var(--column-gap, 1.5rem);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  page-break-inside: avoid;
  break-inside: avoid;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#testimonials-15 .testimonial-bubble:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
#testimonials-15 .bubble-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
#testimonials-15 .bubble-image img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
}
#testimonials-15 .bubble-client-name {
  font-weight: 600;
  color: #343a40;
  font-size: 0.95rem;
}
#testimonials-15 .bubble-message {
  font-size: 1rem;
  color: #495057;
  line-height: 1.6;
}
@media (min-width: 768px) {
  #testimonials-15 .testimonial-bubble-wall {
    column-count: var(--column-count-md, 2);
  }
}
@media (min-width: 992px) {
  #testimonials-15 .testimonial-bubble-wall {
    column-count: var(--column-count-lg, 3);
  }
}
@media (max-width: 767.98px) {
  #testimonials-15 {
    padding: 50px 0;
  }
  #testimonials-15 .section-header h2 {
    font-size: 2rem;
  }
  #testimonials-15 .testimonial-bubble {
    padding: 15px 20px;
  }
  #testimonials-15 .bubble-message {
    font-size: 0.95rem;
  }
}



#call-to-action-16 {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  color: #ffffff;
}
#call-to-action-16.has-bg-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.7);
  z-index: 1;
}
#call-to-action-16 .container {
  position: relative;
  z-index: 2;
}
#call-to-action-16:not(.has-bg-image) {
}
#call-to-action-16:not(.has-bg-image) .cta-subtext {
}
#call-to-action-16 .cta-headline {
  font-weight: 700;
  font-size: 2.25rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}
#call-to-action-16 .cta-subtext {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0.9;
}
#call-to-action-16 .cta-buttons .btn {
  margin: 0.5rem;
  padding: 0.8rem 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border-width: 2px;
}
#call-to-action-16 .cta-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
#call-to-action-16 .cta-buttons .btn i {
  margin-right: 8px;
}
@media (max-width: 991.98px) {
  #call-to-action-16 .cta-content,
  #call-to-action-16 .cta-buttons {
    text-align: center;
  }
  #call-to-action-16 .cta-headline {
    font-size: 1.8rem;
  }
  #call-to-action-16 .cta-subtext {
    font-size: 1rem;
  }
  #call-to-action-16 .cta-buttons {
    margin-top: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  #call-to-action-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #call-to-action-16 .cta-buttons .btn {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}



#offers-11 {
  padding: 80px 0;
  background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}
#offers-11 .offer-content-wrapper {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
#offers-11 .offer-section-title {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 2.2rem;
  color: #c82333;
  text-transform: uppercase;
}
#offers-11 .offer-description {
  color: #495057;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
#offers-11 .scratch-card-visual {
  margin-bottom: 2rem;
}
#offers-11 .scratch-card-image {
  max-width: 350px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
#offers-11 .scratch-card-image:hover {
  transform: scale(1.05);
}
#offers-11 .prizes-section {
  margin-bottom: 2.5rem;
}
#offers-11 .prizes-title {
  font-weight: 600;
  font-size: 1.1rem;
  color: #343a40;
  margin-bottom: 1rem;
}
#offers-11 .prize-list {
  list-style: none;
  padding-left: 0;
  display: inline-block;
  text-align: left;
}
#offers-11 .prize-list li {
  margin-bottom: 0.5rem;
  color: #555;
  font-size: 0.95rem;
}
#offers-11 .prize-list li i {
  color: #198754;
  margin-right: 8px;
  width: 18px;
  text-align: center;
}
#offers-11 .btn-scratch-cta {
  padding: 0.8rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50rem;
  background-color: #c82333;
  border: none;
  color: #fff;
}
#offers-11 .btn-scratch-cta:hover {
  background-color: #a51e2a;
}


