.games-list,
.game-zones {
  padding: 80px 0;
  position: relative;
}

.games-list {
  background-color: #f8f9fa;
}

.game-zones {
  background-color: #ffffff;
}

.games-list .title,
.game-zones .title {
  margin-bottom: 50px;
  color: #0d1615;
  font-size: 42px;
  font-weight: 700;
  text-align: center;
}

.game-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
  transition: box-shadow 0.3s, transform 0.3s;
  box-shadow: 0 8px 32px rgba(13, 22, 21, 0.10), 0 1.5px 4px rgba(156, 238, 105, 0.08);
  border: 1px solid #e8e8e8;
  height: 100%;
  position: relative;
}

.game-card.cursor {
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 40px rgba(13, 22, 21, 0.18), 0 2px 8px rgba(156, 238, 105, 0.12);
  border-color: #9cee69;
}

.game-image {
  position: relative;
  overflow: hidden;
  padding-top: 60%;
  background: #f8f9fa;
}

.game-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.game-card:hover .game-image img {
  transform: scale(1.07);
}

.game-content {
  padding: 28px 24px 22px 24px;
}

.game-content h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0d1615;
  letter-spacing: 0.5px;
}

.game-content p {
  color: #606060;
  margin-bottom: 18px;
  line-height: 1.6;
  font-size: 16px;
}

.game-features {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #e8e8e8;
  padding-top: 16px;
}

.game-features li {
  color: #606060;
  margin-bottom: 8px;
  position: relative;
  padding-left: 22px;
  font-size: 15px;
}

.game-features li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  background: #9cee69;
  border-radius: 50%;
}

/* Zone Cards */
.zone-card {
  background: #f8f9fa;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.zone-card.cursor {
  cursor: pointer;
}

.zone-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.zone-image {
  position: relative;
  overflow: hidden;
  padding-top: 66.67%; /* 3:2 Aspect Ratio */
}

.zone-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.zone-card:hover .zone-image img {
  transform: scale(1.1);
}

.zone-content {
  padding: 30px;
}

.zone-content h4 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #0d1615;
}

.zone-content p {
  color: #606060;
  margin-bottom: 25px;
  line-height: 1.6;
  font-size: 18px;
}

.zone-features {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 25px;
}

.zone-features li {
  color: #606060;
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
  font-size: 16px;
}

.zone-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #9cee69;
  font-weight: bold;
}

/* Banner */
.banner {
  background-color: #0d1615;
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
}

.banner .title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.banner .description {
  font-size: 20px;
  opacity: 0.8;
}

/* Game Zones Slider */
.game-zones-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.game-zones-slider .swiper-container {
  height: 100%;
}

.game-zones-slider .swiper-slide {
  position: relative;
  height: 100%;
}

.game-zones-slider .slide-inner {
  position: relative;
  height: 100%;
}

.game-zones-slider .slide-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-zones-slider .slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background: rgba(13, 22, 21, 0.6);
  color: #ffffff;
  text-align: center;
}

.game-zones-slider .slide-content .title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

.game-zones-slider .slide-content .description {
  font-size: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease 0.2s;
}

.game-zones-slider .swiper-slide-active .slide-content .title,
.game-zones-slider .swiper-slide-active .slide-content .description {
  opacity: 1;
  transform: translateY(0);
}

.game-zones-slider .swiper-button-next,
.game-zones-slider .swiper-button-prev {
  color: #ffffff;
  background: rgba(13, 22, 21, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin: 0 20px;
}

.game-zones-slider .swiper-button-next:hover,
.game-zones-slider .swiper-button-prev:hover {
  background: rgba(13, 22, 21, 0.8);
  color: #9cee69;
}

.game-zones-slider .swiper-button-next:after,
.game-zones-slider .swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
}

.game-zones-slider .swiper-button-next {
  right: 0;
}

.game-zones-slider .swiper-button-prev {
  left: 0;
}

.game-zones-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ffffff;
  opacity: 0.5;
}

.game-zones-slider .swiper-pagination-bullet-active {
  opacity: 1;
  background: #9cee69;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .games-list .title,
  .game-zones .title {
    font-size: 36px;
  }
  
  .zone-content h4 {
    font-size: 24px;
  }
  
  .banner .title {
    font-size: 36px;
  }
  
  .banner .description {
    font-size: 18px;
  }
  
  .game-zones-slider {
    height: 500px;
  }
  
  .game-zones-slider .slide-content .title {
    font-size: 36px;
  }
  
  .game-zones-slider .slide-content .description {
    font-size: 18px;
  }
  
  .game-content h4 {
    font-size: 20px;
  }
  
  .game-content {
    padding: 20px 14px 16px 14px;
  }
}

@media (max-width: 767px) {
  .games-list,
  .game-zones {
    padding: 60px 0;
  }
  
  .games-list .title,
  .game-zones .title {
    font-size: 30px;
    margin-bottom: 30px;
  }
  
  .game-content,
  .zone-content {
    padding: 20px;
  }
  
  .game-content h4,
  .zone-content h4 {
    font-size: 20px;
  }
  
  .zone-content p {
    font-size: 16px;
  }
  
  .banner {
    padding: 60px 0;
  }
  
  .banner .title {
    font-size: 30px;
  }
  
  .banner .description {
    font-size: 16px;
  }
  
  .game-zones-slider {
    height: 400px;
  }
  
  .game-zones-slider .slide-content .title {
    font-size: 30px;
  }
  
  .game-zones-slider .slide-content .description {
    font-size: 16px;
  }
  
  .game-zones-slider .swiper-button-next,
  .game-zones-slider .swiper-button-prev {
    width: 40px;
    height: 40px;
    margin: 0 10px;
  }
  
  .game-zones-slider .swiper-button-next:after,
  .game-zones-slider .swiper-button-prev:after {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .game-card,
  .zone-card {
    margin-bottom: 20px;
  }
  
  .banner .title {
    font-size: 24px;
  }
  
  .banner .description {
    font-size: 14px;
  }
  
  .game-zones-slider {
    height: 300px;
  }
  
  .game-zones-slider .slide-content .title {
    font-size: 24px;
  }
  
  .game-zones-slider .slide-content .description {
    font-size: 14px;
  }
}

@media (min-width: 992px) {
 
  .zone-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 12px 40px rgba(13, 22, 21, 0.14), 0 2px 8px rgba(156, 238, 105, 0.10);
    border-radius: 22px;
    border: 1.5px solid #e0e8e0;
    transition: box-shadow 0.3s, transform 0.3s;
    background: #f8f9fa;
    margin-bottom: 40px;
  }
  .zone-card:hover {
    transform: translateY(-12px) scale(1.035);
    box-shadow: 0 24px 60px rgba(13, 22, 21, 0.18), 0 4px 16px rgba(156, 238, 105, 0.16);
    border-color: #9cee69;
  }
  .zone-image {
    min-height: 260px;
    max-height: 320px;
    padding-top: 0;
    height: 320px;
    border-bottom: 1px solid #e0e8e0;
    background: #eafbe2;
  }
  .zone-image img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.3s;
  }
  .zone-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 36px 32px 28px 32px;
  }
  .zone-content h4 {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .zone-content p {
    font-size: 18px;
    margin-bottom: 18px;
  }
  .zone-features {
    margin-top: auto;
    padding-top: 18px;
  }
}

.gallery-section {
    padding: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
} 