/* Genel Sıfırlama */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body ve Yazı Tipi */
body {
  font-family: 'Arial', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Navbar Özelleştirmeleri */
.navbar {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
}

/* Ana Başlıklar */
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* Paragraflar */
p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Footer */
footer {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

/* Buy Me a Coffee Butonu için Özel Ayarlar (Gerekirse) */
a img {
  transition: transform 0.3s ease;
}

a img:hover {
  transform: scale(1.05);
}

.video-thumb-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background-color: #000;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.video-thumb-wrapper video,
.video-thumb-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}




/* Responsive Tasarım */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}
