/**
 * NETRAA — Spiritual Wellness & Daily Horoscope Stylesheet
 */
:root {
    --wellness-purple: #6c63ff;
    --wellness-teal:   #00c6ae;
    --wellness-gold:   #f5a623;
    --wellness-danger: #ff6b6b;
    --card-bg: rgba(255,255,255,0.96);
    --shadow-card: 0 8px 32px rgba(108,99,255,0.12);
}

.zodiac-selector-wrap {
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    padding: 2rem;
}

.zodiac-pill {
    background: linear-gradient(135deg, #f8f5ff, #ede9fe);
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 1rem 0.5rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
}
.zodiac-pill:hover, .zodiac-pill.active {
    border-color: var(--wellness-purple);
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 8px 20px rgba(108,99,255,0.2);
    background: linear-gradient(135deg, #6c63ff, #a78bfa);
    color: white;
}
.zodiac-pill .zodiac-symbol { font-size: 1.8rem; line-height: 1; }
.zodiac-pill .zodiac-name   { font-size: 0.8rem; font-weight: 600; margin-top: 4px; }

.skeleton-box {
    background: linear-gradient(90deg, #e8e0ff 25%, #f5f0ff 50%, #e8e0ff 75%);
    background-size: 400% 100%;
    animation: skeleton-shimmer 1.4s ease-in-out infinite;
    border-radius: 12px;
}
@keyframes skeleton-shimmer {
    0%   { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

.result-section { display: none; }
.wellness-card {
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(108,99,255,0.1);
    overflow: hidden;
    animation: slideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.ehi-card {
    background: linear-gradient(135deg, #1a0533, #3d1a7c);
    color: white;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}
.ehi-card::after {
    content: '🧠';
    position: absolute;
    font-size: 6rem;
    right: -10px;
    top: -10px;
    opacity: 0.12;
}
.ehi-score-ring {
    width: 100px; height: 100px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; font-weight: 800;
    position: relative;
}
.ehi-progress {
    height: 10px;
    border-radius: 100px;
    background: rgba(255,255,255,0.15);
    overflow: hidden;
}
.ehi-progress-bar {
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg, #a78bfa, #00c6ae);
    transition: width 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 0%;
}

.burnout-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.burnout-low    { background: rgba(0,198,174,0.2); color: #00c6ae; border: 1px solid #00c6ae; }
.burnout-medium { background: rgba(245,166,35,0.2); color: #f5a623; border: 1px solid #f5a623; }
.burnout-high   { background: rgba(255,107,107,0.2); color: #ff6b6b; border: 1px solid #ff6b6b; }

.mindfulness-card {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-left: 4px solid #22c55e;
    border-radius: 0 16px 16px 0;
    padding: 1.5rem;
}

.breathing-card {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 16px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.breathing-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(59,130,246,0.15); }
.breathing-expanded { display: none; }
.breathing-card.open .breathing-expanded { display: block; animation: fadeIn 0.3s ease; }
.breathing-card.open .breathing-chevron { transform: rotate(180deg); }
.breathing-chevron { transition: transform 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.domain-pill {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.75rem 1rem; border-radius: 12px;
    background: #f8fafc; border: 1px solid #e2e8f0;
    margin-bottom: 0.5rem;
}
.domain-stars { color: #f59e0b; }

.wisdom-box {
    background: linear-gradient(135deg, #faf5ff, #f3e8ff);
    border: 1px dashed var(--wellness-purple);
    border-radius: 16px;
    padding: 1.5rem;
}
