body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fa;
}
.hero {
  color: white;
  text-shadow: 0 0 8px rgba(0,0,0,0.4);
}
.card img {
  height: 180px;
  object-fit: cover;
}
.lang a {
  color: white;
  text-decoration: none;
  margin: 0 4px;
}
.hero .btn {
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 24px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

/* === Ürün kartları === */
.card {
  border: none;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
.card img {
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.card-body {
  padding: 1.2rem;
}

/* === Snap section (uygulamalar / dökümanlar / tablo) === */
.snap-section {
  padding: 60px 15px;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-desc {
  color: #555;
  margin-bottom: 20px;
}

/* === Kartlar (uygulama kartları) === */
.card-dark {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  padding: 12px 15px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  font-size: 0.95rem;
}
.card-dark:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
}
.card-dark b {
  color: #000;
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
}
.card-dark .section-desc {
  font-size: 0.85rem;
  color: #555;
}

/* === Döküman listesi === */
#docs {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
#docs .doc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed #ccc;
  padding: 8px 0;
}
#docs .doc:last-child { border-bottom: none; }
#docs .ext {
  font-weight: 700;
  color: #000;
  width: 45px;
  text-align: center;
}
#docs .name {
  color: #333;
  font-size: 0.95rem;
}
#docs .btn-ghost {
  background: transparent;
  color: #000;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 2px 10px;
  transition: 0.2s;
}
#docs .btn-ghost:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}
#docs .help {
  font-size: 0.85rem;
  color: #666;
  margin-top: 10px;
}

/* === Tablo === */
.table-dark {
  background: #202020;
  color: #f1f1f1;
  border-radius: 8px;
  overflow: hidden;
}
.table-dark thead {
  background: #111;
}
.table-dark th, .table-dark td {
  padding: 10px 14px;
}
.table-dark th {
  font-weight: 600;
  color: #fff;
}
.table-dark tr:hover {
  background: #333;
}
.help {
  color: #777;
  font-size: 0.85rem;
}

/* === Dil bağlantıları === */
.lang a {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
  transition: opacity 0.2s ease;
}
.lang a:hover {
  opacity: 0.7;
}

/* === Responsive düzen === */
@media (max-width: 992px) {
  .card-dark {
    font-size: 0.9rem;
  }
  #docs {
    margin-top: 30px;
  }
  .section-title {
    text-align: center;
  }
}
