/**
 * Astroloji Haritası - Public Styles v5.0
 * Tema: Beyaz (BG), Lacivert (Metin), Pembe (Vurgu)
 */

/* ═══════════════════════════════════════════
   1. GENEL AYARLAR (White Theme)
   ═══════════════════════════════════════════ */
:root {
    --astro-midnight: #191970;
    --astro-pink: #db2777;
    --astro-bg: #ffffff;
    --astro-surface: #fdf2f8;
    --astro-border: #fbcfe8;
}

.astro-auth-wrapper, .astro-account-wrapper, .astro-pricing-wrapper, .astro-advanced-result {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--astro-midnight);
}

/* ═══════════════════════════════════════════
   2. FIYAT TABLOSU (Premium Modern Cards)
   ═══════════════════════════════════════════ */
.astro-pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px;
}

.astro-pricing-card {
    background: #ffffff;
    border: 1px solid var(--astro-border);
    border-radius: 30px;
    padding: 45px 35px;
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    box-shadow: 0 10px 30px rgba(0, 31, 63, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    border-top: 6px solid var(--astro-midnight);
}

.astro-pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 31, 63, 0.1);
    border-color: var(--astro-pink);
}

.astro-pricing-card.featured {
    border-top-color: var(--astro-pink);
    transform: scale(1.05);
    z-index: 2;
}

.astro-pricing-card svg {
    width: 60px !important;
    height: 60px !important;
    margin-bottom: 25px;
    color: var(--astro-midnight);
}

.astro-pricing-card.featured svg { color: var(--astro-pink); }

.astro-package-name {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--astro-midnight);
}

.astro-package-price {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--astro-pink);
    margin-bottom: 30px;
}

.astro-package-features {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 35px 0 !important;
    text-align: left;
}

.astro-package-features li {
    padding: 12px 0;
    font-size: 0.95rem;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.astro-package-features li svg {
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    color: var(--astro-pink);
}

.astro-pricing-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--astro-midnight);
    color: #fff !important;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.astro-pricing-card.featured .astro-pricing-btn {
    background: var(--astro-pink);
}

.astro-pricing-btn:hover {
    opacity: 0.9;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* ═══════════════════════════════════════════
   3. HESAP SAYFASI (High Contrast)
   ═══════════════════════════════════════════ */
.astro-account-wrapper {
    max-width: 900px;
    margin: 40px auto;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid var(--astro-border);
    overflow: hidden;
}

.astro-account-header {
    background: var(--astro-midnight);
    padding: 50px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 30px;
}

.astro-user-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #fff;
}

.astro-user-info h2 { color: #fff; font-size: 2rem; margin: 0; }
.astro-welcome-label { color: var(--astro-pink); font-weight: 700; }

.astro-account-grid {
    padding: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.astro-account-card {
    background: var(--astro-surface);
    border: 1px solid var(--astro-border);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
}

.astro-account-card h3 { color: var(--astro-midnight); font-weight: 800; margin-bottom: 15px; }
.astro-card-desc { color: #64748b; line-height: 1.6; }

.astro-membership-badge.premium {
    background: var(--astro-pink);
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 700;
}

.astro-benefits-list {
    text-align: left;
    list-style: none !important;
    padding: 0 !important;
}

.astro-benefits-list li { color: #94a3b8; font-size: 0.9rem; padding: 5px 0; }
.astro-benefits-list li.active { color: var(--astro-midnight); font-weight: 600; }
.astro-benefits-list li.active i { color: var(--astro-pink); }

/* ═══════════════════════════════════════════
   4. GİRİŞ FORMU
   ═══════════════════════════════════════════ */
.astro-auth-wrapper {
    max-width: 400px;
    margin: 40px auto;
    background: #fff;
    border: 1px solid var(--astro-border);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.astro-auth-tabs { display: flex; background: #f8fafc; border-bottom: 1px solid var(--astro-border); }
.astro-auth-tab { flex: 1; padding: 15px; border: none; background: transparent; font-weight: 700; color: #94a3b8; cursor: pointer; }
.astro-auth-tab.active { color: var(--astro-midnight); border-bottom: 3px solid var(--astro-pink); }

.astro-auth-panel { display: none; padding: 40px; }
.astro-auth-panel.active { display: block; }

.astro-form-group label { color: var(--astro-midnight); font-weight: 700; font-size: 0.8rem; margin-bottom: 8px; display: block; }
.astro-form-group input { 
    width: 100%; padding: 12px; border: 1px solid var(--astro-border); 
    border-radius: 12px; background: #f1f5f9 !important; color: #1e293b !important;
}

/* ═══════════════════════════════════════════
   5. SONUÇ SAYFASI VE PAYWALL
   ═══════════════════════════════════════════ */
.astro-advanced-result { background: #fff; border: 1px solid var(--astro-border); }
.astro-section-title { color: var(--astro-midnight); border-bottom: 2px solid var(--astro-pink); }

.astro-lock-overlay {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
}

.astro-paywall-box {
    background: #fff;
    border: 2px solid var(--astro-midnight);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    color: var(--astro-midnight);
}

.astro-btn-primary {
    background: var(--astro-pink) !important;
    border-radius: 50px !important;
    color: #fff !important;
}

@media (max-width: 768px) {
    .astro-account-grid { grid-template-columns: 1fr; }
    .astro-account-header { flex-direction: column; text-align: center; }
}

/* Button Helpers */
.astro-btn {
    display: inline-block;
    padding: 14px 30px;
    text-decoration: none !important;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    border-radius: 50px !important;
    font-size: 0.95rem;
}

.astro-btn-primary {
    background: #ff007f !important;
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(255, 0, 127, 0.2);
}

.astro-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 0, 127, 0.4);
}


/* Archive Table */
.astro-archive-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.astro-archive-table th {
    text-align: left;
    padding: 12px;
    background: #f8f9fa;
    color: var(--astro-midnight);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--astro-border);
}

.astro-archive-table td {
    padding: 15px 12px;
    border-bottom: 1px solid var(--astro-border);
    color: var(--astro-midnight);
    font-size: 0.95rem;
}

.astro-view-chart-btn {
    background: #001f3f;
    color: #fff;
    border: none;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.astro-view-chart-btn:hover {
    background: var(--astro-pink);
    transform: translateY(-1px);
}

