/*
Theme Name: AstroMistik Pro
Author: Gemini
Description: Mistik Tarot Pro ile bütünleşik, hareketli arka planlı premium tema.
Version: 2.0
*/

:root {
    --bg-deep: #050505;
    --bg-nebula: #0b0c15;
    --gold: #d4af37;
    --gold-glow: rgba(212, 175, 55, 0.5);
    --text-main: #e0e0e0;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: 1px solid rgba(212, 175, 55, 0.15);
}

body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: 'Cormorant Garamond', serif;
    margin: 0;
    padding: 0;
    line-height: 1.8;
    font-size: 18px;
    overflow-x: hidden;
}

/* HAREKETLİ YILDIZ ARKA PLANI */
.stars-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -2;
    background: radial-gradient(circle at center, #1a1c29 0%, #000 100%);
}
.stars-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
    opacity: 0.4;
    animation: starMove 100s linear infinite;
}
@keyframes starMove { from { background-position: 0 0; } to { background-position: 1000px 1000px; } }

/* TİPOGRAFİ & LİNKLER */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-weight: 700;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}
a { color: var(--gold); text-decoration: none; transition: 0.3s; }
a:hover { color: #fff; text-shadow: 0 0 10px var(--gold); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* HEADER TASARIMI */
.site-header {
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    border-bottom: var(--glass-border);
    padding: 30px 0 20px;
    position: sticky; top: 0; z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.header-inner { text-align: center; margin-bottom: 20px; }

.site-title { font-size: 2.5rem; margin: 0; }
.site-title a {
    background: linear-gradient(135deg, #d4af37 0%, #f9e5aa 50%, #b8860b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
}
.symbol { font-size: 0.8em; color: var(--gold); opacity: 0.8; -webkit-text-fill-color: var(--gold); }

.site-description {
    font-size: 1rem; color: #aaa; letter-spacing: 3px; text-transform: uppercase; margin-top: 5px; opacity: 0.7;
}

/* MENÜ */
.main-navigation ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; justify-content: center; gap: 40px;
}
.main-navigation a {
    font-family: 'Cinzel', serif; font-size: 0.9rem; color: #e0e0e0; position: relative;
}
.main-navigation a::after {
    content: ''; position: absolute; bottom: -5px; left: 50%; width: 0; height: 1px;
    background: var(--gold); transition: 0.3s; transform: translateX(-50%);
}
.main-navigation a:hover::after { width: 100%; }

/* İÇERİK ALANI */
.site-content { padding: 60px 0; min-height: 80vh; }

/* SEO MAKALESİ İÇİN ÖZEL STİL (Önceki yazdığım makale için) */
.tarot-seo-masterpiece {
    background: var(--glass);
    border: var(--glass-border);
    padding: 60px;
    border-radius: 15px;
    margin-top: 80px !important; /* Eklenti ile mesafe */
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.tarot-seo-masterpiece h1, .tarot-seo-masterpiece h2 { text-align: center; }
.tarot-seo-masterpiece p, .tarot-seo-masterpiece li { color: #ccc; font-size: 1.1em; }
.tarot-seo-masterpiece strong { color: #fff; }

/* FOOTER */
.site-footer {
    background: #000;
    border-top: var(--glass-border);
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem; color: #666;
    margin-top: 80px;
}
.site-footer p { margin: 5px 0; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .site-title { font-size: 2rem; }
    .main-navigation ul { gap: 15px; flex-wrap: wrap; }
    .tarot-seo-masterpiece { padding: 30px; }
}