html {
  scroll-behavior: smooth;
}
/* Genel stil ayarları */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #121212;
  color: #f5f5f5;
  line-height: 1.6;
}

/* Header ve navigasyon */
header {
  background-color: rgba(0, 0, 0, 0.8);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}



nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

nav div a {
  font-size: 1.5rem;
  font-weight: bold;
  color: #4CAF50;
  text-decoration: none;
  transition: color 0.3s;
}

nav div a:hover {
  color: #8BC34A;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 2rem;
}

nav ul li a {
  color: #f5f5f5;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #4CAF50;
}

button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
  align-self: center;
}

button:hover {
  background-color: #3e8e41;
}

/* Arama bölümü */
div form {
  max-width: 800px;
  margin: 2rem auto;
  display: flex;
  padding: 0 1rem;
}

/* Kategori select kutusu için animasyonlar */
div form select {
  flex: 0.5;
  padding: 0.5rem;
  border: 2px solid #333;
  border-radius: 4px;
  background-color: #1e1e1e;
  color: #f5f5f5;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  background-image: linear-gradient(45deg, transparent 50%, #4CAF50 50%),
                    linear-gradient(135deg, #4CAF50 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(1em + 2px),
                       calc(100% - 15px) calc(1em + 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Hover efekti */
div form select:hover {
  border-color: #4CAF50;
  background-color: #252525;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

/* Focus efekti */
div form select:focus {
  outline: none;
  border-color: #4CAF50;
  background-color: #252525;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1),
              0 4px 12px rgba(76, 175, 80, 0.3);
  transform: scale(1.02);
}

/* Tıklama animasyonu */
div form select:active {
  transform: scale(0.98);
}

/* Pulse animasyonu (opsiyonel - sayfa yüklendiğinde dikkat çekmek için) */
@keyframes selectPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(76, 175, 80, 0);
  }
}

/* Sayfa yüklendiğinde bir kez pulse animasyonu (isteğe bağlı) */
div form select.pulse-once {
  animation: selectPulse 1.5s ease-out;
}

/* Input için de benzer animasyonlar */
div form input {
  flex: 1;
  padding: 0.8rem;
  border: 2px solid #333;
  border-radius: 4px;
  background-color: #1e1e1e;
  color: #f5f5f5;
  font-size: 1rem;
  transition: all 0.3s ease;
}

div form input:hover {
  border-color: #4CAF50;
  background-color: #252525;
}

div form input:focus {
  outline: none;
  border-color: #4CAF50;
  background-color: #252525;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1),
              0 4px 12px rgba(76, 175, 80, 0.3);
  transform: translateY(-1px);
}

/* Placeholder animasyonu */
div form input::placeholder {
  color: #666;
  transition: color 0.3s ease;
}

div form input:focus::placeholder {
  color: #888;
}

/* Option hover efekti (bazı tarayıcılarda çalışır) */
div form select option {
  background-color: #1e1e1e;
  color: #f5f5f5;
  padding: 0.5rem;
}

div form select option:hover {
  background-color: #4CAF50;
  color: white;
}


div form button {
  border-radius: 10px;
  padding: 0.8rem 1.5rem;
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}

div form button:hover {
  background-color: #3e8e41;
}

div form {
  max-width: 800px;
  margin: 2rem auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 1rem;
}

div form input, 
div form select {
  flex: 1 1 100%;
}

div form button, 
.temizle {
  flex: 1 1 48%;
}

.temizle{
  border-radius: 10px;
  background-color: #a12815;
}

.temizle:hover {
  background-color: #c5311a;
}




/* Oyunlar bölümü */
#Oyunlar {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
  position: relative; /* Bu, butonları alt kısma yerleştirmek için gereklidir */
}

#Oyunlar h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #4CAF50;
  border-bottom: 2px solid #4CAF50;
  padding-bottom: 0.5rem;
}

#Oyunlar > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #1e1e1e;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s;
  max-width: 315px;
  margin-left: auto;
  margin-right: auto;
}


#Oyunlar > div:hover {
  transform: translateY(-5px);
}

#Oyunlar img {
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
}

#Oyunlar h2 {
  margin: 1rem 0;
  color: #f5f5f5;
  text-align: center;
}

#Oyunlar p {
  color: #aaa;
  padding: 0 1rem;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

#Oyunlar button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  margin: 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
  align-self: center;
}

#Oyunlar button:hover {
  background-color: #3e8e41;
}





/* Butonları sayfanın en alt kısmına yerleştirmek için */
#Oyunlar .footer-buttons {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  background-color: #1e1e1e;
}

#Oyunlar .footer-buttons button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  margin: 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}

#Oyunlar .footer-buttons button:hover {
  background-color: #3e8e41;
}



/* Responsive oyun bölümü için */
@media (min-width: 768px) {
  #Oyunlar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #Oyunlar h1 {
    grid-column: 1 / -1;
  }
}

@media (min-width: 992px) {
  #Oyunlar {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* İletişim bölümü */
#iletisim {
  background-color: #1e1e1e;
  padding: 3rem 1rem;
  margin-top: 3rem;
}

#iletisim h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #4CAF50;
}

#iletisim div {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

#iletisim h2 {
  margin: 1rem 0;
  font-size: 1.3rem;
  color: #f5f5f5;
}

#iletisim a {
  color: #4CAF50;
  text-decoration: none;
  transition: color 0.3s;
}

#iletisim a:hover {
  color: #8BC34A;
  text-decoration: underline;
}

/* Nasıl bölümü için */
#Nasıl {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
}

#Nasıl h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #4CAF50;
  border-bottom: 2px solid #4CAF50;
  padding-bottom: 0.5rem;
}

#Nasıl p {
  color: #f5f5f5;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.8;
  text-align: justify;
}

#Nasıl h2 {
  color: #4CAF50;
  font-size: 1.6rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

#Nasıl ul {
  list-style-type: disc;
  margin-left: 2rem;
  margin-bottom: 2rem;
}

#Nasıl ul li {
  color: #aaa;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

#Nasıl a {
  color: #4CAF50;
  text-decoration: none;
  transition: color 0.3s;
}

#Nasıl a:hover {
  color: #8BC34A;
  text-decoration: underline;
}

#Nasıl .highlight {
  color: #f5f5f5;
  background-color: #4CAF50;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
}


/* Footer */
footer {
  background-color: #0a0a0a;
  text-align: center;
  padding: 1.5rem;
  margin-top: 2rem;
  width: 100%;
}

footer p {
  color: #aaa;
}

footer a {
  color: #4CAF50;
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: #8BC34A;
}

footer code {
  background-color: #1e1e1e;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
}


/* Footer genel */
.site-footer {
  background: linear-gradient(180deg, #0a0a0a, #050505);
  padding: 2.5rem 1.5rem 2rem;
  margin-top: 4rem;
  color: #aaa;
}

/* Link alanı */
.footer-links {
  max-width: 1100px;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

/* Grup */
.footer-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* Linkler */
.site-footer a {
  color: #7fbf7f;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.25s ease;
}

.site-footer a:hover {
  color: #9acd32;
}


/* Alt kısım */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.2rem;
  text-align: center;
  font-size: 0.85rem;
}

/* Kod etiketi */
.site-footer code {
  background: #1b1b1b;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  font-size: 0.8rem;
  color: #9acd32;
}


/* Nasıl bölümü için (HTML'de içerik görünmüyor ama CSS hazırlayalım) */
#Nasıl {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
}

#Nasıl h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #4CAF50;
  border-bottom: 2px solid #4CAF50;
  padding-bottom: 0.5rem;
}

/* Oyun Detay Sayfası Stil Düzenlemeleri */

/* Oyun Hero Bölümü */
.oyun-hero {
  background-color: #1a1a1a;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://img.itch.zone/aW1nLzEyNTYxODY4LnBuZw==/original/KDIJhR.png');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 5rem 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.oyun-hero h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  margin-bottom: 1rem;
  color: #4CAF50;
}

.oyun-etiketleri {
  background-color: rgba(0, 0, 0, 0.5);
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: #ccc;
}

/* Oyun İçerik Bölümü */
.oyun-icerik {
  max-width: 1200px;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 992px) {
  .oyun-icerik {
    grid-template-columns: 45% 55%;
  }
}

/* Oyun Galeri */
.oyun-galeri {
  margin-bottom: 2rem;
}

.ana-gorsel {
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.ana-gorsel img {
  width: 100%;
  max-width: 500px; /* Yeni: Maksimum genişlik sınırı */
  height: auto;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s;
  border-radius: 10px;
}

.ana-gorsel img:hover {
  transform: scale(1.02);
}

/* Mini görseller için güncellenmiş CSS */
.mini-gorseller {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.mini-gorseller img {
  width: 100%;
  max-width: 140px; /* Yeni: Mini görsel için sınır */
  height: auto;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s, opacity 0.3s;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
}

.mini-gorseller img:hover {
  transform: translateY(-5px) scale(1.03); /* Hover efekti güçlendirildi */
  opacity: 0.95;
}

/* Daha büyük ekranlarda görsellerin boyutunu korumak için */
@media (min-width: 768px) {

  .mini-gorseller {
    margin-top: 1.5rem;
  }

}



/* Oyun Bilgileri */
.oyun-bilgi {
  color: #f5f5f5;
}

.oyun-aciklama, .oyun-teknik, .oyun-indir {
  background-color: #1e1e1e;
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.oyun-aciklama h2, .oyun-teknik h2, .oyun-indir h2 {
  color: #4CAF50;
  margin-bottom: 1rem;
  border-bottom: 1px solid #333;
  padding-bottom: 0.5rem;
}

.oyun-aciklama h3 {
  color: #8BC34A;
  margin: 1rem 0 0.5rem;
}

.oyun-aciklama p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.oyun-aciklama ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.oyun-aciklama li {
  margin-bottom: 0.5rem;
}

/* Teknik Detaylar Tablosu */
.oyun-teknik table {
  width: 100%;
  border-collapse: collapse;
}

.oyun-teknik td {
  padding: 0.6rem 0;
  border-bottom: 1px solid #333;
}

.oyun-teknik td:first-child {
  font-weight: bold;
  color: #ccc;
  width: 40%;
}

/* İndirme Bölümü */
.download-btn {
  display: inline-block;
  background-color: #4CAF50;
  color: white;
  font-weight: bold;
  padding: 1rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  margin: 1rem 0;
  transition: all 0.3s;
  text-align: center;
}

.download-btn:hover {
  background-color: #3e8e41;
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.sistem-gereksinimleri {
  background-color: #252525;
  padding: 1rem;
  border-radius: 5px;
  font-size: 0.9rem;
  color: #bbb;
  margin-top: 1rem;
}



/* Diğer Oyunlar Bölümü */
.diger-oyunlar {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.diger-oyunlar h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #4CAF50;
  border-bottom: 2px solid #333;
  padding-bottom: 0.5rem;
}

.diger-oyunlar-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.diger-oyun {
  background-color: #1e1e1e;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.diger-oyun:hover {
  transform: translateY(-5px);
}

.diger-oyun img {
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
}

.diger-oyun h3 {
  padding: 1rem;
  text-align: center;
  margin: 0;
  color: #f5f5f5;
}

.diger-oyun-btn {
  background-color: #4CAF50;
  color: white;
  text-decoration: none;
  padding: 0.7rem 1rem;
  text-align: center;
  margin: 0.5rem 1rem 1rem;
  border-radius: 5px;
  transition: background-color 0.3s;
  font-weight: bold;
}

.diger-oyun-btn:hover {
  background-color: #3e8e41;
}

/* Birol Coşgun Sayfası için Özel Stil */

.profil {
  text-align: center;
  padding: 40px 20px;
  background-color: #1e1e1e;
  color: #f5f5f5;
}

.profil-foto {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #4CAF50;
}

.profil h1 {
  font-size: 2rem;
  margin: 10px 0;
}

.profil h2 {
  font-size: 1.2rem;
  color: #9acd32;
}

.profil p {
  max-width: 600px;
  margin: 20px auto;
  line-height: 1.6;
}

.bilgi {
  max-width: 700px;
  margin: 40px auto;
  padding: 20px;
  background-color: #2c2c2c;
  color: #f5f5f5;
  border-radius: 10px;
}

.bilgi h2 {
  color: #4CAF50;
  margin-top: 20px;
}

.bilgi ul {
  list-style: disc;
  padding-left: 20px;
}

.bilgi p a {
  color: #4CAF50;
  text-decoration: underline;
}

nav .active {
  color: #4CAF50;
  font-weight: bold;
}








/* Küçük ekranlarda göster */
@media (max-width: 768px) {


 nav {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3%;
}

nav div a {
  font-size: 1.1rem;
}

nav ul {
  display: flex;
  flex-direction: row;
  width: auto;
  background-color: transparent;
  padding: 0;
  margin: 0;
  gap: 0.5rem;
}

nav ul li {
  margin-left: 0;
  width: auto;
}

nav ul li a {
  display: inline-block;
  padding: 0.5rem 0.8rem;
  font-size: 0.9rem;
  border-bottom: none;
}

.search-form {
  flex-direction: column;
  gap: 1rem;
}

.search-form input,
.search-form select {
  min-width: unset;
}

.games-grid {
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

#Oyunlar h1,
#Nasil h1,
#iletisim h1 {
  font-size: 1.7rem;
}

#Nasil h2 {
  font-size: 1.2rem;
}

#Nasil p {
  font-size: 0.95rem;
}
}

/* Çok küçük ekranlar için */
@media (max-width: 480px) {
  nav {
    padding: 1rem 2%;
  }

  nav div a {
    font-size: 1rem;
  }

  nav ul {
    gap: 0.3rem;
  }

  nav ul li a {
    padding: 0.4rem 0.6rem;
    font-size: 0.85rem;
  }
}

  .search-container {
    margin: 1rem auto;
  }

  #Oyunlar,
  #Nasil {
    margin: 2rem auto;
  }

  .oyun-content {
    padding: 1rem;
  }

  .oyun h2 {
    font-size: 1.1rem;
  }

  .oyun p {
    font-size: 0.85rem;
  }

  .tum-oyunlar {
    background-color: #4CA0AF;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  .tum-oyunlar: hover {
    background-color: #408C9C;
  }
}

/* Tablet için orta boyut ayarları */
@media (min-width: 769px) and (max-width: 1024px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Büyük ekranlar için */
@media (min-width: 1025px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contactForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #2b2b2b;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.contactForm input,
.contactForm textarea {
  padding: 0.8rem;
  border: 2px solid #333;
  border-radius: 4px;
  background-color: #1e1e1e;
  color: #f5f5f5;
  font-size: 1rem;
  width: 100%;
}

.contactForm textarea {
  min-height: 80px;
  resize: vertical;
}

.contactForm button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.contactForm button:hover {
  background-color: #45a049;
}


.mainIMG{

  margin: auto;
  padding: 20px;
  text-align: center;
}

.mainIMG img{
  width: 40%;
  max-width: 300px;
  opacity: 90%;
}

.lightbox {

  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80%;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.lightbox-close:hover {
  color: #bbb;
}


@media (max-width: 720px) {
  .lightbox-content{

    margin-top: 100px;

  }
}

/* Blog kart genel */
.blog-card {
  background: #141414;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}

/* Kapak */
.blog-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* İç kısım */
.blog-card-body {
  padding: 1.2rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* Başlık */
.blog-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
  margin: 0;
}

/* Özet */
.blog-card-ozet {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #b5b5b5;

  /* 3 satırdan sonra kes */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Alt kısım */
.blog-card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Tarih */
.blog-card-date {
  font-size: 0.8rem;
  color: #777;
}

/* Buton */
.blog-card-btn {
  font-size: 0.85rem;
  color: #9acd32;
  text-decoration: none;
  font-weight: 500;
}

.blog-card-btn:hover {
  text-decoration: underline;
}


