
#hero-7 {
  padding: 100px 20px;
  background-color: #f1f3f5;
  text-align: center;
}
#hero-7 .hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}
#hero-7 .hero-subtitle {
  font-size: 20px;
  color: #666;
  margin-bottom: 40px;
}
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.testimonial-item {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.testimonial-item blockquote {
  font-size: 20px;
  font-style: italic;
  color: #555;
  margin-bottom: 15px;
}
.testimonial-author {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}



/* === Section Base === */
.post-section {
  padding: 60px 0;
  background: #fff;
}
.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 & Cards === */
.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); }
}
.post-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s;
}
.post-card:hover {
  transform: translateY(-5px);
}
.post-card img {
  width: 100%;
  display: block;
  height: auto;
}

/* === Overlay Icon === */
.post-card .overlay-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: rgba(255,255,255,0.9);
  opacity: 0;
  transition: opacity 0.3s;
}
.post-card:hover .overlay-icon {
  opacity: 1;
}

/* === Modal Content === */
.modal-content {
  border-radius: 0.5rem;
}
.modal-body img {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}
.modal-body h5 {
  margin-bottom: 0.75rem;
}
.modal-body p {
  color: #555;
}

/* === Pagination === */
.pagination-wrapper {
  text-align: center;
  margin: 40px 0;
}




#about-us-30 {
  padding: 80px 0;
  background-color: #222;
  color: #fff;
  text-align: center;
  position: relative;
}
#about-us-30 .section-title,
#about-us-30 .section-subtitle {
  margin-bottom: 60px;
}
#about-us-30 .circular-layout {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
}
#about-us-30 .central-element {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #ffc107;
  color: #222;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
#about-us-30 .central-element img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}
#about-us-30 .central-element h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}
#about-us-30 .point-of-interest {
  position: absolute;
  width: 120px;
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.7);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
#about-us-30 .point-of-interest i {
  font-size: 1.5rem;
  color: #00bfff;
  margin-bottom: 10px;
}
#about-us-30 .point-of-interest h5 {
  font-size: 1rem;
  margin-bottom: 5px;
}
#about-us-30 .point-of-interest p {
  font-size: 0.8rem;
  color: #ccc;
}
#about-us-30 .point-of-interest.top-left {
  top: 10px;
  left: 10px;
}
#about-us-30 .point-of-interest.top-right {
  top: 10px;
  right: 10px;
}
#about-us-30 .point-of-interest.bottom-left {
  bottom: 10px;
  left: 10px;
}
#about-us-30 .point-of-interest.bottom-right {
  bottom: 10px;
  right: 10px;
}
#about-us-30 .point-of-interest.center-left {
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
#about-us-30 .point-of-interest.center-right {
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  #about-us-30 .circular-layout {
    width: 300px;
    height: 300px;
  }
  #about-us-30 .point-of-interest {
    width: 100px;
    font-size: 0.9rem;
  }
  #about-us-30 .point-of-interest i {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
  #about-us-30 .central-element {
    width: 100px;
    height: 100px;
  }
  #about-us-30 .central-element img {
    width: 50px;
    height: 50px;
  }
}



#why-choose-us-22 {
  padding-top: 70px;
  padding-bottom: 40px;
  background-color: #f8f9fa;
}
#why-choose-us-22 .section-title-container {
  margin-bottom: 50px;
}
#why-choose-us-22 .section-main-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #343a40;
}
#why-choose-us-22 .section-main-subtitle {
  font-size: 1.1rem;
  color: #555e68;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
#why-choose-us-22 .advantage-row {
  margin-bottom: 50px;
  align-items: center;
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}
#why-choose-us-22 .advantage-row:last-child {
  margin-bottom: 0;
}
#why-choose-us-22 .advantage-image-wrapper {
  text-align: center;
}
#why-choose-us-22 .advantage-image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
#why-choose-us-22 .advantage-content {
  padding-left: 30px;
  padding-right: 15px;
}
#why-choose-us-22 .advantage-row.image-on-right .advantage-content {
  padding-left: 15px;
  padding-right: 30px;
}
#why-choose-us-22 .advantage-icon {
  font-size: 2.2rem;
  color: #0d6efd;
  margin-bottom: 15px;
  display: inline-block;
}
#why-choose-us-22 .advantage-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.3;
}
#why-choose-us-22 .advantage-description {
  font-size: 1rem;
  color: #495057;
  line-height: 1.8;
}
@media (max-width: 991.98px) {
  #why-choose-us-22 .advantage-image-wrapper {
    margin-bottom: 25px;
    order: 1;
  }
  #why-choose-us-22 .advantage-content {
    padding-left: 15px;
    padding-right: 15px;
    order: 2;
    text-align: center;
  }
  #why-choose-us-22 .advantage-row.image-on-right .advantage-content,
  #why-choose-us-22 .advantage-row.image-on-right .advantage-image-wrapper {
    order: initial;
  }
  #why-choose-us-22 .advantage-row.image-on-right .advantage-image-wrapper {
    order: 1;
  }
  #why-choose-us-22 .advantage-row.image-on-right .advantage-content {
    order: 2;
  }
  #why-choose-us-22 .advantage-title {
    font-size: 1.6rem;
  }
}



#counter-1 {
  text-align: center;
  background: #f9f9f9;
  padding: 80px 0;
}
#counter-1 .counter-content {
  max-width: 800px;
  margin: 0 auto;
}
#counter-1 h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #222;
}
#counter-1 p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}
#counter-1 .counter-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
}
#counter-1 .counter-item {
  text-align: center;
  width: 200px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}
#counter-1 .counter-item:hover {
  transform: translateY(-5px);
}
#counter-1 .counter-item i {
  font-size: 3rem;
  color: #007bff;
  margin-bottom: 10px;
}
#counter-1 .counter-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  display: block;
  margin-bottom: 10px;
}
#counter-1 .counter-title {
  font-size: 1.2rem;
  color: #666;
}



#features-10 {
  padding: 60px 0;
  background-color: #f8f9fa;
  text-align: center;
}
#features-10 .section-title {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}
#features-10 .section-subtitle {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 40px;
}
#features-10 .feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
#features-10 .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
#features-10 .feature-icon {
  font-size: 50px;
  color: #17a2b8;
  margin-bottom: 15px;
}
#features-10 .feature-counter {
  font-size: 40px;
  font-weight: bold;
  color: #17a2b8;
  margin-bottom: 10px;
}
#features-10 .feature-title {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}
#features-10 .feature-description {
  font-size: 16px;
  color: #666;
}



#cta-banner-19 {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 350px;
  margin-top: 2rem;
  margin-bottom: 2rem;
  border-radius: 0.5rem;
}
#cta-banner-19 .split-part {
  flex: 1 1 50%;
  position: relative;
  background-size: cover;
  background-position: center center;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#cta-banner-19 .cta-content {
  max-width: 450px;
}
#cta-banner-19 .cta-content.align-left {
  margin-right: auto;
  text-align: left;
}
#cta-banner-19 .cta-content.align-right {
  margin-left: auto;
  text-align: right;
}
#cta-banner-19 .cta-content.align-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
#cta-banner-19 .cta-title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
#cta-banner-19 .cta-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
#cta-banner-19 .cta-button .btn {
  padding: 0.7rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  #cta-banner-19 {
    flex-direction: column;
    min-height: unset;
  }
  #cta-banner-19 .split-part {
    padding: 3rem 1.5rem;
    text-align: center !important;
  }
  #cta-banner-19 .cta-content {
    max-width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
  #cta-banner-19 .cta-title {
    font-size: 1.8rem;
  }
  #cta-banner-19 .cta-text {
    font-size: 0.95rem;
  }
}



#testimonials-8 {
  padding: 60px 15px;
  max-width: 1000px;
  margin: 0 auto;
  perspective: 1000px;
}
#testimonials-8 .flip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
#testimonials-8 .flip-card {
  position: relative;
  width: 300px;
  height: 350px;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}
#testimonials-8 .flip-card:hover {
  transform: rotateY(180deg);
}
#testimonials-8 .flip-side {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
#testimonials-8 .flip-front {
  background: #fff;
  text-align: center;
  padding: 20px;
}
#testimonials-8 .flip-front img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}
#testimonials-8 .flip-front h5 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
#testimonials-8 .flip-front p {
  font-size: 1rem;
  font-style: italic;
  color: #333;
}
#testimonials-8 .flip-back {
  background: #f8f9fa;
  color: #333;
  transform: rotateY(180deg);
  padding: 20px;
  text-align: center;
  font-size: 0.95rem;
}



#call-to-action-24 {
  position: relative;
  padding: 0;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  color: #ffffff;
}
.cta-portrait-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#call-to-action-24 .container {
  position: relative;
  z-index: 2;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.cta-portrait-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cta-portrait-content-col h2 {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.3;
}
.cta-portrait-content-col p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
}
.cta-portrait-content-col .btn {
  padding: 0.8rem 2rem;
  font-weight: 600;
  width: fit-content;
}
.cta-portrait-image-col {
  position: relative;
  text-align: center;
}
.cta-portrait-img {
  max-width: 100%;
  height: auto;
  max-height: 550px;
  position: relative;
  bottom: -5rem;
  margin-bottom: -5rem;
}
@media (max-width: 991.98px) {
  .cta-portrait-content-col {
    text-align: center;
    margin-bottom: 0;
  }
  .cta-portrait-content-col p {
    margin-left: auto;
    margin-right: auto;
  }
  .cta-portrait-content-col .btn {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
  }
  .cta-portrait-img {
    max-height: 450px;
    bottom: -4rem;
    margin-bottom: -4rem;
  }
  #call-to-action-24 .container {
    padding-bottom: 0;
  }
}
@media (max-width: 767.98px) {
  .cta-portrait-content-col h2 {
    font-size: 2rem;
  }
  .cta-portrait-img {
    max-height: 350px;
    bottom: -3rem;
    margin-bottom: -3rem;
  }
}



#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;
  }
}


