/* Spiritual Sci-Fi Theme */
.theme-spiritual-scifi {
    --bg-image: url('https://images.unsplash.com/photo-1419242902214-272b3f66ee7a?w=1920');
    --bg-color: #0a0520;
    --text-color: #e8d5ff;
    --primary-color: #a78bfa;
    --card-bg: rgba(10, 5, 32, 0.88);
    --badge-bg: rgba(167, 139, 250, 0.18);
    --description-bg: rgba(30, 20, 60, 0.65);
    --overlay-color: rgba(10, 5, 32, 0.7);
    --border-color: rgba(167, 139, 250, 0.35);
    --button-bg: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
    --button-text: #ffffff;
    --button-shadow: rgba(167, 139, 250, 0.45);
    --header-bg: rgba(10, 5, 32, 0.94);
    --choice-bg: rgba(30, 20, 60, 0.6);
    --choice-border: rgba(167, 139, 250, 0.35);
    --choice-hover-bg: rgba(167, 139, 250, 0.22);
    --spinner-bg: rgba(167, 139, 250, 0.25);
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
}

.theme-spiritual-scifi .story-title {
    font-family: 'Inter', sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
    background: linear-gradient(135deg, #a78bfa 0%, #c4b5fd 50%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.theme-spiritual-scifi .story-card,
.theme-spiritual-scifi .story-content {
    box-shadow: 0 20px 60px rgba(167, 139, 250, 0.2),
                0 0 80px rgba(167, 139, 250, 0.08) inset;
    border: 1px solid rgba(167, 139, 250, 0.35);
}

.theme-spiritual-scifi .choice-btn {
    font-family: 'Inter', sans-serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-spiritual-scifi .choice-btn:hover {
    box-shadow: 0 8px 32px rgba(167, 139, 250, 0.35);
    transform: translateX(8px) scale(1.02);
}

.theme-spiritual-scifi .choice-number {
    background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
    box-shadow: 0 4px 15px rgba(167, 139, 250, 0.4);
}

/* Ethereal glow effect */
.theme-spiritual-scifi::before {
    filter: brightness(1.1) saturate(1.2);
}

/* Subtle animation for spiritual feel */
.theme-spiritual-scifi .story-content {
    animation: gentle-pulse 8s ease-in-out infinite;
}

@keyframes gentle-pulse {
    0%, 100% { 
        box-shadow: 0 20px 60px rgba(167, 139, 250, 0.2),
                    0 0 80px rgba(167, 139, 250, 0.08) inset;
    }
    50% { 
        box-shadow: 0 20px 60px rgba(167, 139, 250, 0.25),
                    0 0 100px rgba(167, 139, 250, 0.12) inset;
    }
}

/* Transcendent button effect */
.theme-spiritual-scifi .btn-start::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(167, 139, 250, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.theme-spiritual-scifi .btn-start:hover::after {
    width: 300px;
    height: 300px;
}

.theme-spiritual-scifi .story-text {
    text-shadow: 0 0 20px rgba(167, 139, 250, 0.15);
    line-height: 2.2;
}
