* {
    transition: all .2s ease-out;
}

body {
    font-family: 'Merriweather', serif;
    font-size: 17px;
    line-height: 1.8;
    background: #f6fcff;
    background-attachment: fixed;
    min-height: 100vh;
    color: #38515d !important;
}

h1 {
    font-family: 'EB Garamond', serif;
}

.text-slate-900,
.text-slate-700,
.text-slate-600,
.text-slate-500,
.text-slate-400,
h1,
h2,
h3,
h4,
a {
    color: #38515d !important;
}

.social-icon {
    color: #38515d !important;
}

.social-icon:hover {
    color: #61aff4 !important;
    transform: scale(1.15);
}

.cta-btn {
    background-color: #61aff4 !important;
    color: white !important;
}

.cta-btn:hover {
    background-color: #4a90c8 !important;
}

.outline-btn {
    color: #61aff4 !important;
    border: 1px solid #61aff4;
}

.outline-btn:hover {
    background-color: #f0f9ff;
}

/* Substack Tipografi ve Renk Uygulaması */

h1 {
    font-family: 'EB Garamond', serif;
}

/* Abone Ol Butonu Rengi: #61aff4 */
.cta-btn {
    background-color: #61aff4 !important;
    color: white !important;
}

.cta-btn:hover {
    background-color: #4a90c8 !important;
    /* Hafif koyu versiyonu */
}

/* Avatar hover animations - Linktree stili için sadeleştirildi */
.avatar-glow {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform .2s ease;
}

.avatar-glow:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Featured premium card - Linktree stili için sadeleştirildi */
.post-card {
    display: flex;
    gap: 12px;
    padding: 14px;
    border-radius: 12px;
    background: #fff;
    box-shadow: none;
    border: 1px solid #ddd;
    transform: translateY(0);
}

.post-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-color: #61aff4;
    /* Hover'da Link Rengi ile uyumlu */
    opacity: 1;
}

/* Mini cards - Linktree stili için sadeleştirme */
#rss-posts>div {
    overflow: visible;
    transition: box-shadow .2s ease, transform .2s ease;
}

/* Subtle hover scale */
#rss-posts>div:hover {
    transform: scale(1.01);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.mini-card {
    overflow: visible;
    border-radius: 12px;
    border: 1px solid #ddd;
    box-shadow: none;
    background: #fff;
    /* Beyaz kart arkaplanı */
}

/* Metinler için renk güncellemeleri (Text Color: #38515d) */
.text-slate-900,
.text-black {
    color: #38515d;
}

.text-slate-600,
.text-slate-500 {
    color: #5e7988;
}

/* Yumuşak metinler için biraz daha açık */

/* Share menu - Stilini koru */
.share-btn {
    position: relative;
    border: none;
    background: transparent;
    padding: 6px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    color: #38515d;
    /* İkon rengi */
}

.share-menu {
    position: absolute;
    right: 0;
    top: 32px;
    min-width: 180px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.1);
    padding: 6px;
    display: none;
    z-index: 99999;
}

.share-menu a {
    display: block;
    padding: 8px 10px;
    font-size: 14px;
    color: #38515d;
    text-decoration: none;
    border-radius: 8px;
}

.share-menu a:hover {
    background: #f1f5f9;
}