/* blog.css - Okuma Odaklı Tasarım */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

body {
    background-color: #0a192f;
    color: #cbd5e1;
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

.blog-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: rgba(16, 33, 60, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

h1 {
    font-family: 'Crimson Pro', serif;
    color: #f59e0b; /* Altın rengi başlık */
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: center;
}

h2 {
    font-family: 'Crimson Pro', serif;
    color: #93c5fd;
    margin-top: 30px;
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
    padding-bottom: 5px;
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

strong {
    color: #e0f2fe;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.back-link:hover {
    color: #f59e0b;
    transform: translateX(-5px);
}

.meta-info {
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

/* Footer benzeri alan */
.blog-footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    font-size: 0.9rem;
    color: #64748b;
}

@media (max-width: 600px) {
    h1 { font-size: 2rem; }
    .blog-container { margin: 10px; padding: 15px; }
}