  .text-red {
    color: red;
  } 

  .bg-white {
    background-color: white;
  }   

/* Yorumlar Genel Alanı */
.modern-comments-section {
    margin-top: 50px;
    border-top: 2px solid var(--accent-color);
    padding-top: 30px;
    background: #f9f9f9;
    border-radius: 12px;
}

/* Yorumlar Başlık */
.modern-comments-header {
    padding: 20px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 12px 12px 0 0;
}

.modern-comments-header h3 {
    margin: 0;
    font-size: 1.5rem;
	color: black;
}

/* Yorumlar Listesi */
.modern-comments-list {
    padding: 25px;
    max-height: 500px;
    overflow-y: auto;
}

/* Her bir yorum */
.modern-comment {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.comment-author-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
}

.modern-comment-content {
    flex: 1;
}

.modern-comment-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.modern-comment-author {
    font-weight: 600;
    color: var(--dark);
}

.modern-comment-date {
    font-size: 0.9rem;
    color: #666;
}

.modern-comment-text {
    color: #444;
    line-height: 1.7;
}


/* Yorum Yapma Formu */
.modern-comment-form {
    max-width: 91%; /* .comments-box ile aynı genişlikse burayı ayarla */
    margin: 20px auto 0 auto; /* üst 20px, sağ-sol auto ile ortalanır */
    padding: 21px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.modern-comment-form textarea,
.modern-comment-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.modern-comment-form textarea:focus,
.modern-comment-form input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.1);
}

.modern-comment-submit {
    background: var(--accent-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modern-comment-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
}

/* Mobil uyumlu düzenlemeler */
@media (max-width: 768px) {
    .modern-comment {
        flex-direction: column;
        padding: 15px;
    }

    .comment-author-avatar img {
        width: 50px;
        height: 50px;
    }

    .modern-comments-header h3 {
        font-size: 1.3rem;
		color: black;
    }

    .modern-comment-form textarea,
    .modern-comment-form input {
        padding: 10px;
    }

    .modern-comment-submit {
        width: 100%;
        padding: 12px;
    }
}


.top-containers {
  display: flex;
  gap: 20px;
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 20px;
  flex-wrap: wrap;
}

.container-box {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  flex: 1 0 33%;
  min-width: 300px;
}

.container-box2 {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  flex: 1 0 65%;
  min-width: 300px;
}

.container-box h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #ff5c8d;
  font-family: 'Aclonica', sans-serif;
}

.container-box2 h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #ff5c8d;
  font-family: 'Aclonica', sans-serif;
}

.categories-box ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px; /* Butonlar arasında dikey boşluk */
}

.categories-box ul li {
  width: 100%;
}

.categories-box ul li a {
  display: block;
  width: 100%;
  height: 50px; /* Sabit yükseklik: tüm butonlar eşit */
  line-height: 50px; /* Metni dikeyde ortalamak için */
  background-color: #007BFF; /* Mavi arka plan */
  border: 2px solid #007BFF; /* Mavi kenarlık */
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.categories-box ul li a:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  text-decoration: underline;
}

.info-box p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}




.guzel-soz-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center; /* yatayda ortala */
    justify-content: center;
    margin: 30px auto;  /* sayfanın ortasına getirir */
    padding: 0 15px;    /* mobilde kenar boşluğu */
    max-width: 100%;    /* taşmayı önler */
    text-align: center;
}

.guzel-soz-baslik {
    font-family: 'Aclonica', sans-serif;
    color: #0073aa;
    margin-bottom: 10px;
    font-size: 22px;
}

.guzel-soz-kutusu {
    background-color: #fdf7f7;
    border-left: 9px solid #e91e63;
	border-right: 9px solid #e91e63;
    padding: 15px 20px;
    max-width: 780px;
    width: 100%; /* taşmayı önlemek için %100 genişlik */
    font-size: 16px;
    font-style: italic;
    color: #333;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.05);
    border-radius: 6px;
    line-height: 1.6;
	margin: 0 auto;
}



.love-tester {
  backdrop-filter: blur(10px);	
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  width: 100%;
  max-width: 400%;
  transition: all 0.3s ease;
}

.love-tester h2 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #333;
}

.names-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 15px;
}

.name-input {
  font-size: 18px;
  padding: 15px;
  width: 30%;
  text-align: center;
  border-radius: 25px;
  border: 2px solid #f36dfb;
  background-color: transparent;
  transition: border-color 0.3s ease;
  color: #d90cf0;
  margin: 20px;
    display: inline-block;
  vertical-align: middle;
}

.name-input:focus {
  border-color: #f44336;
  outline: none;
}

.hsheart {
  font-size: 40px;
  color: pink;
  padding: 0 15px;
  animation: flyHeart 2s ease-in-out infinite;
}

@keyframes flyHeart {
  0% {
    transform: translate(0, 0); /* Başlangıç noktası */
  }
  25% {
    transform: translate(20px, -20px); /* Sağ üst tarafa kayma */
  }
  50% {
    transform: translate(0, 0); /* Ortada durma */
  }
  75% {
    transform: translate(-20px, -20px); /* Sol üst tarafa kayma */
  }
  100% {
    transform: translate(0, 0); /* Başlangıç noktasına dönüş */
  }
}


.hsheart:hover {
  transform: scale(1.2);
}

#testButton {
  padding: 12px 30px;
  background-color: #f36dfb;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  width: auto;  
  min-width: 22%; 
  max-width: 250%; 
  text-align: center; 
}

#testButton:hover {
  background-color: #c2185b;
  transform: scale(1.05);
}

.result {
  font-size: 24px;
  margin-top: 20px;
  color: #333;
  font-weight: bold;
  display: none;
}

.countdown {
  font-size: 30px;
  font-weight: bold;
  margin-top: 20px;
  color: orange;
}

/* Mobil uyumlu tasarım */
@media (max-width: 600px) {
  .names-container {
    flex-direction: column;
  }

  .name-input {
    width: 80%;
    margin-bottom: 15px;
  }

  .hsheart {
    margin: 10px 0;
  }
}