/* Alan genel ayarları */
.countries-section {
  width: 100vw; /* viewport genişliğini kapla */
  padding: 40px 0;
  background: linear-gradient(135deg, #fff1b8, #d4af37);
  color: #fff;
  overflow: hidden;
  position: relative;
  margin-left: calc(-50vw + 50%); /* container padding etkisini sıfırlar */
}

.countries-track {
  display: flex;
  gap: 20px;
  animation: scroll 20s linear infinite;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.countries-section.visible .countries-track {
  opacity: 1;
  transform: translateY(0);
}

/* Container */
.countries-container {
  max-width: 1200px;
  margin: 0 auto 30px auto;
  text-align: center;
}

.countries-container h2 {
  font-size: 22px;
  color: #535353;
  margin-bottom: 10px;
  font-weight: 600;
}

.countries-container p {
  font-size: 16px;
  color: #535353;
}

/* Marquee */
.countries-marquee {
  overflow: hidden;
  width: 100%;
}

/* Ülkeler */
.country-item {
  flex: 0 0 auto;
  min-width: 150px;
  height: 120px;
  background: linear-gradient(135deg, #e6c15a, #b8860b);
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}

.country-item:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Responsive */
@media(max-width: 992px) {
  .country-item { min-width: 130px; height: 100px; font-size: 16px; }
  .countries-container h2 { font-size: 28px; }
  .countries-container p { font-size: 16px; }
}

@media(max-width: 768px) {
  .country-item { min-width: 100px; height: 90px; font-size: 14px; }
  .countries-container h2 { font-size: 24px; }
  .countries-container p { font-size: 14px; }
}

@media(max-width: 480px) {
  .country-item { min-width: 80px; height: 70px; font-size: 12px; }
  .countries-container h2 { font-size: 20px; }
  .countries-container p { font-size: 12px; }
}
