/* Sadece nefes ve temizlik */
body {
    max-width: 720px;
    margin: 48px auto;
    padding: 0 20px;
    line-height: 1.7;
}

/* Linkler mor olmasın */
a {
    color: #0066cc;
}

a:visited {
    color: #0066cc;
}

a:hover {
    color: #000000;
}

img, video {
    max-width: 100%;
    height: auto;
}

/* Header - altı çizgili */
.header {
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.site-title {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: #000000;
}

.site-title:visited {
    color: #000000;
}

.subtitle {
    margin-top: 4px;
}

.subtitle a {
    color: #666666;
    text-decoration: none;
}

.subtitle a:visited {
    color: #666666;
}

.subtitle a:hover {
    color: #000000;
    text-decoration: underline;
}

/* Section başlıkları */
.section {
    margin-bottom: 40px;
}

.section-title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 12px;
}

/* Post list */
.post-item {
    padding: 6px 0;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 16px;
}

.post-item .date {
    color: #888888;
    min-width: 100px;
}

.post-item .title {
    color: #000000;
    text-decoration: none;
}

.post-item .title:hover {
    text-decoration: underline;
}

.post-item .tags-inline {
    color: #999999;
    font-size: 14px;
}

/* Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 20px;
}

.tag {
    color: #666666;
    cursor: pointer;
}

.tag:hover {
    color: #000000;
}

.tag.active {
    color: #000000;
    font-weight: bold;
}

/* Footer */
.footer {
    border-top: 1px solid #ddd;
    padding-top: 16px;
    margin-top: 40px;
    color: #444444;
    font-size: 13px;
    line-height: 1.6;
}

.footer a {
    color: #666666;
    text-decoration: none;
}

.footer a:visited {
    color: #666666;
}

.footer a:hover {
    color: #000000;
    text-decoration: underline;
}

/* Post içeriği */
.post-body {
    line-height: 1.8;
}

.post-body a {
    color: #0066cc;
}

.post-body a:visited {
    color: #0066cc;
}

.post-meta {
    color: #888888;
    font-size: 14px;
    margin-bottom: 16px;
}

.post-tags {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.post-tags .tag {
    margin-right: 12px;
    color: #666666;
}

/* Admin */
.admin-input {
    display: block;
    width: 100%;
    padding: 8px 12px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    font-size: 16px;
}

.admin-textarea {
    display: block;
    width: 100%;
    min-height: 140px;
    padding: 8px 12px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    font-size: 16px;
    resize: vertical;
}

.admin-btn {
    padding: 8px 20px;
    border: 1px solid #ccc;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 16px;
}

.admin-btn:hover {
    background: #e5e5e5;
}

.admin-post-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
}

.delete-btn {
    background: transparent;
    border: none;
    color: #cc0000;
    cursor: pointer;
    font-size: 16px;
}

.delete-btn:hover {
    color: #ff0000;
}

.loading {
    color: #999999;
}

/* Contact */
.contact-content {
    line-height: 1.8;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    padding: 2px 0;
}

.contact-list a {
    color: #0066cc;
}

.contact-list a:visited {
    color: #0066cc;
}

/* Mobile */
@media (max-width: 600px) {
    body {
        margin: 24px auto;
        padding: 0 16px;
    }
    
    .post-item .date {
        min-width: auto;
    }
    
    .site-title {
        font-size: 20px;
    }
}
