/* Story Content */
.story-content {
    background: var(--bg-card-solid);
    border-radius: 28px;
    padding: 32px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.5s ease-out;
}

.illustration {
    text-align: center;
    margin-bottom: 28px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.illustration svg {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    border-radius: 12px;
}

.story-text {
    font-size: 24px;
    line-height: 1.7;
    color: var(--text);
}

.story-text p {
    margin-bottom: 18px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 3px solid var(--primary);
    transition: all 0.3s;
}

.story-text p:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(4px);
}

.story-text p:last-child {
    margin-bottom: 0;
}
