.swiper-tourn {
  overflow: hidden;
  position: relative;
}
.swiper-wrapper {
  display: flex;
  transition: transform 0.35s ease;
}
.swiper-wrapper .tournament-card {
  min-width: calc(100vw - 48px);
  flex-shrink: 0;
}
.swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}
.swiper-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2a3347;
  cursor: pointer;
  transition: all 0.2s;
}
.swiper-dot.active {
  background: #1ae5a1;
  width: 22px;
  border-radius: 4px;
}
.swiper-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
.swiper-nav button {
  background: #1a2235;
  border: 1px solid #2a3347;
  color: #8b92a8;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-nav button:hover {
  background: rgba(26, 229, 161, 0.1);
  border-color: #1ae5a1;
  color: #1ae5a1;
}
