/* Genel Ayarlar */
body {
    background-color: #000000;
    margin: 0;
    padding: 0;
    font-family: "Bookman Old Style", serif; /* Klasik doku için */
    color: #333;
    cursor: url(http://www.necatiaksu.net/resim/allah.cur), auto;
}

/* Ana Taşıyıcı */
.main-container {
    display: flex;
    justify-content: center;
    padding: 20px;
}

/* İçerik Kartı */
.content-card {
    background-color: #E1E6E8;
    max-width: 800px; /* Okuma kolaylığı için ideal genişlik */
    width: 100%;
    padding: 30px 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    border-radius: 4px;
}

/* Başlık Stilleri */
.entry-title {
    color: #990099;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.entry-subtitle {
    color: #007F00;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 0;
}

/* Metin Gövdesi */
.text-body {
    line-height: 1.8; /* Satır aralığı ferahlatıldı */
    text-align: justify;
    font-size: 1.2rem;
}

.text-body p {
    margin-bottom: 20px;
}

/* Mobil Uyumluluk */
@media (max-width: 600px) {
    .content-card {
        padding: 15px 20px;
    }
    .text-body {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}

/* 1. Tüm paragraflar için genel aralık */
p {
    margin-top: 0 !important;
    margin-bottom: 35px !important; /* Aralığı buradan açıp kapatabilirsiniz */
    display: block !important;
}

/* 2. Metin gövdesine özel hassas ayar */
.text-body p {
    margin-bottom: 15px !important;
    line-height: 1.2 !important; /* Satır içi ferahlık */
}

/* 3. Mobilde paragraf aralığını biraz daraltmak isterseniz (isteğe bağlı) */
@media (max-width: 600px) {
    p, .text-body p {
        margin-bottom: 25px !important;
    }
}
