@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Poppins:wght@300;400;500;600&display=swap');

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

body {
    background-color: #0b132b;
    color: #e0e6ed;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    padding: 20px 10px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

header {
    text-align: center;
    padding: 20px 0 30px 0;
    border-bottom: 2px solid #1c2541;
    margin-bottom: 25px;
}

header h1 a {
    color: #48cae4;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
}

header p {
    color: #8d99ae;
    font-size: 14px;
    margin-top: 5px;
}

nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

nav a {
    color: #fb8500;
    text-decoration: none;
    background: #1c2541;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
}

nav a:hover {
    background: #48cae4;
    color: #0b132b;
}

.card {
    background: #1c2541;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 1px solid #2a385b;
}

.kategoriler {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.kategori-btn {
    background: #0b132b;
    color: #90e0ef;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    border: 1px solid #2a385b;
}

.kategori-btn:hover, .kategori-btn.aktif {
    background: #00b4d8;
    color: #fff;
}

.siir-listesi {
    display: grid;
    gap: 15px;
}

.siir-item {
    background: #0b132b;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid #00b4d8;
}

.siir-item h3 a {
    color: #edf2f4;
    text-decoration: none;
    font-size: 18px;
}

.siir-item h3 a:hover {
    color: #48cae4;
}

.siir-meta {
    font-size: 12px;
    color: #8d99ae;
}

.siir-detay {
    text-align: center;
    padding: 30px 20px;
}

.siir-detay h2 {
    font-family: 'Playfair Display', serif;
    color: #48cae4;
    font-size: 28px;
    margin-bottom: 5px;
}

.siir-detay .sair {
    color: #fb8500;
    font-style: italic;
    margin-bottom: 25px;
    font-size: 15px;
}

.siir-metni {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    line-height: 1.9;
    color: #f1f5f9;
    white-space: pre-line;
    margin: 30px 0;
    background: #0b132b;
    padding: 30px;
    border-radius: 8px;
    border: 1px dashed #2a385b;
}

.font-kontrol {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.font-btn {
    background: #2a385b;
    color: #fff;
    border: none;
    padding: 5px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.font-btn:hover {
    background: #00b4d8;
}

form label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    color: #90e0ef;
    font-size: 14px;
}

form input[type="text"], form select, form textarea {
    width: 100%;
    padding: 12px;
    background: #0b132b;
    border: 1px solid #2a385b;
    border-radius: 6px;
    color: #fff;
    font-family: inherit;
}

form button {
    margin-top: 20px;
    background: #00b4d8;
    color: #0b132b;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}

form button:hover {
    background: #48cae4;
}

.mesaj {
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: center;
}

.mesaj.basari { background: #2a9d8f; color: #fff; }
.mesaj.hata { background: #e76f51; color: #fff; }

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.admin-table th, .admin-table td {
    padding: 10px;
    border: 1px solid #2a385b;
    text-align: left;
}

.admin-table th {
    background: #0b132b;
    color: #48cae4;
}

.btn-islem {
    padding: 5px 10px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    color: #fff;
    margin-right: 5px;
}

.btn-onay { background: #2a9d8f; }
.btn-sil { background: #e76f51; }

/* Paylaşım Butonları Stilleri */
.paylas-alani {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #2a385b;
}

.paylas-baslik {
    font-size: 14px;
    color: #8d99ae;
    margin-bottom: 12px;
}

.paylas-butonlari {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.paylas-btn {
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
}

.paylas-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-whatsapp { background-color: #25D366; }
.btn-twitter { background-color: #1DA1F2; }
.btn-facebook { background-color: #1877F2; }
.btn-kopyala { background-color: #2a385b; color: #48cae4; }