/* Genel Ayarlar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Videodaki yumuşak eflatun/pembe arka plan */
  background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
  background-color: #f3e5f5; /* Garanti renk */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow: hidden; /* Buton kaçarken kaydırma çubuğu çıkmasın */
}

.container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Ana Kart Tasarımı */
.card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  max-width: 400px;
  width: 90%;
  text-align: center;
  border: 1px solid #eee;
  z-index: 10;
}

/* Bubu Dudu GIF'lerinin boyutu */
.bubu-img {
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 10px;
}

h1 {
  color: #4a148c; /* Koyu Mor */
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
}

p#subtext {
  color: #7e57c2; /* Açık Mor */
  font-size: 14px;
  margin-bottom: 5px;
  font-style: italic;
  min-height: 20px; /* Yazı değişirken kart oynamasın */
}

/* RGB Çizgi Efekti */
.rgb-line {
  height: 4px;
  width: 100%;
  margin: 20px 0;
  background: linear-gradient(90deg, #ff80ab, #ea80fc, #8c9eff, #ff80ab);
  background-size: 300% 300%;
  animation: rgb-animation 3s infinite linear;
  border-radius: 2px;
}

@keyframes rgb-animation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Buton Alanı */
.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
  min-height: 50px;
}

/* Ortak Buton Stilleri */
button {
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

/* Evet Butonu - Yeşil */
.yes-btn {
  background-color: #66bb6a; /* Yeşil */
  color: white;
  box-shadow: 0 4px 10px rgba(102, 187, 106, 0.3);
}

.yes-btn:hover {
  box-shadow: 0 6px 15px rgba(102, 187, 106, 0.4);
}

/* Hayır Butonu - Kırmızı */
.no-btn {
  background-color: #ef5350; /* Kırmızı */
  color: white;
  box-shadow: 0 4px 10px rgba(239, 83, 80, 0.3);
  /* Kaçış efekti için yumuşak geçiş */
  transition: all 0.1s ease-out;
}

/* Final Ekranı Özellikleri */
.final-text {
  color: #d81b60; /* Pembe */
  font-size: 28px;
}

.footer-note {
  font-size: 12px;
  margin-top: 20px;
  color: #aaa;
}
