/* ============================================================
   AstroDunya.com — Ana Stil Dosyası
   Uzay/Galaksi Temalı Dark Mode Glassmorphism Tasarım
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ============================================================
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */
:root {
    /* Renk Paleti */
    --bg-deep: #0a0a16;
    --bg-space: #0f0f23;
    --bg-card: rgba(20, 15, 50, 0.6);
    --bg-card-hover: rgba(30, 25, 70, 0.8);
    --bg-input: rgba(15, 15, 40, 0.8);

    /* Glassmorphism */
    --glass-bg: rgba(15, 15, 35, 0.65);
    --glass-bg-strong: rgba(15, 15, 35, 0.85);
    --glass-blur: blur(20px);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(212, 175, 55, 0.25);

    /* Altın/Amber Vurgu */
    --gold: #d4af37;
    --gold-light: #f5d060;
    --gold-dark: #b8941e;
    --gold-glow: rgba(212, 175, 55, 0.35);
    --gold-gradient: linear-gradient(135deg, #d4af37, #f39c12, #f5d060);

    /* Mor/İndigo Aksan */
    --purple: #7c3aed;
    --purple-light: #a78bfa;
    --indigo: #4f46e5;
    --indigo-glow: rgba(79, 70, 229, 0.3);

    /* Metin Renkleri */
    --text-primary: #ffffff;
    --text-secondary: #a0a0c0;
    --text-muted: #6b6b8a;
    --text-gold: #d4af37;

    /* Durum Renkleri */
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;

    /* Tipografi */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 2rem;
    --fs-3xl: 2.5rem;
    --fs-4xl: 3.5rem;
    --fs-hero: clamp(2.5rem, 5vw, 4.5rem);
    --fw-light: 300;
    --fw-normal: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;
    --lh-tight: 1.2;
    --lh-normal: 1.6;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* Geçişler */
    --transition-fast: all 0.15s ease;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Gölgeler */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 30px rgba(212, 175, 55, 0.15);
    --shadow-purple: 0 4px 30px rgba(124, 58, 237, 0.15);

    /* Konteyner */
    --container-max: 1200px;
    --container-sm: 800px;

    color-scheme: dark;
}

/* ============================================================
   2. CSS RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    font-weight: var(--fw-normal);
    line-height: var(--lh-normal);
    color: var(--text-primary);
    background-color: var(--bg-deep);
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Kozmik arka plan - Daha can alıcı ve parlak galaksi renkleri */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 40%, rgba(79, 70, 229, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 20%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(212, 175, 55, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: pulseGalaxy 12s ease-in-out infinite alternate;
}

@keyframes pulseGalaxy {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 1; }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--gold-light);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    line-height: var(--lh-tight);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
}

::selection {
    background: var(--gold);
    color: var(--bg-deep);
}

/* ============================================================
   3. LAYOUT
   ============================================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    position: relative;
    z-index: 1;
}

.container-sm {
    max-width: var(--container-sm);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    position: relative;
    z-index: 1;
}

.section {
    padding: var(--space-4xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header h2 {
    font-size: var(--fs-3xl);
    font-weight: var(--fw-extrabold);
    margin-bottom: var(--space-md);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: var(--fs-md);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    margin: var(--space-md) auto;
    border-radius: var(--radius-full);
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--space-xl);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .section { padding: var(--space-3xl) 0; }
}

/* ============================================================
   4. GLASS CARD BILEŞENI
   ============================================================ */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: var(--transition);
}

.glass-card:hover {
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

.glass-card-static {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

/* ============================================================
   5. NAVIGASYON
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    padding: var(--space-sm) 0;
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--fs-xl);
    font-weight: var(--fw-extrabold);
    color: var(--text-primary);
    text-decoration: none;
}

.nav-logo .logo-icon {
    font-size: 1.8rem;
    color: #ffffff;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.8));
}

.nav-logo span:not(.logo-icon) {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: var(--fw-medium);
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: var(--space-xs) 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition);
    border-radius: var(--radius-full);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Mobil menü butonu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: var(--space-sm);
    background: none;
    border: none;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        background: var(--glass-bg-strong);
        backdrop-filter: var(--glass-blur);
        -webkit-backdrop-filter: var(--glass-blur);
        padding: 5rem var(--space-xl);
        gap: var(--space-lg);
        transition: var(--transition-slow);
        border-left: 1px solid var(--glass-border);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: var(--fs-base);
    }
}

/* ============================================================
   6. HERO SECTION
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: var(--space-4xl) var(--space-lg);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

#starCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    color: var(--gold);
    margin-bottom: var(--space-xl);
    animation: fadeInDown 0.8s ease forwards;
}

.hero h1 {
    font-size: var(--fs-hero);
    font-weight: var(--fw-extrabold);
    line-height: 1.1;
    margin-bottom: var(--space-xl);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero h1 .gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--fs-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

/* Yıldız parıltı efekti */
.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}

/* ============================================================
   7. BUTONLAR
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.75rem;
    font-family: var(--font-primary);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.03em;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--bg-deep);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 35px rgba(212, 175, 55, 0.35);
    color: var(--bg-deep);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
    color: var(--gold-light);
}

.btn-glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-glass:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: var(--fs-base);
    border-radius: var(--radius-lg);
}

/* ============================================================
   8. BURÇ SEÇİCİ WIDGET
   ============================================================ */
.zodiac-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-md);
}

@media (max-width: 1024px) {
    .zodiac-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
    .zodiac-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
    .zodiac-grid { grid-template-columns: repeat(2, 1fr); }
}

.zodiac-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    cursor: pointer;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.zodiac-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--gold-glow) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.zodiac-card:hover::before {
    opacity: 1;
}

.zodiac-card:hover {
    transform: translateY(-6px) scale(1.03);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.zodiac-card.active {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    background: rgba(212, 175, 55, 0.08);
}

.zodiac-symbol {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    filter: drop-shadow(0 0 10px var(--gold-glow));
    transition: var(--transition);
    display: block;
}

.zodiac-card:hover .zodiac-symbol {
    transform: scale(1.15);
    filter: drop-shadow(0 0 20px var(--gold-glow));
}

.zodiac-name {
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.zodiac-date {
    font-size: var(--fs-xs);
    color: var(--text-muted);
}

/* ============================================================
   9. BURÇ YORUM MODAL (dialog)
   ============================================================ */
.horoscope-dialog {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
}

.horoscope-dialog.open {
    display: flex;
}

.horoscope-dialog-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1;
    animation: fadeIn 0.3s ease;
}

.horoscope-dialog-content {
    position: relative;
    z-index: 2;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border-hover);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    max-width: 520px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg), 0 0 60px rgba(212, 175, 55, 0.08);
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dialog-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: var(--fs-lg);
    transition: var(--transition);
}

.dialog-close:hover {
    background: rgba(239, 68, 68, 0.15);
    color: var(--error);
    border-color: var(--error);
}

.dialog-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.dialog-header .zodiac-symbol {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
}

.dialog-header h3 {
    font-size: var(--fs-2xl);
    margin-bottom: var(--space-xs);
}

.dialog-header .sign-date {
    color: var(--text-muted);
    font-size: var(--fs-sm);
}

.dialog-body {
    margin-bottom: var(--space-xl);
}

.dialog-body .horoscope-text {
    font-size: var(--fs-base);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

/* Skor çubukları */
.score-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.score-item {
    text-align: center;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
}

.score-label {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.score-value {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    color: var(--gold);
}

.score-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    margin-top: var(--space-sm);
    overflow: hidden;
}

.score-bar-fill {
    height: 100%;
    background: var(--gold-gradient);
    border-radius: var(--radius-full);
    transition: width 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lucky-info {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

.lucky-item {
    padding: var(--space-sm) var(--space-lg);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-full);
    border: 1px solid var(--glass-border);
    font-size: var(--fs-sm);
    color: var(--text-secondary);
}

.lucky-item strong {
    color: var(--gold);
}

/* Loading spinner */
.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-2xl);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--glass-border);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* ============================================================
   10. BLOG KARTLARI
   ============================================================ */
.blog-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-gold);
}

.blog-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg-space);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-category {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: var(--space-xs) var(--space-md);
    background: rgba(212, 175, 55, 0.9);
    color: var(--bg-deep);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
}

.blog-card-body {
    padding: var(--space-xl);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    font-size: var(--fs-lg);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-sm);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-title a {
    color: var(--text-primary);
}

.blog-card-title a:hover {
    color: var(--gold);
}

.blog-card-excerpt {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--fs-xs);
    color: var(--text-muted);
    padding-top: var(--space-md);
    border-top: 1px solid var(--glass-border);
}

.blog-card-date {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.blog-card-views {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

/* Blog Card Placeholder (görsel yoksa) */
.blog-card-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--bg-space) 0%, rgba(79, 70, 229, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-muted);
}

/* ============================================================
   11. HİZMET KARTLARI
   ============================================================ */
.service-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-gold);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
    display: block;
}

.service-card h3 {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-md);
}

.service-card p {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.service-price {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.service-duration {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

/* ============================================================
   12. SAYFALAMA (PAGINATION)
   ============================================================ */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-3xl);
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 var(--space-md);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--text-secondary);
    transition: var(--transition);
}

.pagination a:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.pagination .active {
    background: var(--gold-gradient);
    color: var(--bg-deep);
    border-color: var(--gold);
    font-weight: var(--fw-bold);
}

.pagination .disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* ============================================================
   13. ARAMA & FİLTRE
   ============================================================ */
.search-bar {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.search-input-wrapper {
    flex: 1;
    position: relative;
}

.search-input-wrapper input {
    width: 100%;
    padding: 0.85rem 1.25rem;
    padding-left: 3rem;
    background: var(--bg-input);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    transition: var(--transition);
}

.search-input-wrapper input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.search-input-wrapper input::placeholder {
    color: var(--text-muted);
}

.search-input-wrapper .search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: var(--fs-md);
    pointer-events: none;
}

.category-filters {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.category-filter {
    padding: var(--space-sm) var(--space-lg);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.category-filter:hover,
.category-filter.active {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
}

.category-filter .count {
    font-size: var(--fs-xs);
    opacity: 0.6;
    margin-left: var(--space-xs);
}

/* ============================================================
   14. BLOG DETAY SAYFASI
   ============================================================ */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: var(--space-2xl);
    align-items: start;
}

@media (max-width: 1024px) {
    .article-layout {
        grid-template-columns: 1fr;
    }
}

.article-main {
    min-width: 0;
}

.article-header {
    margin-bottom: var(--space-2xl);
}

.article-category {
    display: inline-block;
    padding: var(--space-xs) var(--space-lg);
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.article-title {
    font-size: var(--fs-3xl);
    font-weight: var(--fw-extrabold);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    font-size: var(--fs-sm);
    color: var(--text-muted);
}

.article-featured-image {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-2xl);
    aspect-ratio: 21/9;
    background: var(--bg-space);
}

.article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Makale İçerik Stili */
.article-content {
    font-size: var(--fs-md);
    line-height: 1.9;
    color: var(--text-secondary);
}

.article-content h2 {
    font-size: var(--fs-2xl);
    margin: var(--space-2xl) 0 var(--space-md);
    color: var(--text-primary);
}

.article-content h3 {
    font-size: var(--fs-xl);
    margin: var(--space-xl) 0 var(--space-md);
    color: var(--text-primary);
}

.article-content p {
    margin-bottom: var(--space-lg);
}

.article-content img {
    border-radius: var(--radius-md);
    margin: var(--space-xl) 0;
}

.article-content ul, .article-content ol {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-xl);
}

.article-content li {
    margin-bottom: var(--space-sm);
    list-style: disc;
}

.article-content ol li {
    list-style: decimal;
}

.article-content blockquote {
    border-left: 3px solid var(--gold);
    padding: var(--space-md) var(--space-xl);
    margin: var(--space-xl) 0;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--text-primary);
}

.article-content a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.sidebar-widget h3 {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.sidebar-post {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.sidebar-post:last-child {
    border-bottom: none;
}

.sidebar-post-image {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-space);
}

.sidebar-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-post-title {
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: var(--space-xs);
}

.sidebar-post-title a {
    color: var(--text-primary);
}

.sidebar-post-title a:hover {
    color: var(--gold);
}

.sidebar-post-date {
    font-size: var(--fs-xs);
    color: var(--text-muted);
}

/* Mini Zodiac Grid (sidebar) */
.sidebar-zodiac-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
}

.sidebar-zodiac-item {
    text-align: center;
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: var(--transition);
    font-size: var(--fs-xs);
}

.sidebar-zodiac-item:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
}

.sidebar-zodiac-item .symbol {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 2px;
}

/* Benzer Yazılar */
.related-posts {
    margin-top: var(--space-3xl);
    padding-top: var(--space-3xl);
    border-top: 1px solid var(--glass-border);
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--fs-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--text-secondary);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb .separator {
    color: var(--text-muted);
    opacity: 0.5;
}

/* ============================================================
   15. DANIŞMANLIK SAYFASI
   ============================================================ */
.consultation-hero {
    text-align: center;
    padding: calc(var(--space-4xl) + 60px) 0 var(--space-3xl);
}

.consultation-hero h1 {
    font-size: var(--fs-3xl);
    margin-bottom: var(--space-md);
}

.consultation-hero p {
    font-size: var(--fs-md);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Form Stili */
.consultation-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.form-group label .required {
    color: var(--error);
}

.form-control {
    width: 100%;
    padding: 0.85rem 1.25rem;
    background: var(--bg-input);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23a0a0c0' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    padding-right: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
}

/* Form mesajları */
.alert {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-xl);
    font-size: var(--fs-sm);
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--success);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--error);
}

/* ============================================================
   16. FOOTER
   ============================================================ */
.footer {
    background: var(--glass-bg-strong);
    border-top: 1px solid var(--glass-border);
    padding: var(--space-3xl) 0 var(--space-xl);
    margin-top: var(--space-4xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

.footer-brand .nav-logo {
    margin-bottom: var(--space-md);
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: var(--fs-sm);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: var(--fs-lg);
    transition: var(--transition);
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: var(--fs-base);
    font-weight: var(--fw-semibold);
    color: var(--gold);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: var(--fs-sm);
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    font-size: var(--fs-sm);
    padding: var(--space-xs) 0;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--gold);
    padding-left: var(--space-sm);
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--fs-xs);
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: var(--space-md);
}

/* ============================================================
   17. ANİMASYONLAR
   ============================================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Scroll animasyonları */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   18. UTILITY SINIFLAR
   ============================================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.hidden { display: none !important; }

/* Yıldız parıltısı overlay */
.stars-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

/* Özel scrollbar (modern browsers) */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.5);
}

/* ============================================================
   19. HOROSCOPE PAGE (Tam Sayfa Burç Listesi)
   ============================================================ */
.horoscope-page-hero {
    text-align: center;
    padding: calc(var(--space-4xl) + 60px) 0 var(--space-2xl);
}

.horoscope-page-hero h1 {
    font-size: var(--fs-3xl);
    margin-bottom: var(--space-md);
}

.horoscope-detail-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    margin-bottom: var(--space-xl);
    transition: var(--transition);
}

.horoscope-detail-card:hover {
    border-color: var(--glass-border-hover);
}

.horoscope-detail-header {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.horoscope-detail-header .symbol {
    font-size: 3rem;
    filter: drop-shadow(0 0 10px var(--gold-glow));
}

.horoscope-detail-header h2 {
    font-size: var(--fs-2xl);
}

.horoscope-detail-header .date-range {
    font-size: var(--fs-sm);
    color: var(--text-muted);
}

/* Başarılı gönderim mesajı */
.success-message {
    text-align: center;
    padding: var(--space-3xl);
}

.success-message .icon {
    font-size: 4rem;
    margin-bottom: var(--space-lg);
}

.success-message h2 {
    font-size: var(--fs-2xl);
    margin-bottom: var(--space-md);
    color: var(--success);
}

.success-message p {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

/* No results */
.no-results {
    text-align: center;
    padding: var(--space-4xl) var(--space-xl);
    color: var(--text-secondary);
}

.no-results .icon {
    font-size: 4rem;
    margin-bottom: var(--space-lg);
    opacity: 0.5;
}

.no-results h3 {
    font-size: var(--fs-xl);
    margin-bottom: var(--space-md);
}

/* Page header (blog, kategori) */
.page-header {
    padding: calc(var(--space-4xl) + 60px) 0 var(--space-2xl);
    text-align: center;
}

.page-header h1 {
    font-size: var(--fs-3xl);
    font-weight: var(--fw-extrabold);
    margin-bottom: var(--space-md);
}

.page-header p {
    font-size: var(--fs-md);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}
